summaryrefslogtreecommitdiff
path: root/rare/interrupts-graph.py
blob: dce9316e2f2eb0b1fdbc4099757d9f5779eab84b (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#!/usr/bin/env python
# Plot the changes in /proc/interrupts over time
# Date: 2014-06-17
# Author: Peter Wu <peter@lekensteyn.nl>

# Wishlist:
# Thicker legend lines
# Nicier smoothing
# split rendering thread from IO thread (otherwise the data is retrieved too
# late when dragging the legend box)

import matplotlib.pyplot as plt
import matplotlib
from collections import deque, OrderedDict
import numpy as np
from scipy.interpolate import spline, interp1d

# Maximimum number of time units to keep
XSCALE = 60
# Delay between updating the graph
INTERVAL = .5
# Log scale base or 0 to disable logarithmic y scaling
LOG_SCALE_BASE = 10
# Whether to enable smooth curves or not
SMOOTH_CURVES = True

MARKER_DEFAULT = 'o'
MARKER_SELECTED = 'v'

# 26 colors from http://graphicdesign.stackexchange.com/a/3815
# "A Colour Alphabet and the Limits of Colour Coding"
COLORS = ['#F0A3FF', '#0075DC', '#993F00', '#4C005C', '#191919', '#005C31',
'#2BCE48', '#FFCC99', '#808080', '#94FFB5', '#8F7C00', '#9DCC00', '#C20088',
'#003380', '#FFA405', '#FFA8BB', '#426600', '#FF0010', '#5EF1F2', '#00998F',
'#E0FF66', '#740AFF', '#990000', '#FFFF80', '#FFFF00', '#FF5005']
# From alex440's comment (currently not used)
ALT_COLORS = ['#023FA5', '#7D87B9', '#BEC1D4', '#D6BCC0', '#BB7784', '#FFFFFF',
'#4A6FE3', '#8595E1', '#B5BBE3', '#E6AFB9', '#E07B91', '#D33F6A', '#11C638',
'#8DD593', '#C6DEC7', '#EAD3C6', '#F0B98D', '#EF9708', '#0FCFC0', '#9CDED6',
'#D5EAE7', '#F3E1EB', '#F6C4E1', '#F79CD4']


def is_line_ok(name, yvalues):
    """Returns True if a line should be displayed for this name."""
    if max(yvalues) < 5:
        return False

    names_ok = ['hci', 'timer']
    for name_ok_part in names_ok:
        if name_ok_part in name:
            return True

    # Accept all
    return True

# Fix Unicode font
matplotlib.rc('font', family='DejaVu Sans')

def get_numbers():
    # TODO: may break the graph if a line disappears
    with open('/proc/interrupts') as pi:
        ncpus = len(pi.readline().split())
        for line in pi:
            name, values = line.split(':', 1)
            name = name.strip()
            values = values.strip().split(None, ncpus)
            if len(values) >= ncpus:
                # Name is ID + description for uniqueness
                name += ':' + values[-1];
                yield name, sum(int(values[i]) for i in range(0, ncpus))

prev = OrderedDict()
def get_diffs():
    for name, n in get_numbers():
        if name in prev:
            yield name, n - prev[name]
        else:
            yield name, 0
        prev[name] = n

plt.ylabel(u'\u0394interrupts')
plt.xlabel(u'\u0394time (sec)')
plt.grid('on')
#plt.ion() # Not necessary if show() does not block.
plt.show(block=False)
plt.xlim(0, XSCALE)
if LOG_SCALE_BASE > 0:
    plt.yscale('log', nonposy='clip', basey=LOG_SCALE_BASE)

# Used when picking a new line or in update()
update_legend = False
### BEGIN EVENTS

# After pressing ^W, stop the main loop
running = True
def on_close(event):
    global running
    running = False
plt.connect('close_event', on_close)

# Space toggles updating
paused = False
def on_keypress(event):
    global paused
    if event.key == ' ':
        paused = not paused
    update_title()
plt.connect('key_press_event', on_keypress)

last_selected = None
def select_line(line):
    global last_selected
    line = lines[line.get_label()]
    if last_selected:
        last_selected.set_marker(MARKER_DEFAULT)
    if last_selected == line:
        last_selected = None
    else:
        line.set_marker(MARKER_SELECTED)
        last_selected = line

def on_pick(event):
    global update_legend
    artist = event.artist
    if isinstance(artist, matplotlib.lines.Line2D):
        select_line(artist)
        update_legend = True
        do_draw()
plt.connect('pick_event', on_pick)

### END EVENTS

names = [name for name, _ in get_diffs()]
yvalues = {}
# Create yvalues, save them and generate plot args
for name in names:
    ydata = deque([0] * XSCALE, XSCALE)
    yvalues[name] = ydata
lines = {}

def update_title():
    title = 'Figure'
    if paused:
        title += ' (paused - press Space to resume)'
    plt.gcf().canvas.set_window_title(title)

smooth = {}
def update():
    """Reads new data and updates the line values."""
    global update_legend
    # Update data
    for name, n in get_diffs():
        ys = yvalues[name]
        ys.append(n)
        # Consider only strictly positive values
        ydata = [y for y in ys if y > 0]
        xdata = [i for i, y in enumerate(ys) if y > 0]

        if ydata and is_line_ok(name, ys):
            # Data is significant, show it
            if name in lines:
                lines[name].set_data(xdata, ydata)
            else:
                color = COLORS[names.index(name) % len(COLORS)]
                lines[name], = plt.plot(xdata, ydata, MARKER_DEFAULT,
                                        label=name,
                                        color=color)
                lines[name].set_picker(5) # Make selectable
                update_legend = True

            # Smooth curve
            ydata_len = len(ydata)
            if ydata_len > 3 and SMOOTH_CURVES:
                min_x = min(xdata)
                max_x = max(xdata)
                xnew = np.linspace(min_x, max_x, (1 + max_x - min_x) * 8)
                #ynew = spline(xdata, ydata, xnew)
                # quadratic and cubic splines give too much deviations
                ynew = interp1d(xdata, ydata, kind='slinear')(xnew)
                if not name in smooth:
                    smooth[name], = plt.plot(xnew, ynew, color=lines[name].get_color())
                    # Smooth line is shown, hide straight lines
                    lines[name].set_linestyle('')
                else:
                    smooth[name].set_data(xnew, ynew)
            elif name in smooth:
                smooth[name].remove()
                del smooth[name]
                # No smooth line is shown, fallback to straight lines
                lines[name].set_linestyle('-')
        elif name in lines:
            # Data is insignificant, remove previous line
            lines[name].remove()
            del lines[name]
            update_legend = True

    largest = 10
    for name in yvalues:
        ydata = yvalues[name]
        if is_line_ok(name, ydata):
            largest = max(largest, max(ydata))
    # Update iff graph becomes too large
    #ymin, ymax = plt.ylim()
    #if ymax - ymin < largest:
    #    plt.ylim(ymin, ymin + largest)
    plt.ylim(0, largest)

def do_draw():
    """Actually draw the graph, updating the legend if necessary."""
    global update_legend
    # update legend if a line gets added, changed or removed
    if update_legend:
        old_legend = plt.axes().get_legend()
        if old_legend:
            # Undocumented API, use it to remember legend position
            old_loc = old_legend._get_loc()

        legend = plt.legend(loc='upper left',
                            framealpha=.5,
                            fontsize='small')
        legend.draggable()
        if old_legend:
            legend._set_loc(old_loc)

        # Enable selecting a line by clicking in the legend
        for line in legend.get_lines():
            line.set_picker(5)

        update_legend = False

    plt.draw()

update_title()

while running:
    if not paused:
        update()
    do_draw()
    plt.pause(INTERVAL)