-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclone_vdec_data.py
81 lines (63 loc) · 2.53 KB
/
clone_vdec_data.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
81
from sigvisa.database import db
import numpy as np
import sigvisa.utils.geog
import csv
from optparse import OptionParser
import os
cursor = db.connect().cursor()
def dump_table(cursor, table_name):
sql_query = "select * from %s" % table_name
cursor.execute(sql_query)
fname = '%s.csv' % table_name
csvWriter = csv.writer(open(fname, 'wb'), delimiter=',',
quotechar="'", quoting=csv.QUOTE_MINIMAL)
nrows = 0
print "writing table %s to %s..." % (table_name, fname)
for r in cursor:
csvWriter.writerow(r)
nrows = nrows + 1
if nrows % 10000 == 0:
print "... wrote %d rows" % nrows
print "... wrote %d rows" % nrows
print "done."
def clear_table(cursor, table_name):
sql_query = "delete from %s" % table_name
print sql_query
cursor.execute(sql_query)
def load_table(cursor, table_name, fname):
sql_query = "load data infile '%s' into table %s fields terminated by ','" % (os.path.abspath(fname), table_name)
print sql_query
cursor.execute(sql_query)
def main():
parser = OptionParser()
parser.add_option("--dump", dest="dump", default=False, action="store_true")
parser.add_option("--import", dest="load", default=False, action="store_true")
parser.add_option("--preserve", dest="preserve", default=False, action="store_true")
(options, args) = parser.parse_args()
if (options.dump and options.load) or (not options.dump and not options.load):
raise Exception("must specify exactly one of --dump or --import")
cursor = db.connect().cursor()
if options.dump:
if len(args) == 0:
args = ["sigvisa_coda_fits", "sigvise_wiggle_wfdisc"]
for table in args:
dump_table(cursor, table)
elif options.load:
if len(args) == 0:
raise Exception("must specify list of .csv files to import...")
for fname in args:
a, b = os.path.splitext(fname)
if b != ".csv":
raise Exception("filename must be in format <db_table_name>.csv (got %s)" % fname)
tname = os.path.split(a)[-1]
if not options.preserve:
try:
clear_table(cursor, tname)
except Exception as e:
print "could not clear table %s: exception" % tname, e
try:
load_table(cursor, tname, fname)
except Exception as e:
print "could not load into table %s: exception" % tname, e
if __name__ == "__main__":
main()