VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testmanager/webui/wuihlpgraphsimple.py@ 94200

Last change on this file since 94200 was 94129, checked in by vboxsync, 3 years ago

testmanager: pylint 2.9.6 adjustments (mostly about using sub-optimal looping and 'with' statements).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.9 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: wuihlpgraphsimple.py 94129 2022-03-08 14:57:25Z vboxsync $
3
4"""
5Test Manager Web-UI - Graph Helpers - Simple/Stub Implementation.
6"""
7
8__copyright__ = \
9"""
10Copyright (C) 2012-2022 Oracle Corporation
11
12This file is part of VirtualBox Open Source Edition (OSE), as
13available from http://www.virtualbox.org. This file is free software;
14you can redistribute it and/or modify it under the terms of the GNU
15General Public License (GPL) as published by the Free Software
16Foundation, in version 2 as it comes in the "COPYING" file of the
17VirtualBox OSE distribution. VirtualBox OSE is distributed in the
18hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
19
20The contents of this file may alternatively be used under the terms
21of the Common Development and Distribution License Version 1.0
22(CDDL) only, as it comes in the "COPYING.CDDL" file of the
23VirtualBox OSE distribution, in which case the provisions of the
24CDDL are applicable instead of those of the GPL.
25
26You may elect to license modified versions of this file under the
27terms and conditions of either the GPL or the CDDL or both.
28"""
29__version__ = "$Revision: 94129 $"
30
31# Validation Kit imports.
32from common.webutils import escapeAttr, escapeElem;
33from testmanager.webui.wuihlpgraphbase import WuiHlpGraphBase;
34
35
36
37class WuiHlpBarGraph(WuiHlpGraphBase):
38 """
39 Bar graph.
40 """
41
42 def __init__(self, sId, oData, oDisp = None):
43 WuiHlpGraphBase.__init__(self, sId, oData, oDisp);
44 self.cxMaxBar = 480;
45 self.fpMax = None;
46 self.fpMin = 0.0;
47
48 def setRangeMax(self, fpMax):
49 """ Sets the max range."""
50 self.fpMax = float(fpMax);
51 return None;
52
53 def invertYDirection(self):
54 """ Not supported. """
55 return None;
56
57 def renderGraph(self):
58 aoTable = self._oData.aoTable;
59 sReport = '<div class="tmbargraph">\n';
60
61 # Figure the range.
62 fpMin = self.fpMin;
63 fpMax = self.fpMax;
64 if self.fpMax is None:
65 fpMax = float(aoTable[1].aoValues[0]);
66 for i in range(1, len(aoTable)):
67 for oValue in aoTable[i].aoValues:
68 fpValue = float(oValue);
69 if fpValue < fpMin:
70 fpMin = fpValue;
71 if fpValue > fpMax:
72 fpMax = fpValue;
73 assert fpMin >= 0;
74
75 # Format the data.
76 sReport += '<table class="tmbargraphl1" border="1" id="%s">\n' % (escapeAttr(self._sId),);
77 for i in range(1, len(aoTable)):
78 oRow = aoTable[i];
79 sReport += ' <tr>\n' \
80 ' <td>%s</td>\n' \
81 ' <td height="100%%" width="%spx">\n' \
82 ' <table class="tmbargraphl2" height="100%%" width="100%%" ' \
83 'border="0" cellspacing="0" cellpadding="0">\n' \
84 % (escapeElem(oRow.sName), escapeAttr(str(self.cxMaxBar + 2)));
85 for j, oValue in enumerate(oRow.aoValues):
86 cPct = int(float(oValue) * 100 / fpMax);
87 cxBar = int(float(oValue) * self.cxMaxBar / fpMax);
88 sValue = escapeElem(oRow.asValues[j]);
89 sColor = self.kasColors[j % len(self.kasColors)];
90 sInvColor = 'white';
91 if sColor[0] == '#' and len(sColor) == 7:
92 sInvColor = '#%06x' % (~int(sColor[1:],16) & 0xffffff,);
93
94 sReport += ' <tr><td>\n' \
95 ' <table class="tmbargraphl3" height="100%%" border="0" cellspacing="0" cellpadding="0">\n' \
96 ' <tr>\n';
97 if cPct >= 99:
98 sReport += ' <td width="%spx" nowrap bgcolor="%s" align="right" style="color:%s;">' \
99 '%s&nbsp;</td>\n' \
100 % (cxBar, sColor, sInvColor, sValue);
101 elif cPct < 1:
102 sReport += ' <td width="%spx" nowrap style="color:%s;">%s</td>\n' \
103 % (self.cxMaxBar - cxBar, sColor, sValue);
104 elif cPct >= 50:
105 sReport += ' <td width="%spx" nowrap bgcolor="%s" align="right" style="color:%s;">' \
106 '%s&nbsp;</td>\n' \
107 ' <td width="%spx" nowrap><div>&nbsp;</div></td>\n' \
108 % (cxBar, sColor, sInvColor, sValue, self.cxMaxBar - cxBar);
109 else:
110 sReport += ' <td width="%spx" nowrap bgcolor="%s"></td>\n' \
111 ' <td width="%spx" nowrap>&nbsp;%s</td>\n' \
112 % (cxBar, sColor, self.cxMaxBar - cxBar, sValue);
113 sReport += ' </tr>\n' \
114 ' </table>\n' \
115 ' </td></tr>\n'
116 sReport += ' </table>\n' \
117 ' </td>\n' \
118 ' </tr>\n';
119 if i + 1 < len(aoTable) and len(oRow.aoValues) > 1:
120 sReport += ' <tr></tr>\n'
121
122 sReport += '</table>\n';
123
124 sReport += '<div class="tmgraphlegend">\n' \
125 ' <p>Legend:\n';
126 for j, sValue in enumerate(aoTable[0].asValues):
127 sColor = self.kasColors[j % len(self.kasColors)];
128 sReport += ' <font color="%s">&#x25A0; %s</font>\n' % (sColor, escapeElem(sValue),);
129 sReport += ' </p>\n' \
130 '</div>\n';
131
132 sReport += '</div>\n';
133 return sReport;
134
135
136
137
138class WuiHlpLineGraph(WuiHlpGraphBase):
139 """
140 Line graph.
141 """
142
143 def __init__(self, sId, oData, oDisp):
144 WuiHlpGraphBase.__init__(self, sId, oData, oDisp);
145
146
147class WuiHlpLineGraphErrorbarY(WuiHlpLineGraph):
148 """
149 Line graph with an errorbar for the Y axis.
150 """
151
152 pass; # pylint: disable=unnecessary-pass
153
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette