Add a python bindings sequence test
[babeltrace.git] / bindings / python / examples / python2 / histogram.py
CommitLineData
300b4c33 1#!/usr/bin/env python2
24a3136a 2# histogram.py
300b4c33 3#
24a3136a 4# Babeltrace histogram example script
300b4c33 5#
24a3136a 6# Copyright 2012 EfficiOS Inc.
300b4c33 7#
24a3136a 8# Author: Danny Serres <danny.serres@efficios.com>
300b4c33 9#
24a3136a
DS
10# Permission is hereby granted, free of charge, to any person obtaining a copy
11# of this software and associated documentation files (the "Software"), to deal
12# in the Software without restriction, including without limitation the rights
13# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14# copies of the Software, and to permit persons to whom the Software is
15# furnished to do so, subject to the following conditions:
300b4c33 16#
24a3136a
DS
17# The above copyright notice and this permission notice shall be included in
18# all copies or substantial portions of the Software.
19
20# The script checks the number of events in the trace
21# and outputs a table and a .svg histogram for the specified
22# range (microseconds) or the total trace if no range specified.
23# The graph is generated using the cairoplot module.
24
25import sys
26from babeltrace import *
27from output_format_modules import cairoplot
28from output_format_modules.pprint_table import pprint_table as pprint
29
30# ------------------------------------------------
31# Output settings
32
33# number of intervals:
34nbDiv = 25 # Should not be over 150
35 # for usable graph output
36
37# table output stream (file-like object):
38out = sys.stdout
39# -------------------------------------------------
40
41if len(sys.argv) < 2 or len(sys.argv) > 4:
42 raise TypeError("Usage: python histogram.py [ start_time [end_time] ] path/to/trace")
43
44ctx = Context()
45ret = ctx.add_trace(sys.argv[len(sys.argv)-1], "ctf")
46if ret is None:
47 raise IOError("Error adding trace")
48
49# Check when to start/stop graphing
50sinceBegin = True
51beginTime = 0.0
52if len(sys.argv) > 2:
53 sinceBegin = False
54 beginTime = float(sys.argv[1])
55untilEnd = True
56if len(sys.argv) == 4:
57 untilEnd = False
58
59# Setting iterator
60bp = IterPos(SEEK_BEGIN)
61ctf_it = ctf.Iterator(ctx, bp)
62
63# Reading events
64event = ctf_it.read_event()
65start_time = event.get_timestamp()
66time = 0
67count = {}
68
69while(event is not None):
70 # Microsec.
71 time = (event.get_timestamp() - start_time)/1000.0
72
73 # Check if in range
74 if not sinceBegin:
75 if time < beginTime:
76 # Next Event
77 ret = ctf_it.next()
78 if ret < 0:
79 break
80 event = ctf_it.read_event()
81 continue
82 if not untilEnd:
83 if time > float(sys.argv[2]):
84 break
85
86 # Counting events per timestamp:
87 if time in count:
88 count[time] += 1
89 else:
90 count[time] = 1
91
92 # Next Event
93 ret = ctf_it.next()
94 if ret < 0:
95 break
96 event = ctf_it.read_event()
97
98del ctf_it
99
100# Setting data for output
101interval = (time - beginTime)/nbDiv
102div_begin_time = beginTime
103div_end_time = beginTime + interval
104data = {}
105
106# Prefix for string sorting, considering
107# there should not be over 150 intervals.
108# This would work up to 9999 intervals.
109# If needed, add zeros.
110prefix = 0.0001
111
112while div_end_time <= time:
113 key = str(prefix) + '[' + str(div_begin_time) + ';' + str(div_end_time) + '['
114 for tmp in count:
115 if tmp >= div_begin_time and tmp < div_end_time:
116 if key in data:
117 data[key] += count[tmp]
118 else:
119 data[key] = count[tmp]
120 if not key in data:
121 data[key] = 0
122 div_begin_time = div_end_time
123 div_end_time += interval
124 # Prefix increment
125 prefix += 0.001
126
127table = []
128x_labels = []
129for key in sorted(data):
130 table.append([key[key.find('['):], data[key]])
131 x_labels.append(key[key.find('['):])
132
133# Table output
134table.insert(0, ["INTERVAL (us)", "COUNT"])
135pprint(table, 1, out)
136
137# Graph output
138cairoplot.vertical_bar_plot ( 'histogram.svg', data, 50 + 150*nbDiv, 50*nbDiv,
139 border = 20, display_values = True, grid = True,
140 x_labels = x_labels, rounded_corners = True )
This page took 0.02769 seconds and 4 git commands to generate.