blob: 06a37e5c700931b5cb4522cc07651bdd795ee0f6 [file] [log] [blame]
mblighaf25f062007-12-03 17:48:35 +00001import re, os, sys, types
mblighd5c33db2006-10-08 21:34:16 +00002
mblighaf25f062007-12-03 17:48:35 +00003class db_sql:
mbligh432bad42007-10-09 19:56:07 +00004 def __init__(self, debug = False, autocommit=True):
mbligh8e1ab172007-09-13 17:29:56 +00005 self.debug = debug
mbligh432bad42007-10-09 19:56:07 +00006 self.autocommit = autocommit
mbligha218d112007-10-03 20:15:09 +00007
8 path = os.path.dirname(os.path.abspath(sys.argv[0]))
mblighb32cd432007-09-25 18:20:04 +00009 try:
mbligha218d112007-10-03 20:15:09 +000010 file = os.path.join(path, '.database')
mbligh432bad42007-10-09 19:56:07 +000011 db_prefs = open(file, 'r')
mbligh728ff0a2007-09-27 17:05:12 +000012 host = db_prefs.readline().rstrip()
13 database = db_prefs.readline().rstrip()
14 except:
15 host = 'localhost'
16 database = 'tko'
17
18 try:
mbligha218d112007-10-03 20:15:09 +000019 file = os.path.join(path, '.priv_login')
20 login = open(file, 'r')
mblighb32cd432007-09-25 18:20:04 +000021 user = login.readline().rstrip()
22 password = login.readline().rstrip()
mbligh95fca572007-09-27 17:11:00 +000023 except:
24 try:
mbligha218d112007-10-03 20:15:09 +000025 file = os.path.join(path, '.unpriv_login')
mbligh432bad42007-10-09 19:56:07 +000026 login = open(file, 'r')
mbligh95fca572007-09-27 17:11:00 +000027 user = login.readline().rstrip()
28 password = login.readline().rstrip()
29 except:
30 user = 'nobody'
31 password = ''
mblighb32cd432007-09-25 18:20:04 +000032
mblighaf25f062007-12-03 17:48:35 +000033 self.con = self.connect(host, database, user, password)
mblighd5c33db2006-10-08 21:34:16 +000034 self.cur = self.con.cursor()
35
mbligh8e1ab172007-09-13 17:29:56 +000036 # if not present, insert statuses
37 self.status_idx = {}
38 self.status_word = {}
mblighc82f2462007-10-02 19:19:17 +000039 status_rows = self.select('status_idx, word', 'status', None)
40 for s in status_rows:
mbligh97894452007-10-05 15:10:33 +000041 self.status_idx[s[1]] = s[0]
mblighc82f2462007-10-02 19:19:17 +000042 self.status_word[s[0]] = s[1]
mbligh048e1c92007-10-07 00:10:33 +000043
44 dir = os.path.abspath(os.path.dirname(sys.argv[0]))
45 machine_map = os.path.join(dir, 'machines')
46 if os.path.exists(machine_map):
47 self.machine_map = machine_map
mblighba9c54c2007-10-26 16:41:26 +000048 else:
49 self.machine_map = None
mbligh048e1c92007-10-07 00:10:33 +000050 self.machine_group = {}
51
mbligh8e1ab172007-09-13 17:29:56 +000052
mbligh8e1ab172007-09-13 17:29:56 +000053 def dprint(self, value):
54 if self.debug:
55 sys.stderr.write('SQL: ' + str(value) + '\n')
56
mblighd5c33db2006-10-08 21:34:16 +000057
mbligh432bad42007-10-09 19:56:07 +000058 def commit(self):
59 self.con.commit()
60
61
mbligh85952b42007-12-07 16:28:33 +000062 def select(self, fields, table, where, wherein={}, distinct = False):
mbligh608c3252007-08-31 13:53:00 +000063 """\
64 select fields from table where {dictionary}
65 """
mbligh31d29c42007-09-27 00:51:33 +000066 cmd = ['select']
67 if distinct:
68 cmd.append('distinct')
69 cmd += [fields, 'from', table]
mbligh608c3252007-08-31 13:53:00 +000070
mbligh31d29c42007-09-27 00:51:33 +000071 values = []
mbligh414c69e2007-10-05 15:13:06 +000072 if where and isinstance(where, types.DictionaryType):
mbligh53d14252007-09-12 16:33:14 +000073 keys = [field + '=%s' for field in where.keys()]
74 values = [where[field] for field in where.keys()]
75
mbligh31d29c42007-09-27 00:51:33 +000076 cmd.append(' where ' + ' and '.join(keys))
mbligh414c69e2007-10-05 15:13:06 +000077 elif where and isinstance(where, types.StringTypes):
78 cmd.append(' where ' + where)
mbligh53d14252007-09-12 16:33:14 +000079
mbligh85952b42007-12-07 16:28:33 +000080 if wherein and isinstance(wherein, types.DictionaryType):
81 keys_in = []
82 for field_in in wherein.keys():
83 keys_in += [field_in + ' in (' + ','.join(wherein[field_in])+') ']
84
85 cmd.append(' and '+' and '.join(keys_in))
mbligh31d29c42007-09-27 00:51:33 +000086 self.dprint('%s %s' % (' '.join(cmd),values))
87 self.cur.execute(' '.join(cmd), values)
mblighd5c33db2006-10-08 21:34:16 +000088 return self.cur.fetchall()
89
mbligh056d0d32006-10-08 22:31:10 +000090
mbligh414c69e2007-10-05 15:13:06 +000091 def select_sql(self, fields, table, sql, values):
92 """\
93 select fields from table "sql"
94 """
95 cmd = 'select %s from %s %s' % (fields, table, sql)
96 self.dprint(cmd)
97 self.cur.execute(cmd, values)
98 return self.cur.fetchall()
99
100
mbligh432bad42007-10-09 19:56:07 +0000101 def insert(self, table, data, commit = None):
mbligh608c3252007-08-31 13:53:00 +0000102 """\
103 'insert into table (keys) values (%s ... %s)', values
104
105 data:
106 dictionary of fields and data
107 """
mbligh432bad42007-10-09 19:56:07 +0000108 if commit == None:
109 commit = self.autocommit
mbligh608c3252007-08-31 13:53:00 +0000110 fields = data.keys()
111 refs = ['%s' for field in fields]
112 values = [data[field] for field in fields]
113 cmd = 'insert into %s (%s) values (%s)' % \
114 (table, ','.join(fields), ','.join(refs))
mbligh53d14252007-09-12 16:33:14 +0000115
mbligh8e1ab172007-09-13 17:29:56 +0000116 self.dprint('%s %s' % (cmd,values))
mbligh608c3252007-08-31 13:53:00 +0000117 self.cur.execute(cmd, values)
mbligh432bad42007-10-09 19:56:07 +0000118 if commit:
119 self.con.commit()
mbligh608c3252007-08-31 13:53:00 +0000120
121
mbligh96b9a5a2007-11-24 19:32:20 +0000122 def delete(self, table, where, commit = None):
123 cmd = ['delete from', table]
124 if commit == None:
125 commit = self.autocommit
126 if where and isinstance(where, types.DictionaryType):
127 keys = [field + '=%s' for field in where.keys()]
128 values = [where[field] for field in where.keys()]
129 cmd += ['where', ' and '.join(keys)]
130 self.dprint('%s %s' % (' '.join(cmd),values))
131 self.cur.execute(' '.join(cmd), values)
132 if commit:
133 self.con.commit()
134
135
mbligh432bad42007-10-09 19:56:07 +0000136 def update(self, table, data, where, commit = None):
mbligh414c69e2007-10-05 15:13:06 +0000137 """\
138 'update table set data values (%s ... %s) where ...'
139
140 data:
141 dictionary of fields and data
142 """
mbligh432bad42007-10-09 19:56:07 +0000143 if commit == None:
144 commit = self.autocommit
mbligh414c69e2007-10-05 15:13:06 +0000145 cmd = 'update %s ' % table
146 fields = data.keys()
147 data_refs = [field + '=%s' for field in fields]
148 data_values = [data[field] for field in fields]
149 cmd += ' set ' + ' and '.join(data_refs)
150
151 where_keys = [field + '=%s' for field in where.keys()]
152 where_values = [where[field] for field in where.keys()]
153 cmd += ' where ' + ' and '.join(where_keys)
154
155 print '%s %s' % (cmd, data_values + where_values)
156 self.cur.execute(cmd, data_values + where_values)
mbligh432bad42007-10-09 19:56:07 +0000157 if commit:
158 self.con.commit()
mbligh414c69e2007-10-05 15:13:06 +0000159
160
mbligh96b9a5a2007-11-24 19:32:20 +0000161 def delete_job(self, tag, commit = None):
162 job_idx = self.find_job(tag)
163 for test_idx in self.find_tests(job_idx):
164 where = {'test_idx' : test_idx}
165 self.delete('iteration_result', where)
166 self.delete('test_attributes', where)
167 where = {'job_idx' : job_idx}
168 self.delete('tests', where)
169 self.delete('jobs', where)
170
171
mbligh432bad42007-10-09 19:56:07 +0000172 def insert_job(self, tag, job, commit = None):
mbligh2aaeb672007-10-01 14:54:18 +0000173 job.machine_idx = self.lookup_machine(job.machine)
174 if not job.machine_idx:
mbligh7a41a862007-11-30 17:44:24 +0000175 job.machine_idx = self.insert_machine(job,
mbligh432bad42007-10-09 19:56:07 +0000176 commit=commit)
mblighb10a60f2007-10-17 00:03:32 +0000177 self.insert('jobs', {'tag':tag,
178 'label': job.label,
mbligh05067a32007-12-03 17:48:04 +0000179 'username': job.user,
mblighb10a60f2007-10-17 00:03:32 +0000180 'machine_idx':job.machine_idx},
181 commit=commit)
mbligh608c3252007-08-31 13:53:00 +0000182 job.index = self.find_job(tag)
183 for test in job.tests:
mbligh432bad42007-10-09 19:56:07 +0000184 self.insert_test(job, test, commit=commit)
mbligh608c3252007-08-31 13:53:00 +0000185
mbligh96b9a5a2007-11-24 19:32:20 +0000186
mbligh432bad42007-10-09 19:56:07 +0000187 def insert_test(self, job, test, commit = None):
188 kver = self.insert_kernel(test.kernel, commit=commit)
mbligh608c3252007-08-31 13:53:00 +0000189 data = {'job_idx':job.index, 'test':test.testname,
mbligh2bd48872007-09-20 18:32:25 +0000190 'subdir':test.subdir, 'kernel_idx':kver,
mbligh8e1ab172007-09-13 17:29:56 +0000191 'status':self.status_idx[test.status],
mbligh2aaeb672007-10-01 14:54:18 +0000192 'reason':test.reason, 'machine_idx':job.machine_idx }
mbligh432bad42007-10-09 19:56:07 +0000193 self.insert('tests', data, commit=commit)
mbligh2bd48872007-09-20 18:32:25 +0000194 test_idx = self.find_test(job.index, test.subdir)
195 data = { 'test_idx':test_idx }
196
197 for i in test.iterations:
198 data['iteration'] = i.index
199 for key in i.keyval:
200 data['attribute'] = key
201 data['value'] = i.keyval[key]
mbligh432bad42007-10-09 19:56:07 +0000202 self.insert('iteration_result',
203 data,
204 commit=commit)
mbligh994a23d2007-10-25 15:28:58 +0000205 data = {'test_idx':test_idx, 'attribute':'version', 'value':test.version}
206 self.insert('test_attributes', data, commit=commit)
mblighe9cf9d42007-08-31 08:56:00 +0000207
208
mbligh048e1c92007-10-07 00:10:33 +0000209 def read_machine_map(self):
210 self.machine_group = {}
211 for line in open(self.machine_map, 'r').readlines():
212 (machine, group) = line.split()
213 self.machine_group[machine] = group
214
215
mbligh7a41a862007-11-30 17:44:24 +0000216 def insert_machine(self, job, group = None, commit = None):
217 hostname = job.machine
mbligh048e1c92007-10-07 00:10:33 +0000218 if self.machine_map and not self.machine_group:
219 self.read_machine_map()
220
221 if not group:
222 group = self.machine_group.get(hostname, hostname)
mbligh7a41a862007-11-30 17:44:24 +0000223 if group == hostname and job.machine_owner:
224 group = job.machine_owner + '/' + hostname
225
mbligh432bad42007-10-09 19:56:07 +0000226 self.insert('machines',
227 { 'hostname' : hostname ,
mbligh7a41a862007-11-30 17:44:24 +0000228 'machine_group' : group ,
229 'owner' : job.machine_owner },
mbligh432bad42007-10-09 19:56:07 +0000230 commit=commit)
mbligh2aaeb672007-10-01 14:54:18 +0000231 return self.lookup_machine(hostname)
232
233
234 def lookup_machine(self, hostname):
235 where = { 'hostname' : hostname }
236 rows = self.select('machine_idx', 'machines', where)
237 if rows:
238 return rows[0][0]
239 else:
240 return None
241
242
mbligh9bb92fe2007-09-12 15:54:23 +0000243 def lookup_kernel(self, kernel):
244 rows = self.select('kernel_idx', 'kernels',
mbligh048e1c92007-10-07 00:10:33 +0000245 {'kernel_hash':kernel.kernel_hash})
mbligh237bed32007-09-05 13:05:57 +0000246 if rows:
247 return rows[0][0]
248 else:
249 return None
mblighe9cf9d42007-08-31 08:56:00 +0000250
251
mbligh432bad42007-10-09 19:56:07 +0000252 def insert_kernel(self, kernel, commit = None):
mbligh9bb92fe2007-09-12 15:54:23 +0000253 kver = self.lookup_kernel(kernel)
mbligh237bed32007-09-05 13:05:57 +0000254 if kver:
255 return kver
mbligh432bad42007-10-09 19:56:07 +0000256 self.insert('kernels',
257 {'base':kernel.base,
258 'kernel_hash':kernel.kernel_hash,
259 'printable':kernel.base},
260 commit=commit)
mbligh9bb92fe2007-09-12 15:54:23 +0000261 # WARNING - incorrectly shoving base into printable here.
262 kver = self.lookup_kernel(kernel)
mbligh237bed32007-09-05 13:05:57 +0000263 for patch in kernel.patches:
mbligh432bad42007-10-09 19:56:07 +0000264 self.insert_patch(kver, patch, commit=commit)
mbligh237bed32007-09-05 13:05:57 +0000265 return kver
266
267
mbligh432bad42007-10-09 19:56:07 +0000268 def insert_patch(self, kver, patch, commit = None):
mbligh237bed32007-09-05 13:05:57 +0000269 print patch.reference
270 name = os.path.basename(patch.reference)[:80]
mbligh432bad42007-10-09 19:56:07 +0000271 self.insert('patches',
272 {'kernel_idx': kver,
273 'name':name,
274 'url':patch.reference,
275 'hash':patch.hash},
276 commit=commit)
mbligh056d0d32006-10-08 22:31:10 +0000277
mbligh048e1c92007-10-07 00:10:33 +0000278
mbligh2bd48872007-09-20 18:32:25 +0000279 def find_test(self, job_idx, subdir):
280 where = { 'job_idx':job_idx , 'subdir':subdir }
281 rows = self.select('test_idx', 'tests', where)
282 if rows:
283 return rows[0][0]
284 else:
285 return None
286
mbligh056d0d32006-10-08 22:31:10 +0000287
mbligh96b9a5a2007-11-24 19:32:20 +0000288 def find_tests(self, job_idx):
289 where = { 'job_idx':job_idx }
290 rows = self.select('test_idx', 'tests', where)
291 if rows:
292 return [row[0] for row in rows]
293 else:
mbligh2e57e7b2007-11-29 16:10:50 +0000294 return []
mbligh96b9a5a2007-11-24 19:32:20 +0000295
296
mbligh056d0d32006-10-08 22:31:10 +0000297 def find_job(self, tag):
mbligh608c3252007-08-31 13:53:00 +0000298 rows = self.select('job_idx', 'jobs', {'tag': tag})
299 if rows:
300 return rows[0][0]
301 else:
302 return None
mblighaf25f062007-12-03 17:48:35 +0000303
304
305# Use a class method as a class factory, generating a relevant database object.
306def db(*args, **dargs):
307 path = os.path.dirname(os.path.abspath(sys.argv[0]))
mbligha044e562007-12-07 16:26:13 +0000308 db_type = None
mblighaf25f062007-12-03 17:48:35 +0000309 try:
mbligha044e562007-12-07 16:26:13 +0000310 db_file = os.path.join(path, '.database')
311 db_prefs = open(db_file, 'r')
mblighaf25f062007-12-03 17:48:35 +0000312 host = db_prefs.readline().rstrip()
313 database = db_prefs.readline().rstrip()
mbligha044e562007-12-07 16:26:13 +0000314 db_type = db_prefs.readline().rstrip()
315 except:
316 pass
mblighaf25f062007-12-03 17:48:35 +0000317
mbligha044e562007-12-07 16:26:13 +0000318 if not db_type:
319 db_type = 'mysql'
320
321 db_type = 'db_' + db_type
322 exec 'import %s; db = %s.%s(*args, **dargs)' % (db_type, db_type, db_type)
mblighaf25f062007-12-03 17:48:35 +0000323
324 return db