04fc256e7359de8733d1012647b88d24d7f4fe4e
[libfirm] / scripts / statev_sql.py
1 #! /usr/bin/env python
2
3 import sys
4 import os
5 import re
6 import time
7 import stat
8 import fileinput
9 import tempfile
10 import optparse
11
12 class DummyFilter:
13         def match(self, dummy):
14                 return True
15
16 class EmitBase:
17         def create_table(self, cols, name, type, unique):
18                 create = 'create table if not exists %s (id int %s' % (name, unique)
19
20                 sorted = [None] * len(cols)
21                 for x in cols.iterkeys():
22                         sorted[cols[x]] = x
23                 for x in sorted:
24                         create += (', %s %s' % (x, type))
25                 create += ');'
26                 return create
27
28 class EmitMysqlInfile(EmitBase):
29         tmpfile_mode = stat.S_IREAD | stat.S_IROTH | stat.S_IWUSR
30
31         def ex(self, args, tab, fname):
32                 res = os.fork()
33                 if res == 0:
34                         stmt = """load data infile '%s' into table %s fields terminated by ';'""" % (fname, tab)
35                         conn = MySQLdb.connect(**args)
36                         c = conn.cursor()
37                         c.execute(stmt)
38                         conn.commit()
39                         sys.exit(0)
40                 return res
41
42         def __init__(self, options, tables, ctxcols, evcols):
43                 import MySQLdb
44
45                 args = dict()
46                 if options.password:
47                         args['passwd'] = options.password
48                 if not options.host:
49                         options.host = 'localhost'
50                 args['user'] = options.user
51                 args['host'] = options.host
52                 args['db']   = options.database
53
54                 self.conn     = MySQLdb.connect(**args)
55                 self.ctxcols  = ctxcols
56                 self.evcols   = evcols
57                 self.options  = options
58                 self.ctxtab   = tables['ctx']
59                 self.evtab    = tables['ev']
60
61                 params = (tempfile.gettempdir(), os.sep, os.getpid())
62                 self.evfifo  = '%s%sstatev_ev_%d' % params
63                 self.ctxfifo = '%s%sstatev_ctx_%d' % params
64
65                 os.mkfifo(self.evfifo)
66                 os.mkfifo(self.ctxfifo)
67
68                 os.chmod(self.evfifo,  self.tmpfile_mode)
69                 os.chmod(self.ctxfifo, self.tmpfile_mode)
70
71                 c = self.conn.cursor()
72                 c.execute('drop table if exists ' + self.evtab)
73                 c.execute('drop table if exists ' + self.ctxtab)
74                 c.execute(self.create_table(self.ctxcols, self.ctxtab, 'char(80)', 'unique'))
75                 c.execute(self.create_table(self.evcols, self.evtab, 'double default null', ''))
76                 self.conn.commit()
77
78                 if options.verbose:
79                         print 'go for gold'
80
81                 self.pidev  = self.ex(args, self.evtab, self.evfifo)
82                 self.pidctx = self.ex(args, self.ctxtab, self.ctxfifo)
83
84                 if options.verbose:
85                         print "forked two mysql leechers: %d, %d" % (self.pidev, self.pidctx)
86
87                 self.evfile   = open(self.evfifo, 'w+t')
88                 self.ctxfile  = open(self.ctxfifo, 'w+t')
89
90                 if options.verbose:
91                         print 'fifo:  %s, %o' % (self.evfile.name, os.stat(self.evfile.name).st_mode)
92                         print 'fifo:  %s, %o' % (self.ctxfile.name, os.stat(self.ctxfile.name).st_mode)
93
94         def ev(self, curr_id, evitems):
95                 field = ['\N'] * len(self.evcols)
96                 for key, val in evitems.iteritems():
97                         index = self.evcols[key]
98                         field[index] = val
99                 print >> self.evfile, ('%d;' % curr_id) + ';'.join(field)
100
101         def ctx(self, curr_id, ctxitems):
102                 field = ['\N'] * len(self.ctxcols)
103                 for key, val in ctxitems.iteritems():
104                         index = self.ctxcols[key]
105                         field[index] = val
106                 print >> self.ctxfile, ('%d;' % curr_id) + ';'.join(field)
107
108         def commit(self):
109                 self.evfile.close()
110                 self.ctxfile.close()
111
112                 os.waitpid(self.pidev, 0)
113                 os.waitpid(self.pidctx, 0)
114
115                 os.unlink(self.evfile.name)
116                 os.unlink(self.ctxfile.name)
117
118
119 class EmitSqlite3(EmitBase):
120         def __init__(self, options, tables, ctxcols, evcols):
121                 import sqlite3
122
123                 if os.path.isfile(options.database):
124                         os.unlink(options.database)
125
126                 self.ctxtab = tables['ctx']
127                 self.evtab  = tables['ev']
128                 self.conn = sqlite3.connect(options.database)
129                 self.conn.execute(self.create_table(ctxcols, self.ctxtab, 'text', 'unique'))
130                 self.conn.execute(self.create_table(evcols, self.evtab, 'double', ''))
131
132                 n = max(len(ctxcols), len(evcols)) + 1
133                 q = ['?']
134                 self.quests = []
135                 for i in xrange(0, n):
136                         self.quests.append(','.join(q))
137                         q.append('?')
138
139         def ev(self, curr_id, evitems):
140                 keys = ','.join(evitems.keys())
141                 stmt = 'insert into %s (id, %s) values (%s)' % (self.evtab, keys, self.quests[len(evitems)])
142                 self.conn.execute(stmt, (curr_id,) + tuple(evitems.values()))
143
144         def ctx(self, curr_id, ctxitems):
145                 keys = ','.join(ctxitems.keys())
146                 stmt = 'insert into %s (id, %s) values (%s)' % (self.ctxtab, keys, self.quests[len(ctxitems)])
147                 self.conn.execute(stmt, (curr_id,) + tuple(ctxitems.values()))
148
149         def commit(self):
150                 self.conn.commit()
151
152 class Conv:
153         engines = { 'sqlite3': EmitSqlite3, 'mysql': EmitMysqlInfile }
154         def find_heads(self):
155                 n_ev    = 0
156                 ctxind  = 0
157                 evind   = 0
158                 ctxcols = dict()
159                 evcols  = dict()
160
161                 self.valid_keys = set()
162
163                 for line in self.input():
164                         if line[0] == 'P':
165                                 ind = line.index(';', 2)
166                                 key = line[2:ind]
167                                 if not key in ctxcols:
168                                         ctxcols[key] = ctxind
169                                         ctxind += 1
170
171                         elif line[0] == 'E':
172                                 ind = line.index(';', 2)
173                                 key = line[2:ind]
174                                 if self.filter.match(key):
175                                         self.n_events += 1
176                                         if not key in evcols:
177                                                 self.valid_keys.add(key)
178                                                 evcols[key] = evind
179                                                 evind += 1
180
181                 return (ctxcols, evcols)
182
183         def input(self):
184                 return fileinput.FileInput(files=self.files, openhook=fileinput.hook_compressed)
185
186         def fill_tables(self):
187                 lineno     = 0
188                 ids        = 0
189                 curr_id    = 0
190                 keystack   = []
191                 idstack    = []
192                 curr_event = 0
193                 last_prec  = -1
194                 evcols     = dict()
195                 ctxcols    = dict()
196
197                 for line in self.input():
198                         lineno += 1
199                         items = line.strip().split(';')
200                         op    = items[0]
201
202                         if op == 'P':
203                                 # flush the current events
204                                 if len(evcols):
205                                         self.emit.ev(curr_id, evcols)
206                                         evcols.clear()
207
208                                 # push the key
209                                 key   = items[1]
210                                 val   = items[2]
211                                 keystack.append(key)
212                                 curr_id = ids
213                                 ids += 1
214                                 idstack.append(curr_id)
215                                 ctxcols[key] = val
216
217                                 self.emit.ctx(curr_id, ctxcols)
218
219                         elif op == 'O':
220                                 popkey = items[1]
221                                 key = keystack.pop()
222
223                                 if popkey != key:
224                                         print "unmatched pop in line %d, push key %s, pop key: %s" % (lineno, key, popkey)
225
226                                 idstack.pop()
227                                 if len(idstack) > 0:
228                                         if len(evcols) > 0:
229                                                 self.emit.ev(curr_id, evcols)
230                                                 evcols.clear()
231                                         del ctxcols[key]
232                                         curr_id = idstack[-1]
233                                 else:
234                                         curr_id = -1
235
236                         elif op == 'E':
237                                 key = items[1]
238                                 if key in self.valid_keys:
239                                         curr_event += 1
240                                         evcols[key] = items[2]
241
242                                         if self.verbose:
243                                                 prec = curr_event * 10 / self.n_events
244                                                 if prec > last_prec:
245                                                         last_prec = prec
246                                                         print '%10d / %10d' % (curr_event, self.n_events)
247
248         def __init__(self):
249                 parser = optparse.OptionParser('usage: %prog [options]  <event file...>')
250                 parser.add_option("-c", "--clean",    dest="clean",    help="delete tables in advance", action="store_true", default=False)
251                 parser.add_option("-v", "--verbose",  dest="verbose",  help="verbose messages",         action="store_true", default=False)
252                 parser.add_option("-f", "--filter",   dest="filter",   help="regexp to filter event keys", metavar="REGEXP")
253                 parser.add_option("-u", "--user",     dest="user",     help="user",               metavar="USER")
254                 parser.add_option("-H", "--host",     dest="host",     help="host",               metavar="HOST")
255                 parser.add_option("-p", "--password", dest="password", help="password",           metavar="PASSWORD")
256                 parser.add_option("-d", "--db",       dest="database", help="database",           metavar="DB")
257                 parser.add_option("-e", "--engine",   dest="engine",   help="engine",             metavar="ENG", default='sqlite3')
258                 parser.add_option("-P", "--prefix",   dest="prefix",   help="table prefix",       metavar="PREFIX", default='')
259                 (options, args) = parser.parse_args()
260
261                 self.n_events = 0
262                 self.stmts    = dict()
263                 self.verbose  = options.verbose
264
265                 tables = dict()
266                 tables['ctx'] = options.prefix + 'ctx'
267                 tables['ev']  = options.prefix + 'ev'
268
269                 if len(args) < 1:
270                         parser.print_help()
271                         sys.exit(1)
272
273                 self.files  = []
274                 files       = args
275
276                 for file in files:
277                         if not os.path.isfile(file):
278                                 print "cannot find input file %s" % (file, )
279                         else:
280                                 self.files.append(file)
281
282                 if len(self.files) < 1:
283                         print "no input file to process"
284                         sys.exit(3)
285
286                 if options.filter:
287                         self.filter = re.compile(options.filter)
288                 else:
289                         self.filter = DummyFilter()
290
291                 if options.engine in self.engines:
292                         engine = self.engines[options.engine]
293                 else:
294                         print 'engine %s not found' % options.engine
295                         print 'we offer: %s' % self.engines.keys()
296                         sys.exit(0)
297
298                 if options.verbose:
299                         print "determining schema..."
300
301                 (ctxcols, evcols) = self.find_heads()
302                 if options.verbose:
303                         print "context schema:"
304                         print ctxcols
305                         print "event schema:"
306                         print evcols
307                         print "tables:"
308                         print tables
309
310                 self.emit = engine(options, tables, ctxcols, evcols)
311
312                 if options.verbose:
313                         print "filling tables..."
314                 self.fill_tables()
315                 if options.verbose:
316                         print "comitting..."
317                 self.emit.commit()
318
319 if __name__ == "__main__":
320         Conv()