summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/prserv/db.py
blob: f430586d73949f93e7d5e84f8ea9d09cd9ba4c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
#
# Copyright BitBake Contributors
#
# SPDX-License-Identifier: GPL-2.0-only
#

import logging
import os.path
import errno
import prserv
import sqlite3

from contextlib import closing
from . import increase_revision, revision_greater, revision_smaller

logger = logging.getLogger("BitBake.PRserv")

#
# "No History" mode - for a given query tuple (version, pkgarch, checksum),
# the returned value will be the largest among all the values of the same
# (version, pkgarch). This means the PR value returned can NOT be decremented.
#
# "History" mode - Return a new higher value for previously unseen query
# tuple (version, pkgarch, checksum), otherwise return historical value.
# Value can decrement if returning to a previous build.

class PRTable(object):
    def __init__(self, conn, table, read_only):
        self.conn = conn
        self.read_only = read_only
        self.table = table

        with closing(self.conn.cursor()) as cursor:
            if self.read_only:
                table_exists = cursor.execute(
                            "SELECT count(*) FROM sqlite_master \
                            WHERE type='table' AND name='%s'" % (self.table))
                if not table_exists:
                    raise prserv.NotFoundError
            else:
                cursor.execute("CREATE TABLE IF NOT EXISTS %s \
                            (version TEXT NOT NULL, \
                            pkgarch TEXT NOT NULL,  \
                            checksum TEXT NOT NULL, \
                            value TEXT, \
                            PRIMARY KEY (version, pkgarch, checksum, value));" % self.table)
                self.conn.commit()

    def _extremum_value(self, rows, is_max):
        value = None

        for row in rows:
            current_value = row[0]
            if value is None:
                value = current_value
            else:
                if is_max:
                    is_new_extremum = revision_greater(current_value, value)
                else:
                    is_new_extremum = revision_smaller(current_value, value)
                if  is_new_extremum:
                    value = current_value
        return value

    def _max_value(self, rows):
        return self._extremum_value(rows, True)

    def _min_value(self, rows):
        return self._extremum_value(rows, False)

    def test_package(self, version, pkgarch):
        """Returns whether the specified package version is found in the database for the specified architecture"""

        # Just returns the value if found or None otherwise
        with closing(self.conn.cursor()) as cursor:
            data=cursor.execute("SELECT value FROM %s WHERE version=? AND pkgarch=?;" % self.table,
                               (version, pkgarch))
            row=data.fetchone()
            if row is not None:
                return True
            else:
                return False

    def test_value(self, version, pkgarch, value):
        """Returns whether the specified value is found in the database for the specified package and architecture"""

        # Just returns the value if found or None otherwise
        with closing(self.conn.cursor()) as cursor:
            data=cursor.execute("SELECT value FROM %s WHERE version=? AND pkgarch=? and value=?;" % self.table,
                               (version, pkgarch, value))
            row=data.fetchone()
            if row is not None:
                return True
            else:
                return False


    def find_package_max_value(self, version, pkgarch):
        """Returns the greatest value for (version, pkgarch), or None if not found. Doesn't create a new value"""

        with closing(self.conn.cursor()) as cursor:
            data = cursor.execute("SELECT value FROM %s where version=? AND pkgarch=?;" % (self.table),
                                 (version, pkgarch))
            rows = data.fetchall()
            value = self._max_value(rows)
            return value

    def find_value(self, version, pkgarch, checksum, history=False):
        """Returns the value for the specified checksum if found or None otherwise."""

        if history:
            return self.find_min_value(version, pkgarch, checksum)
        else:
            return self.find_max_value(version, pkgarch, checksum)


    def _find_extremum_value(self, version, pkgarch, checksum, is_max):
        """Returns the maximum (if is_max is True) or minimum (if is_max is False) value
           for (version, pkgarch, checksum), or None if not found. Doesn't create a new value"""

        with closing(self.conn.cursor()) as cursor:
            data = cursor.execute("SELECT value FROM %s where version=? AND pkgarch=? AND checksum=?;" % (self.table),
                                 (version, pkgarch, checksum))
            rows = data.fetchall()
            return self._extremum_value(rows, is_max)

    def find_max_value(self, version, pkgarch, checksum):
        return self._find_extremum_value(version, pkgarch, checksum, True)

    def find_min_value(self, version, pkgarch, checksum):
        return self._find_extremum_value(version, pkgarch, checksum, False)

    def find_new_subvalue(self, version, pkgarch, base):
        """Take and increase the greatest "<base>.y" value for (version, pkgarch), or return "<base>.0" if not found.
        This doesn't store a new value."""

        with closing(self.conn.cursor()) as cursor:
            data = cursor.execute("SELECT value FROM %s where version=? AND pkgarch=? AND value LIKE '%s.%%';" % (self.table, base),
                                 (version, pkgarch))
            rows = data.fetchall()
            value = self._max_value(rows)

            if value is not None:
                return increase_revision(value)
            else:
                return base + ".0"

    def store_value(self, version, pkgarch, checksum, value):
        """Store new value in the database"""

        with closing(self.conn.cursor()) as cursor:
            try:
                cursor.execute("INSERT INTO %s VALUES (?, ?, ?, ?);"  % (self.table),
                           (version, pkgarch, checksum, value))
            except sqlite3.IntegrityError as exc:
                logger.error(str(exc))
            self.conn.commit()

    def _get_value(self, version, pkgarch, checksum, history):

        max_value = self.find_package_max_value(version, pkgarch)

        if max_value is None:
            # version, pkgarch completely unknown. Return initial value.
            return "0"

        value = self.find_value(version, pkgarch, checksum, history)

        if value is None:
            # version, pkgarch found but not checksum. Create a new value from the maximum one
            return increase_revision(max_value)

        if history:
            return value

        # "no history" mode - If the value is not the maximum value for the package, need to increase it.
        if max_value > value:
            return increase_revision(max_value)
        else:
            return value

    def get_value(self, version, pkgarch, checksum, history):
        value = self._get_value(version, pkgarch, checksum, history)
        if not self.read_only:
            self.store_value(version, pkgarch, checksum, value)
        return value

    def _import_hist(self, version, pkgarch, checksum, value):
        if self.read_only:
            return None

        val = None
        with closing(self.conn.cursor()) as cursor:
            data = cursor.execute("SELECT value FROM %s WHERE version=? AND pkgarch=? AND checksum=?;" % self.table,
                           (version, pkgarch, checksum))
            row = data.fetchone()
            if row is not None:
                val=row[0]
            else:
                #no value found, try to insert
                try:
                    cursor.execute("INSERT INTO %s VALUES (?, ?, ?, ?);"  % (self.table),
                               (version, pkgarch, checksum, value))
                except sqlite3.IntegrityError as exc:
                    logger.error(str(exc))

                self.conn.commit()

                data = cursor.execute("SELECT value FROM %s WHERE version=? AND pkgarch=? AND checksum=?;" % self.table,
                           (version, pkgarch, checksum))
                row = data.fetchone()
                if row is not None:
                    val = row[0]
        return val

    def _import_no_hist(self, version, pkgarch, checksum, value):
        if self.read_only:
            return None

        with closing(self.conn.cursor()) as cursor:
            try:
                #try to insert
                cursor.execute("INSERT INTO %s VALUES (?, ?, ?, ?);"  % (self.table),
                               (version, pkgarch, checksum, value))
            except sqlite3.IntegrityError as exc:
                #already have the record, try to update
                try:
                    cursor.execute("UPDATE %s SET value=? WHERE version=? AND pkgarch=? AND checksum=? AND value<?"
                                  % (self.table),
                                   (value, version, pkgarch, checksum, value))
                except sqlite3.IntegrityError as exc:
                    logger.error(str(exc))

                self.conn.commit()

            data = cursor.execute("SELECT value FROM %s WHERE version=? AND pkgarch=? AND checksum=? AND value>=?;" % self.table,
                            (version, pkgarch, checksum, value))
            row=data.fetchone()
            if row is not None:
                return row[0]
            else:
                return None

    def importone(self, version, pkgarch, checksum, value, history=False):
        if history:
            return self._import_hist(version, pkgarch, checksum, value)
        else:
            return self._import_no_hist(version, pkgarch, checksum, value)

    def export(self, version, pkgarch, checksum, colinfo, history=False):
        metainfo = {}
        with closing(self.conn.cursor()) as cursor:
            #column info
            if colinfo:
                metainfo["tbl_name"] = self.table
                metainfo["core_ver"] = prserv.__version__
                metainfo["col_info"] = []
                data = cursor.execute("PRAGMA table_info(%s);" % self.table)
                for row in data:
                    col = {}
                    col["name"] = row["name"]
                    col["type"] = row["type"]
                    col["notnull"] = row["notnull"]
                    col["dflt_value"] = row["dflt_value"]
                    col["pk"] = row["pk"]
                    metainfo["col_info"].append(col)

            #data info
            datainfo = []

            if history:
                sqlstmt = "SELECT * FROM %s as T1 WHERE 1=1 " % self.table
            else:
                sqlstmt = "SELECT T1.version, T1.pkgarch, T1.checksum, T1.value FROM %s as T1, \
                        (SELECT version, pkgarch, max(value) as maxvalue FROM %s GROUP BY version, pkgarch) as T2 \
                        WHERE T1.version=T2.version AND T1.pkgarch=T2.pkgarch AND T1.value=T2.maxvalue " % (self.table, self.table)
            sqlarg = []
            where = ""
            if version:
                where += "AND T1.version=? "
                sqlarg.append(str(version))
            if pkgarch:
                where += "AND T1.pkgarch=? "
                sqlarg.append(str(pkgarch))
            if checksum:
                where += "AND T1.checksum=? "
                sqlarg.append(str(checksum))

            sqlstmt += where + ";"

            if len(sqlarg):
                data = cursor.execute(sqlstmt, tuple(sqlarg))
            else:
                data = cursor.execute(sqlstmt)
            for row in data:
                if row["version"]:
                    col = {}
                    col["version"] = row["version"]
                    col["pkgarch"] = row["pkgarch"]
                    col["checksum"] = row["checksum"]
                    col["value"] = row["value"]
                    datainfo.append(col)
        return (metainfo, datainfo)

    def dump_db(self, fd):
        writeCount = 0
        for line in self.conn.iterdump():
            writeCount = writeCount + len(line) + 1
            fd.write(line)
            fd.write("\n")
        return writeCount

