summaryrefslogtreecommitdiff
path: root/tests/sdcard/plot_sdcard.py
blob: 10ee00ba6932c7bb0652e918de9dcb84703f3685 (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
#!/usr/bin/python2.5
#
# Copyright 2009 Google Inc. All Rights Reserved.

"""plot_sdcard: A module to plot the results of an sdcard perf test.

Requires Gnuplot python v 1.8

Typical usage:

python
>>> import plot_sdcard as p
>>> (metadata, data) = p.parse('/tmp/data.txt')
>>> p.plotIterations(metadata, data)
>>> p.plotTimes(metadata, data)

"""

#TODO: provide a main so we can pipe the result from the run
#TODO: more comments...

import Gnuplot
from numpy import *
import sys
import re
from itertools import izip

class DataSet(object):
  def __init__(self, line):
    res = re.search('# StopWatch ([\w]+) total/cumulative duration ([0-9.]+)\. Samples: ([0-9]+)', line)
    self.time = []
    self.data = []
    self.name = res.group(1)
    self.duration = float(res.group(2))
    self.iteration = int(res.group(3))
    print "Name: %s Duration: %f Iterations: %d" % (self.name, self.duration, self.iteration)
    self.summary = re.match('([a-z_]+)_total', self.name)

  def __repr__(self):
    return str(zip(self.time, self.data))

  def add(self, time, value):
    self.time.append(time)
    self.data.append(value)

  def rescaleTo(self, length):
    factor = len(self.data) / length

    if factor > 1:
      new_time = []
      new_data = []
      accum = 0.0
      idx = 1
      for t,d in izip(self.time, self.data):
        accum += d
        if idx % factor == 0:
          new_time.append(t)
          new_data.append(accum / factor)
          accum = 0
        idx += 1
      self.time = new_time
      self.data = new_data


class Metadata(object):
  def __init__(self):
    self.kernel = ''
    self.command_line = ''
    self.sched = ''
    self.name = ''
    self.fadvise = ''
    self.iterations = 0
    self.duration = 0.0
    self.complete = False

  def parse(self, line):
    if line.startswith('# Kernel:'):
      self.kernel = re.search('Linux version ([0-9.]+-[0-9]+)', line).group(1)
    elif line.startswith('# Command:'):
      self.command_line = re.search('# Command: [/\w_]+ (.*)', line).group(1)
      self.command_line = self.command_line.replace(' --', '-')
      self.command_line = self.command_line.replace(' -d', '')
      self.command_line = self.command_line.replace('--test=', '')
    elif line.startswith('# Iterations'):
      self.iterations = int(re.search('# Iterations: ([0-9]+)', line).group(1))
    elif line.startswith('# Fadvise'):
      self.fadvise = int(re.search('# Fadvise: ([\w]+)', line).group(1))
    elif line.startswith("# Sched"):
      self.sched = re.search('# Sched features: ([\w]+)', line).group(1)
      self.complete = True

  def asTitle(self):
    return "%s-duration:%f\\n-%s\\n%s" % (self.kernel, self.duration, self.command_line, self.sched)

  def updateWith(self, dataset):
    self.duration = max(self.duration, dataset.duration)
    self.name = dataset.name


def plotIterations(metadata, data):
  gp = Gnuplot.Gnuplot(persist = 1)
  gp('set data style lines')
  gp.clear()
  gp.xlabel("iterations")
  gp.ylabel("duration in second")
  gp.title(metadata.asTitle())
  styles = {}
  line_style = 1

  for dataset in data:
    dataset.rescaleTo(metadata.iterations)
    x = arange(len(dataset.data), dtype='int_')
    if not dataset.name in styles:
      styles[dataset.name] = line_style
      line_style += 1
      d = Gnuplot.Data(x, dataset.data,
                       title=dataset.name,
                       with_='lines ls %d' % styles[dataset.name])
    else: # no need to repeat a title that exists already.
      d = Gnuplot.Data(x, dataset.data,
                       with_='lines ls %d' % styles[dataset.name])

    gp.replot(d)
  gp.hardcopy('/tmp/%s-%s-%f.png' % (metadata.name, metadata.kernel, metadata.duration), terminal='png')

def plotTimes(metadata, data):
  gp = Gnuplot.Gnuplot(persist = 1)
  gp('set data style impulses')
  gp('set xtics 1')
  gp.clear()
  gp.xlabel("seconds")
  gp.ylabel("duration in second")
  gp.title(metadata.asTitle())
  styles = {}
  line_style = 1

  for dataset in data:
    #dataset.rescaleTo(metadata.iterations)
    x = array(dataset.time, dtype='float_')
    if not dataset.name in styles:
      styles[dataset.name] = line_style
      line_style += 1
      d = Gnuplot.Data(x, dataset.data,
                       title=dataset.name,
                       with_='impulses ls %d' % styles[dataset.name])
    else: # no need to repeat a title that exists already.
      d = Gnuplot.Data(x, dataset.data,
                       with_='impulses ls %d' % styles[dataset.name])

    gp.replot(d)
  gp.hardcopy('/tmp/%s-%s-%f.png' % (metadata.name, metadata.kernel, metadata.duration), terminal='png')


def parse(filename):
  f = open(filename, 'r')

  metadata = Metadata()
  data = []  # array of dataset
  dataset = None

  for num, line in enumerate(f):
    try:
      line = line.strip()
      if not line: continue

      if not metadata.complete:
        metadata.parse(line)
        continue

      if re.match('[a-z_]', line):
        continue

      if line.startswith('# StopWatch'): # Start of a new dataset
        if dataset:
          if dataset.summary:
            metadata.updateWith(dataset)
          else:
            data.append(dataset)

        dataset = DataSet(line)
        continue

      if line.startswith('#'):
        continue

      # must be data at this stage
      try:
        (time, value) = line.split(None, 1)
      except ValueError:
        print "skipping line %d: %s" % (num, line)
        continue

      if dataset and not dataset.summary:
        dataset.add(float(time), float(value))

    except Exception, e:
      print "Error parsing line %d" % num, sys.exc_info()[0]
      raise
  data.append(dataset)
  return (metadata, data)