/usr/share/pyshared/HTMLgen/barchart.py is in python-htmlgen 2.2.2-12ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 | """Provides BarChart class which creates HTML 1D bar charts,
and StackedBarChart class to deal with multiple data plotting
for web pages. Only works for positive data values.
Also provides a DataList class to support the data handling needed.
"""
__version__ = '$Id: barchart.py,v 2.1 1999/03/17 03:13:39 friedric Exp $'
__author__ = 'Robin Friedrich'
__date__ = 'June 30, 1997'
# barchart.py
# COPYRIGHT (C) 1997 ROBIN FRIEDRICH email:Robin.Friedrich@pdq.net
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appear in all copies and that
# both that copyright notice and this permission notice appear in
# supporting documentation.
# THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
import string
import UserList
from types import IntType, FloatType
from HTMLgen import SimpleDocument, Image, Font, TD, TR, TableLite, Caption, Bold, Pre
from HTMLcolors import *
# set these paths to valid URLs corresponding to where you placed the gifs
barfiles = { 'blue' : '../image/bar-blue.gif',
'red' : '../image/bar-red.gif',
'green' : '../image/bar-green.gif',
'orange' : '../image/bar-orange.gif',
'yellow' : '../image/bar-yellow.gif',
'purple' : '../image/bar-purple.gif' }
class BarChart:
"""Class which takes a DataList object and creates
the HTML to represent a color coded bar chart.
Values to be charted are limited to non-negative values.
"""
title = ''
zero = 0
label_shade = WHITE
value_shade = CADETBLUE
bar_shade = GRAY2
max_width = 400
def __init__(self, datalist=None):
"datalist is an instance of class DataList"
if datalist is None:
self.datalist = DataList()
else:
self.datalist = datalist
self.initialize()
def initialize(self):
"""Initialize the chart properties.
This method is overloaded by child classes.
"""
self.table = TableLite(cellpadding=3, cellspacing=0)
self.barfiles = barfiles
# color keys for low, norm and hi indications
self.barcolors = ('yellow', 'blue', 'red')
# numeric values which determine the boundaries between color ranges
self.thresholds = (0, 1E+09)
#
self.bound_zero = "no"
def normalize(self):
"""Scale data to values between 0 and 400.
Determine peak value and set scale accordingly. If the values
are clustered within 30% of each other, will shift the zero
point for the barchart up to exagerate the value differences.
To inhibit this, set the .bound_zero attribute to "yes".
"""
self.datalist.sum_totals()
self.average = self.datalist.mean('total')
# Compute max and min
low, hi = self.datalist.min('total'), self.datalist.max('total')
# if data is clustered together rescale by shifting zero point
if hi < (1.3 * low) and self.bound_zero != "yes" and self.zero == 0:
self.zero = low * 0.8
s = '%9.2e' % self.zero # hack to round to a natural value
x = string.atoi(s[-3:])
self.zero = round(self.zero, -x)
self.scale = float(hi - self.zero) / self.max_width
def __str__(self):
"""Generate HTML for the entire table and caption.
"""
self.normalize() #calculate the scaling of the data
self.table.prepend(Caption(Bold(self.title))) #add title as caption
for item in self.datalist:
row = TR()
# 1st cell is the text description
row.append(TD(item['label'], align='left', width=70,
bgcolor = self.label_shade))
# 2nd cell is the decimal sum value
row.append(TD("%9.1f"%item['total'], align='right',
width=70, bgcolor=self.value_shade))
# 3rd cell contains the scaled bar graphic
row.append(self.make_bar_cell(item))
self.table.append(row) # add the row to the table
# now tack on a legend at the bottom
self.table.append(TR( TD('AVERAGE', align='left', width=70,
bgcolor = self.label_shade),
TD("%9.1f" % self.average, align='right',
width=70, bgcolor=self.value_shade),
TD(self.gen_legend(),
bgcolor=self.label_shade,
html_escape="OFF")))
return str(self.table)
def make_bar_cell(self, dict):
"""return a TD object containing the scaled bar
"""
cell = TD(bgcolor=self.bar_shade, html_escape="OFF")
cell.append(self.gen_bar(dict['value'],
self.color_code(dict['value'])))
return cell
def color_code(self, value):
"""return a color string based on whether the given datum
falls beyond thresholds. Works off self.thresholds=(low,hi).
"""
low, hi = self.thresholds
if value > hi:
return self.barcolors[2] #'red'
elif value < low:
return self.barcolors[0] #'yellow'
else:
return self.barcolors[1] #'blue'
def pixels(self, magnitude):
"""returns the integer number of pixels to represent a given magnitude.
"""
return int( (magnitude - self.zero) / self.scale )
def gen_bar(self, value, color='blue'):
"""return Image object for the scaled bar graphic
"""
if value <= 0:
return ""
else:
bar = Image(self.barfiles[color],
width=self.pixels(value), height=13, alt=value)
return bar
def gen_legend(self):
"""Return an HTML string which displays the legend for the chart.
"""
sample = Image(self.barfiles['blue'], height=13, width=40)
return '<b>^%7.1f</b> lower bound<br> SCALE: %s = %7.1f units' % \
(self.zero, sample, self.scale * 40)
class StackedBarChart(BarChart):
"""Represent up to six data values in a stacked barchart.
"""
def initialize(self):
"""Define StackedBarChart specific attributes.
"""
self.table = TableLite(cellpadding=3, cellspacing=0)
self.barfiles = barfiles
self.colors = ('blue','red','yellow','purple','orange','green')
self.bound_zero = "yes"
def make_bar_cell(self, dict):
"""return a TD object containing the scaled bar
"""
cell = TD(bgcolor=self.bar_shade, html_escape="OFF")
values = []
for name in self.datalist.segment_names:
values.append(dict[name])
cell.append(self.gen_bar(values, self.colors))
return cell
def gen_bar(self, values, colors):
"""return HTML string for the stacked bar graphic.
"""
bar = ''
if len(values) > len(colors): raise ValueError
for i in range(len(values)):
bar = bar + self.segment(values[i], colors[i])
return bar
def segment(self, value, color='blue'):
"""return HTML string for a bar segment given a magnitude and color.
"""
if value <= 0:
return ""
else:
return str(Image(self.barfiles[color],
width=self.pixels(value),
height=13, alt=value) )
def gen_legend(self):
"""Return an HTML string which displays the legend for the chart.
"""
s = []
for i in range(len(self.datalist.segment_names)):
s.append(str(Image(self.barfiles[self.colors[i]],
height=13, width=30)))
s.append(str(Font(self.datalist.segment_names[i], size= -1)))
s.append(" ")
return string.join(s, ' ')
class DataList(UserList.UserList):
"""Class supporting tabular storage and access of data.
Used by BarChart classes. Takes a list of sequences and loads
them into a list of dictionaries using the first item from the
sequence as a label key. The column names are from the
*segment_names* attribute and *must be set* prior to loading
multidimensional data.
Supports some simple data processing methods.
"""
segment_names = ('value',) # set to tuple of column names
def __init__(self, list = None):
self.data = []
if list is not None:
self.load_tuples(list)
def load_tuple(self, t):
"""Load individual record of data into new dictionary.
Use first item in given sequence as label key and assigns
remaining items with keys from *segment_names* in order.
"""
d = {'label': t[0]}
for i in range(len(self.segment_names)):
if type(t[i+1]) in (IntType, FloatType):
d[self.segment_names[i]] = t[i+1]
else:
d[self.segment_names[i]] = 0
print '%s value %s invalid; was set to zero' % (t[0], t[i+1])
self.append(d)
def load_tuples(self, tt):
"""Load each item from the given sequence of sequences.
"""
for t in tt:
self.load_tuple(t)
def __str__(self):
"""Return tabular string representation of internal data.
"""
s = []
ncols = len(self.segment_names)
heading = '\n Label' + '%11s'*ncols
s.append(heading % self.segment_names)
body = ['%(label)10s']
for name in self.segment_names:
body.append('%(' + '%s)10g' % name)
body = string.join(body)
for datum in self.data:
s.append(body % datum)
s.append('\n')
return string.join(s, '\n')
def add_column(self, name, pairs):
"""Take list of (label,value) pairs and add the data as a
new column named *name*.
"""
self.segment_names = self.segment_names + (name,)
for label, value in pairs:
try:
self.data[self.index(label)][name] = value
except TypeError:
print '%s not found' % label
def index(self, label):
"""return dictionary corresponding to *label* string.
"""
try:
return self._labelcache[label]
except AttributeError:
self.cache_labels()
return self.index(label)
except KeyError:
return None
def cache_labels(self):
"""Create cache of indexes corresponding to the labels
to speed calles to index method.
"""
if not hasattr(self, '_labelcache'):
self._labelcache = {}
for i in range(len(self.data)):
self._labelcache[self.data[i]['label']] = i
def max(self, key='value'):
"""return maximum value in column key
"""
hi = 0
for datum in self.data:
if datum[key] > hi: hi = datum[key]
return hi
def min(self, key='value'):
"""return minimum value in column key
"""
low = self.data[0][key]
for datum in self.data:
if datum[key] < low: low = datum[key]
return low
def sum(self, key='value'):
"""return sum of values in column key
"""
sum = 0
for datum in self.data:
sum = sum + datum[key]
return sum
def mean(self, key='value'):
"""return mean (average) of values in column key
"""
if len(self) > 0:
return self.sum(key) / len(self)
else:
return 0.0
def sum_totals(self):
"""add new key 'total' to each dictionary
"""
for datum in self.data:
sum = 0
for name in self.segment_names:
sum = sum + datum[name]
datum['total'] = sum
def sort(self, key='label', direction='increasing'):
"""Sort list according to key in direction.
Example: DLobject.sort('height', 'decreasing')
"""
self._sortkey = key
if direction[0] == 'i':
self.data.sort(self.increasing)
else:
self.data.sort(self.decreasing)
# index cache is now invalid and will be regenerated
self.cache_labels()
def increasing(self, a, b):
return cmp(a[self._sortkey], b[self._sortkey])
def decreasing(self, a, b):
return cmp(b[self._sortkey], a[self._sortkey])
def simple_test():
from time import time
print "running barchart test routine"
dum = [ ('fddo4', 1318), ('cn1', 1472), ('cn2', 1411),
('fddo3', 1280), ('asc8', 1371), ('orb3', 1390),
('fddo1', 1418), ('asc4', 1292), ('dn2', 1381),
('fddo2', 1341), ('asc1', 1352), ('dn1', 1441)
]
t0 = time()
doc = SimpleDocument(title='Bar Chart', bgcolor=GREY1)
dummydata = DataList()
dummydata.load_tuples(dum)
dummydata.sort()
b = BarChart(dummydata)
b.thresholds = (1300, 1400)
b.title = "System Throughput (jobs/week)"
doc.append(b)
doc.append(Pre(str(dummydata)))
doc.write('./html/bar.html')
print "took", time() - t0, 'sec.'
def stacked_test():
from time import time
print "running stacked barchart test routine"
dum = [ ('fddo4', 1318, 456, 235, 290),
('fddo3', 1280, 560, 129, 295),
('fddo1', 1418, 1201, 490, 125),
('fddo2', 1341, 810, 466, 203)
]
t0 = time()
doc = SimpleDocument(title='Stacked Bar Chart', bgcolor=GREY1)
dummydata = DataList()
dummydata.segment_names = ('User','System','I/O','Wait')
dummydata.load_tuples(dum)
dummydata.sort()
b = StackedBarChart(dummydata)
b.title = "System Load"
doc.append(b)
doc.append(Pre(str(dummydata)))
doc.write('./html/stackedbar.html')
print "took", time() - t0, 'sec.'
def test():
import profile, pstats
#profile.run("simple_test()")
profile.run('stacked_test()', 'barchart.prof')
p = pstats.Stats('barchart.prof')
p.sort_stats('cumulative').print_stats(20)
#p.sort_stats('time').print_stats(20)
#simple_test()
#stacked_test()
if __name__ == '__main__': test()
|