aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python/export-to-sqlite.py
diff options
context:
space:
mode:
authorTony Jones <tonyj@suse.de>2019-03-08 19:05:18 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-03-11 15:13:02 -0400
commit49f93bbf17e6267eb34e0c12a9813f3a8723749e (patch)
tree7536067e5052a0e408babe7874d22705f75c4c42 /tools/perf/scripts/python/export-to-sqlite.py
parentebf6c5c181abe9309788c6241d39602a1ce18723 (diff)
perf script python: Add printdate function to SQL exporters
Introduce a printdate function to eliminate the repetitive use of datetime.datetime.today() in the SQL exporting scripts. Signed-off-by: Tony Jones <tonyj@suse.de> Acked-by: Adrian Hunter <adrian.hunter@intel.com> Link: http://lkml.kernel.org/r/20190309000518.2438-5-tonyj@suse.de Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
-rw-r--r--tools/perf/scripts/python/export-to-sqlite.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/tools/perf/scripts/python/export-to-sqlite.py b/tools/perf/scripts/python/export-to-sqlite.py
index 3da338243aed..3b71902a5a21 100644
--- a/tools/perf/scripts/python/export-to-sqlite.py
+++ b/tools/perf/scripts/python/export-to-sqlite.py
@@ -65,6 +65,9 @@ perf_db_export_callchains = False
65def printerr(*args, **keyword_args): 65def printerr(*args, **keyword_args):
66 print(*args, file=sys.stderr, **keyword_args) 66 print(*args, file=sys.stderr, **keyword_args)
67 67
68def printdate(*args, **kw_args):
69 print(datetime.datetime.today(), *args, sep=' ', **kw_args)
70
68def usage(): 71def usage():
69 printerr("Usage is: export-to-sqlite.py <database name> [<columns>] [<calls>] [<callchains>]"); 72 printerr("Usage is: export-to-sqlite.py <database name> [<columns>] [<calls>] [<callchains>]");
70 printerr("where: columns 'all' or 'branches'"); 73 printerr("where: columns 'all' or 'branches'");
@@ -105,7 +108,7 @@ def do_query_(q):
105 return 108 return
106 raise Exception("Query failed: " + q.lastError().text()) 109 raise Exception("Query failed: " + q.lastError().text())
107 110
108print(datetime.datetime.today(), "Creating database ...") 111printdate("Creating database ...")
109 112
110db_exists = False 113db_exists = False
111try: 114try:
@@ -383,7 +386,7 @@ if perf_db_export_calls:
383 call_query.prepare("INSERT INTO calls VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)") 386 call_query.prepare("INSERT INTO calls VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")
384 387
385def trace_begin(): 388def trace_begin():
386 print(datetime.datetime.today(), "Writing records...") 389 printdate("Writing records...")
387 do_query(query, 'BEGIN TRANSACTION') 390 do_query(query, 'BEGIN TRANSACTION')
388 # id == 0 means unknown. It is easier to create records for them than replace the zeroes with NULLs 391 # id == 0 means unknown. It is easier to create records for them than replace the zeroes with NULLs
389 evsel_table(0, "unknown") 392 evsel_table(0, "unknown")
@@ -402,14 +405,14 @@ unhandled_count = 0
402def trace_end(): 405def trace_end():
403 do_query(query, 'END TRANSACTION') 406 do_query(query, 'END TRANSACTION')
404 407
405 print(datetime.datetime.today(), "Adding indexes") 408 printdate("Adding indexes")
406 if perf_db_export_calls: 409 if perf_db_export_calls:
407 do_query(query, 'CREATE INDEX pcpid_idx ON calls (parent_call_path_id)') 410 do_query(query, 'CREATE INDEX pcpid_idx ON calls (parent_call_path_id)')
408 do_query(query, 'CREATE INDEX pid_idx ON calls (parent_id)') 411 do_query(query, 'CREATE INDEX pid_idx ON calls (parent_id)')
409 412
410 if (unhandled_count): 413 if (unhandled_count):
411 print(datetime.datetime.today(), "Warning: ", unhandled_count, " unhandled events") 414 printdate("Warning: ", unhandled_count, " unhandled events")
412 print(datetime.datetime.today(), "Done") 415 printdate("Done")
413 416
414def trace_unhandled(event_name, context, event_fields_dict): 417def trace_unhandled(event_name, context, event_fields_dict):
415 global unhandled_count 418 global unhandled_count