forked from groeck/chromeos-rebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrevertlist.py
80 lines (69 loc) · 2.51 KB
/
revertlist.py
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
# -*- coding: utf-8 -*-"
from __future__ import print_function
import sqlite3
import os
import re
import time
from config import rebasedb
def NOW():
return int(time.time())
workdir = os.getcwd()
conn = sqlite3.connect(rebasedb)
# conn.text_factory = str
c = conn.cursor()
c2 = conn.cursor()
rp = re.compile('Revert "(.*)"')
# date:
# git show --format="%ct" -s ${sha}
# subject:
# git show --format="%s" -s ${sha}
# file list:
# git show --name-only --format="" ${sha}
# Insert a row of data
# c.execute("INSERT INTO commits VALUES (1489758183,sha,subject)")
# c.execute("INSERT INTO files VALUES (sha,filename)")
# sha and filename must be in ' '
c.execute("select date, sha, disposition, subject from commits")
for (date, sha, disposition, desc) in c.fetchall():
# If the patch is already dropped, don't bother any further
if disposition == "drop":
continue
m = rp.search(desc)
if m:
ndesc = m.group(1)
print("Found revert : '%s' (%s)" % (desc.replace("'", "''"), sha))
ndesc = ndesc.replace("'", "''")
c2.execute("select date, sha from commits where subject is '%s'"
% ndesc)
# Search for matching original commit. Only revert its first occurrance,
# and only if its date is older than the revert.
fsha = c2.fetchone()
if fsha:
if date > fsha[0]:
# print(" Matching commit : %s" % fsha[1])
print(" Marking %s for drop" % fsha[1])
c2.execute("UPDATE commits SET disposition=('drop') where sha='%s'"
% fsha[1])
c2.execute("UPDATE commits SET reason=('reverted') where sha='%s'"
% fsha[1])
c2.execute("UPDATE commits SET updated=('%d') where sha='%s'" % (NOW(), sha))
else:
print(" Matching commit later than reverse")
else:
print(" No matching commit found")
# Hmmm .. the below seems redundant ad drops everything.
print(" Marking %s for drop" % sha)
c2.execute("UPDATE commits SET disposition=('drop') where sha='%s'" % sha)
c2.execute("UPDATE commits SET reason=('reverted') where sha='%s'" % sha)
c2.execute("UPDATE commits SET updated=('%d') where sha='%s'" % (NOW(), sha))
conn.commit()
# We can also close the connection if we are done with it.
# Just be sure any changes have been committed or they will be lost.
conn.close()
# c.execute('SELECT * FROM commits')
# c.fetchone() -> read one result
#
# for entry in c.execute(SELECT * FROM commits ORDER BY date'):
# print entry
# print entry.sha
# print entry.subject