Loading...
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 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | # SPDX-License-Identifier: GPL-2.0+ # # Copyright 2025 Canonical Ltd. # Written by Simon Glass <simon.glass@canonical.com> # """Database for pickman - tracks cherry-pick state. This uses sqlite3 with a local file (.pickman.db). To adjust the schema, increment LATEST, create a _migrate_to_v<x>() function and add code in migrate_to() to call it. """ from datetime import datetime import os import sqlite3 from u_boot_pylib import tools from u_boot_pylib import tout # Schema version (version 0 means there is no database yet) LATEST = 3 # Default database filename DB_FNAME = '.pickman.db' class Database: # pylint: disable=too-many-public-methods """Database of cherry-pick state used by pickman""" # dict of databases: # key: filename # value: Database object instances = {} def __init__(self, db_path): """Set up a new database object Args: db_path (str): Path to the database """ if db_path in Database.instances: raise ValueError(f"There is already a database for '{db_path}'") self.con = None self.cur = None self.db_path = db_path self.is_open = False Database.instances[db_path] = self @staticmethod def get_instance(db_path): """Get the database instance for a path Args: db_path (str): Path to the database Return: tuple: Database: Database instance, created if necessary bool: True if newly created """ dbs = Database.instances.get(db_path) if dbs: return dbs, False return Database(db_path), True def start(self): """Open the database ready for use, migrate to latest schema""" self.open_it() self.migrate_to(LATEST) def open_it(self): """Open the database, creating it if necessary""" if self.is_open: raise ValueError('Already open') if not os.path.exists(self.db_path): tout.warning(f'Creating new database {self.db_path}') self.con = sqlite3.connect(self.db_path) self.cur = self.con.cursor() self.is_open = True Database.instances[self.db_path] = self def close(self): """Close the database""" if not self.is_open: raise ValueError('Already closed') self.con.close() self.cur = None self.con = None self.is_open = False Database.instances.pop(self.db_path, None) def _create_v1(self): """Create a database with the v1 schema""" # Table for tracking source branches and their last cherry-picked commit self.cur.execute( 'CREATE TABLE source (' 'id INTEGER PRIMARY KEY AUTOINCREMENT, ' 'name TEXT UNIQUE, ' 'last_commit TEXT)') # Schema version table self.cur.execute('CREATE TABLE schema_version (version INTEGER)') def _create_v2(self): """Migrate database to v2 schema - add commit and mergereq tables""" # Table for tracking individual commits self.cur.execute( 'CREATE TABLE pcommit (' 'id INTEGER PRIMARY KEY AUTOINCREMENT, ' 'chash TEXT UNIQUE, ' 'source_id INTEGER, ' 'mergereq_id INTEGER, ' 'subject TEXT, ' 'author TEXT, ' 'status TEXT, ' 'cherry_hash TEXT, ' 'FOREIGN KEY (source_id) REFERENCES source(id), ' 'FOREIGN KEY (mergereq_id) REFERENCES mergereq(id))') # Table for tracking merge requests self.cur.execute( 'CREATE TABLE mergereq (' 'id INTEGER PRIMARY KEY AUTOINCREMENT, ' 'source_id INTEGER, ' 'branch_name TEXT, ' 'mr_id INTEGER, ' 'status TEXT, ' 'url TEXT, ' 'created_at TEXT, ' 'FOREIGN KEY (source_id) REFERENCES source(id))') def _create_v3(self): """Migrate database to v3 schema - add comment table""" # Table for tracking processed MR comments self.cur.execute( 'CREATE TABLE comment (' 'id INTEGER PRIMARY KEY AUTOINCREMENT, ' 'mr_iid INTEGER, ' 'comment_id INTEGER, ' 'processed_at TEXT, ' 'UNIQUE(mr_iid, comment_id))') def migrate_to(self, dest_version): """Migrate the database to the selected version Args: dest_version (int): Version to migrate to """ while True: version = self.get_schema_version() if version >= dest_version: break self.close() tools.write_file(f'{self.db_path}old.v{version}', tools.read_file(self.db_path)) version += 1 tout.info(f'Update database to v{version}') self.open_it() if version == 1: self._create_v1() elif version == 2: self._create_v2() elif version == 3: self._create_v3() self.cur.execute('DELETE FROM schema_version') self.cur.execute( 'INSERT INTO schema_version (version) VALUES (?)', (version,)) self.commit() def get_schema_version(self): """Get the version of the database's schema Return: int: Database version, 0 means there is no data """ try: self.cur.execute('SELECT version FROM schema_version') return self.cur.fetchone()[0] except sqlite3.OperationalError: return 0 def execute(self, query, parameters=()): """Execute a database query Args: query (str): Query string parameters (tuple): Parameters to pass Return: Cursor result """ return self.cur.execute(query, parameters) def commit(self): """Commit changes to the database""" self.con.commit() def rollback(self): """Roll back changes to the database""" self.con.rollback() # source functions def source_get(self, name): """Get the last cherry-picked commit for a source branch Args: name (str): Source branch name Return: str: Commit hash, or None if not found """ res = self.execute( 'SELECT last_commit FROM source WHERE name = ?', (name,)) rec = res.fetchone() if rec: return rec[0] return None def source_get_all(self): """Get all source branches and their last commits Return: list of tuple: (name, last_commit) pairs """ res = self.execute('SELECT name, last_commit FROM source ORDER BY name') return res.fetchall() def source_set(self, name, commit): """Set the last cherry-picked commit for a source branch Args: name (str): Source branch name commit (str): Commit hash """ self.execute( 'UPDATE source SET last_commit = ? WHERE name = ?', (commit, name)) if self.cur.rowcount == 0: self.execute( 'INSERT INTO source (name, last_commit) VALUES (?, ?)', (name, commit)) def source_get_id(self, name): """Get the id for a source branch Args: name (str): Source branch name Return: int: Source id, or None if not found """ res = self.execute('SELECT id FROM source WHERE name = ?', (name,)) rec = res.fetchone() if rec: return rec[0] return None # commit functions # pylint: disable-next=too-many-arguments def commit_add(self, chash, source_id, subject, author, status='pending', mergereq_id=None): """Add a commit to the database Args: chash (str): Commit hash source_id (int): Source branch id subject (str): Commit subject line author (str): Commit author status (str): Status (pending, applied, skipped, conflict) mergereq_id (int): Merge request id (optional) """ self.execute( 'INSERT OR REPLACE INTO pcommit ' '(chash, source_id, mergereq_id, subject, author, status) ' 'VALUES (?, ?, ?, ?, ?, ?)', (chash, source_id, mergereq_id, subject, author, status)) def commit_get(self, chash): """Get a commit by hash Args: chash (str): Commit hash Return: tuple: (id, chash, source_id, mergereq_id, subject, author, status, cherry_hash) or None if not found """ res = self.execute( 'SELECT id, chash, source_id, mergereq_id, subject, author, status, ' 'cherry_hash FROM pcommit WHERE chash = ?', (chash,)) return res.fetchone() def commit_get_by_source(self, source_id, status=None): """Get all commits for a source branch Args: source_id (int): Source branch id status (str): Optional status filter Return: list of tuple: Commit records """ if status: res = self.execute( 'SELECT id, chash, source_id, mergereq_id, subject, author, ' 'status, cherry_hash FROM pcommit ' 'WHERE source_id = ? AND status = ?', (source_id, status)) else: res = self.execute( 'SELECT id, chash, source_id, mergereq_id, subject, author, ' 'status, cherry_hash FROM pcommit WHERE source_id = ?', (source_id,)) return res.fetchall() def commit_get_by_mergereq(self, mergereq_id): """Get all commits for a merge request Args: mergereq_id (int): Merge request id Return: list of tuple: Commit records """ res = self.execute( 'SELECT id, chash, source_id, mergereq_id, subject, author, ' 'status, cherry_hash FROM pcommit WHERE mergereq_id = ?', (mergereq_id,)) return res.fetchall() def commit_set_status(self, chash, status, cherry_hash=None): """Update the status of a commit Args: chash (str): Commit hash status (str): New status cherry_hash (str): Hash of cherry-picked commit (optional) """ if cherry_hash: self.execute( 'UPDATE pcommit SET status = ?, cherry_hash = ? WHERE chash = ?', (status, cherry_hash, chash)) else: self.execute( 'UPDATE pcommit SET status = ? WHERE chash = ?', (status, chash)) def commit_set_mergereq(self, chash, mergereq_id): """Set the merge request for a commit Args: chash (str): Commit hash mergereq_id (int): Merge request id """ self.execute( 'UPDATE pcommit SET mergereq_id = ? WHERE chash = ?', (mergereq_id, chash)) # mergereq functions # pylint: disable-next=too-many-arguments def mergereq_add(self, source_id, branch_name, mr_id, status, url, created_at): """Add a merge request to the database Args: source_id (int): Source branch id branch_name (str): Branch name for the MR mr_id (int): GitLab MR id status (str): Status (open, merged, closed) url (str): URL to the MR created_at (str): Creation timestamp """ self.execute( 'INSERT INTO mergereq ' '(source_id, branch_name, mr_id, status, url, created_at) ' 'VALUES (?, ?, ?, ?, ?, ?)', (source_id, branch_name, mr_id, status, url, created_at)) def mergereq_get(self, mr_id): """Get a merge request by GitLab MR id Args: mr_id (int): GitLab MR id Return: tuple: (id, source_id, branch_name, mr_id, status, url, created_at) or None if not found """ res = self.execute( 'SELECT id, source_id, branch_name, mr_id, status, url, created_at ' 'FROM mergereq WHERE mr_id = ?', (mr_id,)) return res.fetchone() def mergereq_get_by_source(self, source_id, status=None): """Get all merge requests for a source branch Args: source_id (int): Source branch id status (str): Optional status filter Return: list of tuple: Merge request records """ if status: res = self.execute( 'SELECT id, source_id, branch_name, mr_id, status, url, ' 'created_at FROM mergereq WHERE source_id = ? AND status = ?', (source_id, status)) else: res = self.execute( 'SELECT id, source_id, branch_name, mr_id, status, url, ' 'created_at FROM mergereq WHERE source_id = ?', (source_id,)) return res.fetchall() def mergereq_set_status(self, mr_id, status): """Update the status of a merge request Args: mr_id (int): GitLab MR id status (str): New status """ self.execute( 'UPDATE mergereq SET status = ? WHERE mr_id = ?', (status, mr_id)) # comment functions def comment_is_processed(self, mr_iid, comment_id): """Check if a comment has been processed Args: mr_iid (int): Merge request IID comment_id (int): Comment ID Return: bool: True if already processed """ res = self.execute( 'SELECT id FROM comment WHERE mr_iid = ? AND comment_id = ?', (mr_iid, comment_id)) return res.fetchone() is not None def comment_mark_processed(self, mr_iid, comment_id): """Mark a comment as processed Args: mr_iid (int): Merge request IID comment_id (int): Comment ID """ self.execute( 'INSERT OR IGNORE INTO comment ' '(mr_iid, comment_id, processed_at) VALUES (?, ?, ?)', (mr_iid, comment_id, datetime.now().isoformat())) def comment_get_processed(self, mr_iid): """Get all processed comment IDs for an MR Args: mr_iid (int): Merge request IID Return: list: List of comment IDs """ res = self.execute( 'SELECT comment_id FROM comment WHERE mr_iid = ?', (mr_iid,)) return [row[0] for row in res.fetchall()] |