Converted import.py to use MySQL. git-svn-id: svn://10.0.0.236/trunk@231688 18797224-902f-48f8-a5cc-f745e15eee43
110 lines
3.5 KiB
Python
110 lines
3.5 KiB
Python
#!/usr/bin/env python
|
|
|
|
import string
|
|
import sys, os
|
|
import time
|
|
import re
|
|
from optparse import OptionParser
|
|
from optparse import OptionValueError
|
|
|
|
DIRNAME= os.path.dirname(sys.argv[0])
|
|
if DIRNAME:
|
|
sys.path.append(DIRNAME + "/../")
|
|
else:
|
|
sys.path.append("../")
|
|
|
|
from graphsdb import db
|
|
|
|
parser = OptionParser(usage="Usage: %prog [options] test_name tinderbox_name tinderbox_machine_type tinderbox_branch < data.txt")
|
|
parser.add_option("-b", "--baseline", dest="baseline", metavar="NAME",
|
|
action="store", default=None,
|
|
help="use as baseline data for a test of the same name")
|
|
parser.add_option("-r", "--replace", dest="replace",
|
|
action="store_true", default=False,
|
|
help="remove current data for this test and re-add all data")
|
|
(options, args) = parser.parse_args()
|
|
|
|
if options.baseline == None:
|
|
test_type = "perf"
|
|
else:
|
|
test_type = "baseline"
|
|
|
|
if len(args) != 4:
|
|
parser.print_help()
|
|
sys.exit()
|
|
|
|
(testname, tbox, mtype, branch) = args[0:4]
|
|
branchid = "xxxxxxxx"
|
|
date = ""
|
|
graph_type = "continuous"
|
|
|
|
setid = -1
|
|
while setid == -1:
|
|
cur = db.cursor()
|
|
if options.baseline:
|
|
cur.execute("SELECT id FROM dataset_info WHERE type = ? AND machine <=> ? AND test <=> ? AND test_type=? AND extra_data <=> ? AND branch <=> ?",
|
|
(graph_type, tbox, testname, test_type, options.baseline, branch))
|
|
else:
|
|
cur.execute("SELECT id FROM dataset_info WHERE type = ? AND machine <=> ? AND test <=> ? AND test_type=? AND branch<=>? AND extra_data IS NULL",
|
|
(graph_type, tbox, testname, test_type, branch))
|
|
res = cur.fetchall()
|
|
cur.close()
|
|
|
|
if len(res) == 0:
|
|
db.execute("INSERT INTO dataset_info (type, machine, test, test_type, extra_data, branch, date) VALUES (?,?,?,?,?,?,?)",
|
|
(graph_type, tbox, testname, test_type, options.baseline, branch, date))
|
|
else:
|
|
setid = res[0][0]
|
|
|
|
if options.replace:
|
|
db.execute("DELETE FROM dataset_values WHERE dataset_id = ?", (setid,))
|
|
db.execute("DELETE FROM dataset_extra_data WHERE dataset_id = ?", (setid,))
|
|
|
|
cur = db.cursor()
|
|
cur.execute("SELECT time FROM dataset_values WHERE dataset_id = ? ORDER BY time DESC LIMIT 1", (setid,))
|
|
latest = cur.fetchone()
|
|
if latest == None:
|
|
latest = 0
|
|
else:
|
|
latest = latest[0]
|
|
|
|
db.commit() # release any locks
|
|
|
|
count = 0
|
|
linenum = 0
|
|
for line in sys.stdin:
|
|
linenum = linenum + 1
|
|
|
|
chunks = string.split(line, "\t")
|
|
if len(chunks) == 1 and chunks[0] == '':
|
|
break # don't warn about empty lines
|
|
if len(chunks) != 6 and len(chunks) != 7:
|
|
print "chunks not 6 or 7:", len(chunks), "line#", linenum, "value:", chunks
|
|
break
|
|
|
|
if len(chunks) == 6:
|
|
(datestr, val, data, ip, tinderbox, ua) = chunks[0:6]
|
|
else:
|
|
(datestr, val, codate, data, ip, tinderbox, ua) = chunks[0:7]
|
|
foo = string.split(codate, '=')
|
|
if foo[0] == "MOZ_CO_DATE":
|
|
datestr = foo[1]
|
|
|
|
timeval = time.mktime(map(int, string.split(datestr, ":")) + [0, 0, 0])
|
|
|
|
#don't record this value if it is not defined
|
|
if float(val) != float(val):
|
|
continue;
|
|
#ensure that newlines are stripped from the extra_data
|
|
data = data.rstrip('\r\n')
|
|
|
|
if timeval > latest:
|
|
db.execute("INSERT INTO dataset_values (dataset_id,time,value) VALUES (?,?,?)", (setid, timeval, val))
|
|
db.execute("INSERT INTO dataset_extra_data (dataset_id,time,data) VALUES (?,?,?)", (setid, timeval, data))
|
|
count = count + 1
|
|
|
|
db.commit()
|
|
|
|
print "(", count, ")",
|
|
|