blob: 15173da6057c93c9a50a5418dbdf27ae2be467bc [file] [log] [blame]
import re, os, sys, types
class db_sql:
def __init__(self, debug = False, autocommit=True, host = None,
database = None, user = None, password = None):
self.debug = debug
self.autocommit = autocommit
path = os.path.dirname(__file__)
try:
file = os.path.join(path, '.database')
db_prefs = open(file, 'r')
if not host:
host = db_prefs.readline().rstrip()
if not database:
database = db_prefs.readline().rstrip()
except:
if not host:
host = 'localhost'
if not database:
database = 'tko'
try:
file = os.path.join(path, '.priv_login')
login = open(file, 'r')
if not user:
user = login.readline().rstrip()
if not password:
password = login.readline().rstrip()
except:
try:
file = os.path.join(path, '.unpriv_login')
login = open(file, 'r')
if not user:
user = login.readline().rstrip()
if not password:
password = login.readline().rstrip()
except:
if not user:
user = 'nobody'
if not password:
password = ''
self.con = self.connect(host, database, user, password)
self.cur = self.con.cursor()
# if not present, insert statuses
self.status_idx = {}
self.status_word = {}
status_rows = self.select('status_idx, word', 'status', None)
for s in status_rows:
self.status_idx[s[1]] = s[0]
self.status_word[s[0]] = s[1]
dir = os.path.dirname(__file__)
machine_map = os.path.join(dir, 'machines')
if os.path.exists(machine_map):
self.machine_map = machine_map
else:
self.machine_map = None
self.machine_group = {}
def dprint(self, value):
if self.debug:
sys.stdout.write('SQL: ' + str(value) + '\n')
def commit(self):
self.con.commit()
def get_last_autonumber_value(self):
self.cur.execute('SELECT LAST_INSERT_ID()', [])
return self.cur.fetchall()[0][0]
def select(self, fields, table, where, wherein={}, distinct = False,
group_by = None):
"""\
This selects all the fields requested from a
specific table with a particular where clause.
The where clause can either be a dictionary of
field=value pairs, a string, or a tuple of (string,
a list of values). The last option is what you
should use when accepting user input as it'll
protect you against sql injection attacks (if
all user data is placed in the array rather than
the raw SQL).
For example:
where = ("a = %s AND b = %s", ['val', 'val'])
is better than
where = "a = 'val' AND b = 'val'"
"""
cmd = ['select']
if distinct:
cmd.append('distinct')
cmd += [fields, 'from', table]
values = []
if where and isinstance(where, types.DictionaryType):
# key/value pairs (which should be equal)
keys = [field + '=%s' for field in where.keys()]
values = [where[field] for field in where.keys()]
cmd.append(' where ' + ' and '.join(keys))
elif where and isinstance(where, types.StringTypes):
# the exact string
cmd.append(' where ' + where)
elif where and isinstance(where, types.TupleType):
# preformatted where clause + values
(sql, vals) = where
values = vals
cmd.append(' where (%s) ' % sql)
# TODO: this assumes there's a where clause...bad
if wherein and isinstance(wherein, types.DictionaryType):
keys_in = []
for field_in in wherein.keys():
keys_in += [field_in + ' in (' + ','.join(wherein[field_in])+') ']
cmd.append(' and '+' and '.join(keys_in))
if group_by:
cmd.append(' GROUP BY ' + group_by)
self.dprint('%s %s' % (' '.join(cmd), values))
self.cur.execute(' '.join(cmd), values)
return self.cur.fetchall()
def select_sql(self, fields, table, sql, values):
"""\
select fields from table "sql"
"""
cmd = 'select %s from %s %s' % (fields, table, sql)
self.dprint(cmd)
self.cur.execute(cmd, values)
return self.cur.fetchall()
def insert(self, table, data, commit = None):
"""\
'insert into table (keys) values (%s ... %s)', values
data:
dictionary of fields and data
"""
if commit == None:
commit = self.autocommit
fields = data.keys()
refs = ['%s' for field in fields]
values = [data[field] for field in fields]
cmd = 'insert into %s (%s) values (%s)' % \
(table, ','.join(fields), ','.join(refs))
self.dprint('%s %s' % (cmd,values))
self.cur.execute(cmd, values)
if commit:
self.con.commit()
def delete(self, table, where, commit = None):
cmd = ['delete from', table]
if commit == None:
commit = self.autocommit
if where and isinstance(where, types.DictionaryType):
keys = [field + '=%s' for field in where.keys()]
values = [where[field] for field in where.keys()]
cmd += ['where', ' and '.join(keys)]
self.dprint('%s %s' % (' '.join(cmd),values))
self.cur.execute(' '.join(cmd), values)
if commit:
self.con.commit()
def update(self, table, data, where, commit = None):
"""\
'update table set data values (%s ... %s) where ...'
data:
dictionary of fields and data
"""
if commit == None:
commit = self.autocommit
cmd = 'update %s ' % table
fields = data.keys()
data_refs = [field + '=%s' for field in fields]
data_values = [data[field] for field in fields]
cmd += ' set ' + ' and '.join(data_refs)
where_keys = [field + '=%s' for field in where.keys()]
where_values = [where[field] for field in where.keys()]
cmd += ' where ' + ' and '.join(where_keys)
print '%s %s' % (cmd, data_values + where_values)
self.cur.execute(cmd, data_values + where_values)
if commit:
self.con.commit()
def delete_job(self, tag, commit = None):
job_idx = self.find_job(tag)
for test_idx in self.find_tests(job_idx):
where = {'test_idx' : test_idx}
self.delete('iteration_result', where)
self.delete('test_attributes', where)
where = {'job_idx' : job_idx}
self.delete('tests', where)
self.delete('jobs', where)
def insert_job(self, tag, job, commit = None):
job.machine_idx = self.lookup_machine(job.machine)
if not job.machine_idx:
job.machine_idx = self.insert_machine(job,
commit=commit)
self.insert('jobs', {'tag':tag,
'label': job.label,
'username': job.user,
'machine_idx': job.machine_idx,
'queued_time': job.queued_time,
'started_time': job.started_time,
'finished_time': job.finished_time},
commit=commit)
job.index = self.get_last_autonumber_value()
for test in job.tests:
self.insert_test(job, test, commit=commit)
def insert_test(self, job, test, commit = None):
kver = self.insert_kernel(test.kernel, commit=commit)
data = {'job_idx':job.index, 'test':test.testname,
'subdir':test.subdir, 'kernel_idx':kver,
'status':self.status_idx[test.status],
'reason':test.reason, 'machine_idx':job.machine_idx,
'finished_time':test.finished_time}
self.insert('tests', data, commit=commit)
test_idx = self.get_last_autonumber_value()
data = { 'test_idx':test_idx }
for i in test.iterations:
data['iteration'] = i.index
for key in i.keyval:
data['attribute'] = key
data['value'] = i.keyval[key]
self.insert('iteration_result',
data,
commit=commit)
data = {'test_idx':test_idx, 'attribute':'version', 'value':test.version}
self.insert('test_attributes', data, commit=commit)
def read_machine_map(self):
self.machine_group = {}
for line in open(self.machine_map, 'r').readlines():
(machine, group) = line.split()
self.machine_group[machine] = group
def insert_machine(self, job, group = None, commit = None):
hostname = job.machine
if self.machine_map and not self.machine_group:
self.read_machine_map()
if not group:
group = self.machine_group.get(hostname, hostname)
if group == hostname and job.machine_owner:
group = job.machine_owner + '/' + hostname
self.insert('machines',
{ 'hostname' : hostname ,
'machine_group' : group ,
'owner' : job.machine_owner },
commit=commit)
return self.get_last_autonumber_value()
def lookup_machine(self, hostname):
where = { 'hostname' : hostname }
rows = self.select('machine_idx', 'machines', where)
if rows:
return rows[0][0]
else:
return None
def lookup_kernel(self, kernel):
rows = self.select('kernel_idx', 'kernels',
{'kernel_hash':kernel.kernel_hash})
if rows:
return rows[0][0]
else:
return None
def insert_kernel(self, kernel, commit = None):
kver = self.lookup_kernel(kernel)
if kver:
return kver
self.insert('kernels',
{'base':kernel.base,
'kernel_hash':kernel.kernel_hash,
'printable':kernel.base},
commit=commit)
# WARNING - incorrectly shoving base into printable here.
kver = self.get_last_autonumber_value()
for patch in kernel.patches:
self.insert_patch(kver, patch, commit=commit)
return kver
def insert_patch(self, kver, patch, commit = None):
print patch.reference
name = os.path.basename(patch.reference)[:80]
self.insert('patches',
{'kernel_idx': kver,
'name':name,
'url':patch.reference,
'hash':patch.hash},
commit=commit)
def find_test(self, job_idx, subdir):
where = { 'job_idx':job_idx , 'subdir':subdir }
rows = self.select('test_idx', 'tests', where)
if rows:
return rows[0][0]
else:
return None
def find_tests(self, job_idx):
where = { 'job_idx':job_idx }
rows = self.select('test_idx', 'tests', where)
if rows:
return [row[0] for row in rows]
else:
return []
def find_job(self, tag):
rows = self.select('job_idx', 'jobs', {'tag': tag})
if rows:
return rows[0][0]
else:
return None
# Use a class method as a class factory, generating a relevant database object.
def db(*args, **dargs):
path = os.path.dirname(__file__)
db_type = None
try:
db_file = os.path.join(path, '.database')
db_prefs = open(db_file, 'r')
host = db_prefs.readline().rstrip()
database = db_prefs.readline().rstrip()
db_type = db_prefs.readline().rstrip()
except:
pass
if not db_type:
db_type = 'mysql'
db_type = 'db_' + db_type
exec 'import %s; db = %s.%s(*args, **dargs)' % (db_type, db_type, db_type)
return db