class PRData(object):
    """Object representing the PR database"""
    def __init__(self, filename, read_only=False):
        self.filename=os.path.abspath(filename)
        self.read_only = read_only
        #build directory hierarchy
        try:
            os.makedirs(os.path.dirname(self.filename))
        except OSError as e:
            if e.errno != errno.EEXIST:
                raise e
        uri = "file:%s%s" % (self.filename, "?mode=ro" if self.read_only else "")
        logger.debug("Opening PRServ database '%s'" % (uri))
        self.connection=sqlite3.connect(uri, uri=True)
        self.connection.row_factory=sqlite3.Row
        self.connection.execute("PRAGMA synchronous = OFF;")
        self.connection.execute("PRAGMA journal_mode = WAL;")
        self.connection.commit()
        self._tables={}

    def disconnect(self):
        self.connection.commit()
        self.connection.close()

    def __getitem__(self, tblname):
        if not isinstance(tblname, str):
            raise TypeError("tblname argument must be a string, not '%s'" %
                            type(tblname))
        if tblname in self._tables:
            return self._tables[tblname]
        else:
            tableobj = self._tables[tblname] = PRTable(self.connection, tblname, self.read_only)
            return tableobj

    def __delitem__(self, tblname):
        if tblname in self._tables:
            del self._tables[tblname]
        logger.info("drop table %s" % (tblname))
        self.connection.execute("DROP TABLE IF EXISTS %s;" % tblname)
        self.connection.commit()