''' Generate reports from the database ''' import time import sys import pandokia.text_table as text_table import pandokia.common import StringIO # maybe the output is html 3.2 - in any case, it is way simpler than # more recent standards. html_header=''' %(title)s ''' html_trailer=''' ''' # this will be reset by the cgi main program if we are in a real cgi cginame = 'arf.cgi' # def info_callback_status( db, run, tablename, host, cmd ) : c = db.cursor() c.execute("SELECT status FROM sm_status WHERE run = ? AND host = ? AND tablename = ? AND cmd = ?",( run, host, tablename, cmd ) ) status, = c.fetchone() return status # ok_status = ( '0', 'N', 'S' ) simple_status = ( 'N', 'P', 'S', 'W' ) def info_callback_gui( db, run, tablename, host, cmd ) : c = db.cursor() c.execute("SELECT status, start_time, end_time FROM sm_status WHERE run = ? AND host = ? AND tablename = ? AND cmd = ?",( run, host, tablename, cmd ) ) x = c.fetchone() if x is None : return '' status, start_time, end_time = x if start_time is None : start_time = '' if end_time is None : end_time = '' # t_result = '%s %s %s'%(status, start_time, end_time ) t_result = status if status not in ok_status : d_status = '%s'%status else : d_status = status if status in simple_status : link = '%s'%d_status else : link = " %s"%(cginame, run, host, tablename, cmd, d_status ) if not status in simple_status : try : st = pandokia.common.parse_time(start_time) st = '%d:%02d'%(st.hour,st.minute) except ValueError : st = '?' try : et = pandokia.common.parse_time(end_time ) et = '%d:%02d'%(et.hour,et.minute) except ValueError : et = '?' link = link + " : " + st + " - " + et # h_result = '%s %s %s %s'%(link, d_status, start_time, end_time) h_result = link return ( t_result, h_result ) # def info_callback_debug_table_cell( db, run, tablename, cmd, host ) : return '%s %s %s %s' % ( run, host, tablename, cmd ) # def get_table_list( db, run_name ) : c = db.cursor() c.execute("select max(depth) as d, tablename from sm_status where run = ? group by tablename order by d asc",(run_name,)) table_list = [ x for x in c ] # table_list contains ( depth, tablename ) return table_list def get_table( db, run_name, tablename, info_callback, showdepth=0 ) : t = text_table.text_table() t.set_html_table_attributes('border=1') t.define_column('-',html=' ',showname='-') # the command name in column 0 if showdepth : t.define_column('depth') c = db.cursor() c.execute("select distinct host from sm_status where tablename = ? and run = ? order by host asc",(tablename, run_name)) for host, in c : t.define_column(host) c.execute("select cmd, max(depth) as d from sm_status where tablename = ? and run = ? group by cmd order by d asc",(tablename, run_name)) row = -1 cmd_to_row = { } for cmd, depth in c : row = row + 1 cmd_to_row[cmd] = row t.set_value(row, 0, cmd) if showdepth : t.set_value(row, 'depth', depth) c.execute("""select cmd, host, status, start_time, end_time, notes from sm_status where tablename = ? and run = ? order by cmd asc """, ( tablename, run_name ) ) row = 0 for x in c : cmd, host, status, start_time, end_time, notes = x row = cmd_to_row[cmd] info = info_callback( db, run_name, tablename, host, cmd ) if isinstance(info, tuple) : t.set_value( row, host, text=info[0], html=info[1] ) else : t.set_value( row, host, info) t.pad() return t # def report_text( db, run_name, info_callback = info_callback_status ) : s = StringIO.StringIO() table_list = get_table_list(db, run_name) for depth, tablename in table_list : s.write("------\n") s.write(tablename) s.write('\n') t = get_table( db, run_name, tablename, info_callback ) s.write( t.get_trac_wiki() ) return s.getvalue() # def report_html( db, run_name, info_callback = info_callback_status, hlevel=1 ) : s = StringIO.StringIO() s.write(html_header % { 'title' : run_name } ) s.write('%s\n'%(hlevel,run_name,hlevel)) hlevel = hlevel + 1 table_list = get_table_list(db, run_name) for depth, tablename in table_list : s.write('%s\n'%(hlevel,tablename,hlevel)) t = get_table( db, run_name, tablename, info_callback, showdepth=1 ) s.write(t.get_html()) s.write(html_trailer) return s.getvalue() # def main() : import steuermann.config db = steuermann.config.open_db() print report_html( db, 'arf2011-08-30 16:52:23.928381' ) if __name__ == '__main__' : main()