2006-03-19 00:23:23 +00:00
|
|
|
package net.i2p.router.web;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2010-11-21 20:46:48 +00:00
|
|
|
import java.io.Writer;
|
2008-07-16 13:42:54 +00:00
|
|
|
import java.util.Comparator;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.TreeSet;
|
2006-03-19 00:23:23 +00:00
|
|
|
|
|
|
|
import net.i2p.data.DataHelper;
|
2008-07-16 13:42:54 +00:00
|
|
|
import net.i2p.stat.Rate;
|
2006-03-19 00:23:23 +00:00
|
|
|
|
2010-11-21 20:46:48 +00:00
|
|
|
public class GraphHelper extends FormHandler {
|
|
|
|
protected Writer _out;
|
2006-03-19 00:23:23 +00:00
|
|
|
private int _periodCount;
|
|
|
|
private boolean _showEvents;
|
|
|
|
private int _width;
|
|
|
|
private int _height;
|
|
|
|
private int _refreshDelaySeconds;
|
2011-03-18 15:49:58 +00:00
|
|
|
private boolean _persistent;
|
2010-01-18 17:39:12 +00:00
|
|
|
|
|
|
|
private static final String PROP_X = "routerconsole.graphX";
|
|
|
|
private static final String PROP_Y = "routerconsole.graphY";
|
|
|
|
private static final String PROP_REFRESH = "routerconsole.graphRefresh";
|
|
|
|
private static final String PROP_PERIODS = "routerconsole.graphPeriods";
|
|
|
|
private static final String PROP_EVENTS = "routerconsole.graphEvents";
|
2011-03-17 02:07:08 +00:00
|
|
|
public static final int DEFAULT_X = 250;
|
|
|
|
public static final int DEFAULT_Y = 100;
|
2010-01-18 17:39:12 +00:00
|
|
|
private static final int DEFAULT_REFRESH = 60;
|
|
|
|
private static final int DEFAULT_PERIODS = 60;
|
2010-01-24 02:11:55 +00:00
|
|
|
static final int MAX_X = 2048;
|
|
|
|
static final int MAX_Y = 1024;
|
|
|
|
private static final int MIN_REFRESH = 15;
|
2006-03-19 00:23:23 +00:00
|
|
|
|
2010-01-18 17:39:12 +00:00
|
|
|
/** set the defaults after we have a context */
|
|
|
|
@Override
|
|
|
|
public void setContextId(String contextId) {
|
|
|
|
super.setContextId(contextId);
|
|
|
|
_width = _context.getProperty(PROP_X, DEFAULT_X);
|
|
|
|
_height = _context.getProperty(PROP_Y, DEFAULT_Y);
|
|
|
|
_periodCount = _context.getProperty(PROP_PERIODS, DEFAULT_PERIODS);
|
|
|
|
_refreshDelaySeconds = _context.getProperty(PROP_REFRESH, DEFAULT_REFRESH);
|
2011-03-18 15:49:58 +00:00
|
|
|
_showEvents = _context.getBooleanProperty(PROP_EVENTS);
|
2006-03-19 00:23:23 +00:00
|
|
|
}
|
|
|
|
|
2011-03-18 15:49:58 +00:00
|
|
|
/**
|
|
|
|
* This must be output in the jsp since <meta> must be in the <head>
|
|
|
|
* @since 0.8.6
|
|
|
|
*/
|
|
|
|
public String getRefreshMeta() {
|
|
|
|
if (_refreshDelaySeconds <= 8 ||
|
|
|
|
ConfigRestartBean.getRestartTimeRemaining() < (1000 * (_refreshDelaySeconds + 30)))
|
|
|
|
return "";
|
|
|
|
// shorten the refresh by 3 seconds so we beat the iframe
|
|
|
|
return "<meta http-equiv=\"refresh\" content=\"" + (_refreshDelaySeconds - 3) + "\">";
|
|
|
|
}
|
|
|
|
|
2010-11-21 20:46:48 +00:00
|
|
|
/**
|
|
|
|
* This was a HelperBase but now it's a FormHandler
|
|
|
|
* @since 0.8.2
|
|
|
|
*/
|
|
|
|
public void storeWriter(Writer out) { _out = out; }
|
|
|
|
|
2006-03-19 00:23:23 +00:00
|
|
|
public void setPeriodCount(String str) {
|
|
|
|
try { _periodCount = Integer.parseInt(str); } catch (NumberFormatException nfe) {}
|
|
|
|
}
|
2011-03-18 15:49:58 +00:00
|
|
|
|
2006-03-19 00:23:23 +00:00
|
|
|
public void setShowEvents(boolean b) { _showEvents = b; }
|
2011-03-18 15:49:58 +00:00
|
|
|
|
2006-03-19 00:23:23 +00:00
|
|
|
public void setHeight(String str) {
|
2010-01-24 02:11:55 +00:00
|
|
|
try { _height = Math.min(Integer.parseInt(str), MAX_Y); } catch (NumberFormatException nfe) {}
|
2006-03-19 00:23:23 +00:00
|
|
|
}
|
2011-03-18 15:49:58 +00:00
|
|
|
|
2006-03-19 00:23:23 +00:00
|
|
|
public void setWidth(String str) {
|
2010-01-24 02:11:55 +00:00
|
|
|
try { _width = Math.min(Integer.parseInt(str), MAX_X); } catch (NumberFormatException nfe) {}
|
2006-03-19 00:23:23 +00:00
|
|
|
}
|
2011-03-18 15:49:58 +00:00
|
|
|
|
2006-03-19 00:23:23 +00:00
|
|
|
public void setRefreshDelay(String str) {
|
2010-12-12 22:04:06 +00:00
|
|
|
try {
|
|
|
|
int rds = Integer.parseInt(str);
|
|
|
|
if (rds > 0)
|
|
|
|
_refreshDelaySeconds = Math.max(rds, MIN_REFRESH);
|
|
|
|
else
|
|
|
|
_refreshDelaySeconds = -1;
|
|
|
|
} catch (NumberFormatException nfe) {}
|
2006-03-19 00:23:23 +00:00
|
|
|
}
|
2011-03-18 15:49:58 +00:00
|
|
|
|
|
|
|
/** @since 0.8.6 */
|
|
|
|
public void setPersistent(String foo) { _persistent = true; }
|
2006-03-19 00:23:23 +00:00
|
|
|
|
|
|
|
public String getImages() {
|
|
|
|
try {
|
2007-07-16 20:47:57 +00:00
|
|
|
List listeners = StatSummarizer.instance().getListeners();
|
|
|
|
TreeSet ordered = new TreeSet(new AlphaComparator());
|
|
|
|
ordered.addAll(listeners);
|
|
|
|
|
|
|
|
// go to some trouble to see if we have the data for the combined bw graph
|
|
|
|
boolean hasTx = false;
|
|
|
|
boolean hasRx = false;
|
|
|
|
for (Iterator iter = ordered.iterator(); iter.hasNext(); ) {
|
|
|
|
SummaryListener lsnr = (SummaryListener)iter.next();
|
|
|
|
String title = lsnr.getRate().getRateStat().getName();
|
|
|
|
if (title.equals("bw.sendRate")) hasTx = true;
|
|
|
|
else if (title.equals("bw.recvRate")) hasRx = true;
|
|
|
|
}
|
|
|
|
|
2008-06-10 13:17:28 +00:00
|
|
|
if (hasTx && hasRx && !_showEvents) {
|
2009-07-25 23:46:42 +00:00
|
|
|
_out.write("<a href=\"viewstat.jsp?stat=bw.combined"
|
2008-02-13 11:49:24 +00:00
|
|
|
+ "&periodCount=" + (3 * _periodCount )
|
|
|
|
+ "&width=" + (3 * _width)
|
|
|
|
+ "&height=" + (3 * _height)
|
2010-12-12 22:04:06 +00:00
|
|
|
+ "\" target=\"_blank\">");
|
2010-06-02 18:16:43 +00:00
|
|
|
String title = _("Combined bandwidth graph");
|
2011-03-17 02:07:08 +00:00
|
|
|
_out.write("<img class=\"statimage\""
|
|
|
|
+ " src=\"viewstat.jsp?stat=bw.combined"
|
2006-04-10 05:37:28 +00:00
|
|
|
+ "&periodCount=" + _periodCount
|
|
|
|
+ "&width=" + _width
|
2011-03-17 02:07:08 +00:00
|
|
|
+ "&height=" + (_height - 13)
|
2010-06-02 18:16:43 +00:00
|
|
|
+ "\" alt=\"" + title + "\" title=\"" + title + "\"></a>\n");
|
2008-06-10 13:17:28 +00:00
|
|
|
}
|
2006-04-10 05:37:28 +00:00
|
|
|
|
2006-04-19 17:46:51 +00:00
|
|
|
for (Iterator iter = ordered.iterator(); iter.hasNext(); ) {
|
|
|
|
SummaryListener lsnr = (SummaryListener)iter.next();
|
2006-03-19 00:23:23 +00:00
|
|
|
Rate r = lsnr.getRate();
|
2010-06-02 18:16:43 +00:00
|
|
|
// e.g. "statname for 60m"
|
2010-11-06 12:28:38 +00:00
|
|
|
String title = _("{0} for {1}", r.getRateStat().getName(), DataHelper.formatDuration2(_periodCount * r.getPeriod()));
|
2008-02-13 11:49:24 +00:00
|
|
|
_out.write("<a href=\"viewstat.jsp?stat="
|
|
|
|
+ r.getRateStat().getName()
|
|
|
|
+ "&showEvents=" + _showEvents
|
|
|
|
+ "&period=" + r.getPeriod()
|
|
|
|
+ "&periodCount=" + (3 * _periodCount)
|
|
|
|
+ "&width=" + (3 * _width)
|
|
|
|
+ "&height=" + (3 * _height)
|
2009-08-17 20:17:30 +00:00
|
|
|
+ "\" target=\"_blank\">");
|
2011-03-17 02:07:08 +00:00
|
|
|
_out.write("<img class=\"statimage\" border=\"0\""
|
|
|
|
+ " src=\"viewstat.jsp?stat="
|
2007-07-14 18:44:11 +00:00
|
|
|
+ r.getRateStat().getName()
|
2006-03-19 00:23:23 +00:00
|
|
|
+ "&showEvents=" + _showEvents
|
|
|
|
+ "&period=" + r.getPeriod()
|
|
|
|
+ "&periodCount=" + _periodCount
|
|
|
|
+ "&width=" + _width
|
|
|
|
+ "&height=" + _height
|
2009-08-17 20:17:30 +00:00
|
|
|
+ "\" alt=\"" + title
|
|
|
|
+ "\" title=\"" + title + "\"></a>\n");
|
2006-03-19 00:23:23 +00:00
|
|
|
}
|
|
|
|
|
2011-03-18 00:47:14 +00:00
|
|
|
// FIXME jrobin doesn't support setting the timezone, will have to mod TimeAxis.java
|
2011-03-18 15:49:58 +00:00
|
|
|
_out.write("<p><i>" + _("All times are UTC.") + "</i></p>\n");
|
2006-03-19 00:23:23 +00:00
|
|
|
} catch (IOException ioe) {
|
|
|
|
ioe.printStackTrace();
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
2010-01-18 17:39:12 +00:00
|
|
|
|
2010-12-12 22:04:06 +00:00
|
|
|
private static final int[] times = { 60, 2*60, 5*60, 10*60, 30*60, 60*60, -1 };
|
|
|
|
|
2006-03-19 00:23:23 +00:00
|
|
|
public String getForm() {
|
2010-11-21 20:46:48 +00:00
|
|
|
String prev = System.getProperty("net.i2p.router.web.GraphHelper.nonce");
|
|
|
|
if (prev != null) System.setProperty("net.i2p.router.web.GraphHelper.noncePrev", prev);
|
|
|
|
String nonce = "" + _context.random().nextLong();
|
|
|
|
System.setProperty("net.i2p.router.web.GraphHelper.nonce", nonce);
|
2006-03-19 00:23:23 +00:00
|
|
|
try {
|
2010-11-17 22:26:31 +00:00
|
|
|
_out.write("<br><h3>" + _("Configure Graph Display") + " [<a href=\"configstats\">" + _("Select Stats") + "</a>]</h3>");
|
2010-11-21 20:46:48 +00:00
|
|
|
_out.write("<form action=\"graphs\" method=\"POST\">\n" +
|
|
|
|
"<input type=\"hidden\" name=\"action\" value=\"foo\">\n" +
|
|
|
|
"<input type=\"hidden\" name=\"nonce\" value=\"" + nonce + "\" >\n");
|
2011-03-18 15:49:58 +00:00
|
|
|
_out.write(_("Periods") + ": <input size=\"5\" style=\"text-align: right;\" type=\"text\" name=\"periodCount\" value=\"" + _periodCount + "\"><br>\n");
|
2009-10-27 11:11:51 +00:00
|
|
|
_out.write(_("Plot averages") + ": <input type=\"radio\" class=\"optbox\" name=\"showEvents\" value=\"false\" " + (_showEvents ? "" : "checked=\"true\" ") + "> ");
|
|
|
|
_out.write(_("or")+ " " +_("plot events") + ": <input type=\"radio\" class=\"optbox\" name=\"showEvents\" value=\"true\" "+ (_showEvents ? "checked=\"true\" " : "") + "><br>\n");
|
2011-03-18 15:49:58 +00:00
|
|
|
_out.write(_("Image sizes") + ": " + _("width") + ": <input size=\"4\" style=\"text-align: right;\" type=\"text\" name=\"width\" value=\"" + _width
|
|
|
|
+ "\"> " + _("pixels") + ", " + _("height") + ": <input size=\"4\" style=\"text-align: right;\" type=\"text\" name=\"height\" value=\"" + _height
|
2009-10-27 11:11:51 +00:00
|
|
|
+ "\"> " + _("pixels") + "<br>\n");
|
2010-12-12 22:04:06 +00:00
|
|
|
_out.write(_("Refresh delay") + ": <select name=\"refreshDelay\">");
|
|
|
|
for (int i = 0; i < times.length; i++) {
|
|
|
|
_out.write("<option value=\"");
|
|
|
|
_out.write(Integer.toString(times[i]));
|
|
|
|
_out.write("\"");
|
|
|
|
if (times[i] == _refreshDelaySeconds)
|
|
|
|
_out.write(" selected=\"true\"");
|
|
|
|
_out.write(">");
|
|
|
|
if (times[i] > 0)
|
|
|
|
_out.write(DataHelper.formatDuration2(times[i] * 1000));
|
|
|
|
else
|
|
|
|
_out.write(_("Never"));
|
|
|
|
_out.write("</option>\n");
|
|
|
|
}
|
|
|
|
_out.write("</select><br>\n" +
|
2011-03-18 15:49:58 +00:00
|
|
|
_("Store graph data on disk?") +
|
|
|
|
" <input type=\"checkbox\" class=\"optbox\" value=\"true\" name=\"persistent\"");
|
|
|
|
boolean persistent = _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT);
|
|
|
|
if (persistent)
|
|
|
|
_out.write(" checked=\"true\"");
|
|
|
|
_out.write(">" +
|
|
|
|
"<hr><div class=\"formaction\"><input type=\"submit\" value=\"" + _("Save settings and redraw graphs") + "\"></div></form>");
|
2006-03-19 00:23:23 +00:00
|
|
|
} catch (IOException ioe) {
|
|
|
|
ioe.printStackTrace();
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
2006-04-19 17:46:51 +00:00
|
|
|
|
2010-11-21 20:46:48 +00:00
|
|
|
/**
|
|
|
|
* This was a HelperBase but now it's a FormHandler
|
|
|
|
* @since 0.8.2
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
protected void processForm() {
|
|
|
|
saveSettings();
|
|
|
|
}
|
|
|
|
|
2010-01-18 17:39:12 +00:00
|
|
|
/**
|
|
|
|
* Silently save settings if changed, no indication of success or failure
|
|
|
|
* @since 0.7.10
|
|
|
|
*/
|
|
|
|
private void saveSettings() {
|
|
|
|
if (_width != _context.getProperty(PROP_X, DEFAULT_X) ||
|
|
|
|
_height != _context.getProperty(PROP_Y, DEFAULT_Y) ||
|
|
|
|
_periodCount != _context.getProperty(PROP_PERIODS, DEFAULT_PERIODS) ||
|
|
|
|
_refreshDelaySeconds != _context.getProperty(PROP_REFRESH, DEFAULT_REFRESH) ||
|
2011-03-18 15:49:58 +00:00
|
|
|
_showEvents != _context.getBooleanProperty(PROP_EVENTS) ||
|
|
|
|
_persistent != _context.getBooleanPropertyDefaultTrue(SummaryListener.PROP_PERSISTENT)) {
|
2010-01-18 17:39:12 +00:00
|
|
|
_context.router().setConfigSetting(PROP_X, "" + _width);
|
|
|
|
_context.router().setConfigSetting(PROP_Y, "" + _height);
|
|
|
|
_context.router().setConfigSetting(PROP_PERIODS, "" + _periodCount);
|
|
|
|
_context.router().setConfigSetting(PROP_REFRESH, "" + _refreshDelaySeconds);
|
|
|
|
_context.router().setConfigSetting(PROP_EVENTS, "" + _showEvents);
|
2011-03-18 15:49:58 +00:00
|
|
|
_context.router().setConfigSetting(SummaryListener.PROP_PERSISTENT, "" + _persistent);
|
2010-01-18 17:39:12 +00:00
|
|
|
_context.router().saveConfig();
|
2010-11-21 20:46:48 +00:00
|
|
|
addFormNotice(_("Graph settings saved"));
|
2010-01-18 17:39:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-18 15:49:58 +00:00
|
|
|
private static class AlphaComparator implements Comparator<SummaryListener> {
|
|
|
|
public int compare(SummaryListener l, SummaryListener r) {
|
|
|
|
String lName = l.getRate().getRateStat().getName();
|
|
|
|
String rName = r.getRate().getRateStat().getName();
|
|
|
|
int rv = lName.compareTo(rName);
|
|
|
|
if (rv != 0)
|
|
|
|
return rv;
|
|
|
|
return (int) (l.getRate().getPeriod() - r.getRate().getPeriod());
|
|
|
|
}
|
2006-04-19 17:46:51 +00:00
|
|
|
}
|
2007-07-14 18:44:11 +00:00
|
|
|
}
|