3 Copyright (C) 2006-2010 Jonathan Zarate
4 http://www.polarcloud.com/tomato/
6 For use with Tomato Firmware only.
7 No part of this file may be used without permission.
27 ['Green & Blue', '#118811', '#6495ed'], ['Blue & Orange', '#003EBA', '#FF9000'],
28 ['Blue & Red', '#003EDD', '#CC4040'], ['Blue', '#22f', '#225'], ['Gray', '#000', '#999'],
29 ['Red & Black', '#d00', '#000']];
38 return (byt / 125).toFixed(2) + ' <small>kbit/s</small><br>(' + (byt / 1024).toFixed(2) + ' <small>KB/s</small>)';
43 showTab('speed-tab-' + ifname);
46 function showSelectedOption(prefix, prev, now)
50 elem.removeClass(prefix + prev, 'selected'); // safe if prev doesn't exist
51 if ((e = E(prefix + now)) != null) {
52 elem.addClass(e, 'selected');
59 if (drawLast == drawMode) return;
60 showSelectedOption('draw', drawLast, drawMode);
64 function switchDraw(n)
66 if ((!svgReady) || (updating)) return;
70 cookie.set(cprefix + 'draw', drawMode);
75 E('drawcolor').innerHTML = colors[drawColor][0] + ' »';
76 E('rx-name').style.borderBottom = '2px dashed ' + colors[drawColor][1 + colorX];
77 E('tx-name').style.borderBottom = '2px dashed ' + colors[drawColor][1 + (colorX ^ 1)];
80 function switchColor(rev)
82 if ((!svgReady) || (updating)) return;
84 else drawColor = (drawColor + 1) % colors.length;
87 cookie.set(cprefix + 'color', drawColor + ',' + colorX);
92 if (scaleMode == scaleLast) return;
93 showSelectedOption('scale', scaleLast, scaleMode);
94 scaleLast = scaleMode;
97 function switchScale(n)
101 showTab('speed-tab-' + ifname);
102 cookie.set(cprefix + 'scale', scaleMode);
107 if (avgMode == avgLast) return;
108 showSelectedOption('avg', avgLast, avgMode);
112 function switchAvg(n)
114 if ((!svgReady) || (updating)) return;
118 cookie.set(cprefix + 'avg', avgMode);
121 function tabSelect(name)
123 if (!updating) showTab(name);
126 function showTab(name)
134 ifname = name.replace('speed-tab-', '');
135 cookie.set(cprefix + 'tab', ifname, 14);
138 h = speed_history[ifname];
141 E('rx-current').innerHTML = xpsb(h.rx[h.rx.length - 1] / updateDiv);
142 E('rx-avg').innerHTML = xpsb(h.rx_avg);
143 E('rx-max').innerHTML = xpsb(h.rx_max);
145 E('tx-current').innerHTML = xpsb(h.tx[h.tx.length - 1] / updateDiv);
146 E('tx-avg').innerHTML = xpsb(h.tx_avg);
147 E('tx-max').innerHTML = xpsb(h.tx_max);
149 E('rx-total').innerHTML = scaleSize(h.rx_total);
150 E('tx-total').innerHTML = scaleSize(h.tx_total);
153 max = scaleMode ? MAX(h.rx_max, h.tx_max) : xx_max
154 if (max > 12500) max = Math.round((max + 12499) / 12500) * 12500;
156 updateSVG(h.rx, h.tx, max, drawMode,
157 colors[drawColor][1 + colorX], colors[drawColor][1 + (colorX ^ 1)],
158 updateInt, updateMaxL, updateDiv, avgMode, clock);
175 if (!speed_history) {
179 for (var i in speed_history) {
180 var h = speed_history[i];
181 if ((typeof(h.rx) == 'undefined') || (typeof(h.tx) == 'undefined')) {
182 delete speed_history[i];
187 h.rx_total = h.rx_max = 0;
188 h.tx_total = h.tx_max = 0;
189 for (j = (h.rx.length - updateMaxL); j < h.rx.length; ++j) {
191 if (t > h.rx_max) h.rx_max = t;
194 if (t > h.tx_max) h.tx_max = t;
197 h.rx_avg = h.rx_total / updateMaxL;
198 h.tx_avg = h.tx_total / updateMaxL;
202 h.rx_max /= updateDiv;
203 h.tx_max /= updateDiv;
204 h.rx_avg /= updateDiv;
205 h.tx_avg /= updateDiv;
207 if (h.rx_max > xx_max) xx_max = h.rx_max;
208 if (h.tx_max > xx_max) xx_max = h.tx_max;
211 if (i == nvram.wl_ifname) {
212 t = 'WL <small>(' + i + ')</small>';
214 else if ((nvram.wan_proto == 'pptp') || (nvram.wan_proto == 'pppoe') || (nvram.wan_proto == 'l2tp')) {
215 if (i.indexOf('ppp') == 0) t = 'WAN <small>(' + i + ')</small>';
217 else if (nvram.wan_proto != 'disabled') {
218 if (nvram.wan_ifname == i) t = 'WAN <small>(' + i + ')</small>';
220 tabs.push(['speed-tab-' + i, t]);
225 if (a[1] < b[1]) return -1;
226 if (a[1] > b[1]) return 1;
231 if (tabs.length == old.length) {
232 for (i = tabs.length - 1; i >= 0; --i)
233 if (tabs[i][0] != old[i][0]) break;
239 E('tab-area').innerHTML = _tabCreate.apply(this, tabs);
241 if (((name = cookie.get(cprefix + 'tab')) != null) && ((speed_history[name] != undefined))) {
242 showTab('speed-tab-' + name);
245 if (tabs.length) showTab(tabs[0][0]);
253 E('graph').style.visibility = 'visible';
254 E('bwm-controls').style.visibility = 'visible';
259 function initCommon(defAvg, defDrawMode, defDrawColor)
261 drawMode = fixInt(cookie.get(cprefix + 'draw'), 0, 1, defDrawMode);
264 var c = nvram.rstats_colors.split(',');
265 while (c.length >= 3) {
266 c[0] = escapeHTML(c[0]);
267 colors.push(c.splice(0, 3));
270 c = (cookie.get(cprefix + 'color') || '').split(',');
272 drawColor = fixInt(c[0], 0, colors.length - 1, defDrawColor);
273 colorX = fixInt(c[1], 0, 1, 0);
276 drawColor = defDrawColor;
280 scaleMode = fixInt(cookie.get(cprefix + 'scale'), 0, 1, 0);
283 avgMode = fixInt(cookie.get(cprefix + 'avg'), 1, 10, defAvg);
287 if ((nvram.wan_proto == 'disabled') || (nvram.wan_proto == 'wet')) {
288 nvram.wan_ifname = '';
293 E('refresh-spinner').style.visibility = 'hidden';