forked from I2P_Developers/i2p.i2p
- Add support for requesting an encrypted reply * NetDB: - Add support for encrypted DatabaseSearchReplyMessage and DatabaseStoreMessage in response to a DatabaseLookupMessage * PRNG: Cleanups using Collections.singletonMap() * Router utils: New RemovableSingletonSet * TransientSessionKeyManager: - Support variable expiration for inbound tag sets - Several efficiency improvements * VersionComparator: Add static method, use most places
140 lines
5.1 KiB
Java
140 lines
5.1 KiB
Java
package net.i2p.router.web;
|
|
|
|
import java.io.File;
|
|
import java.util.List;
|
|
|
|
import net.i2p.I2PAppContext;
|
|
import net.i2p.util.FileUtil;
|
|
import net.i2p.util.VersionComparator;
|
|
|
|
import org.eclipse.jetty.server.Server;
|
|
import org.tanukisoftware.wrapper.WrapperManager;
|
|
|
|
public class LogsHelper extends HelperBase {
|
|
|
|
private static final String LOCATION_AVAILABLE = "3.3.7";
|
|
|
|
/** @since 0.8.12 */
|
|
public String getJettyVersion() {
|
|
return Server.getVersion();
|
|
}
|
|
|
|
/** @since 0.8.13 */
|
|
public static String jettyVersion() {
|
|
return Server.getVersion();
|
|
}
|
|
|
|
/**
|
|
* Does not call logManager.flush(); call getCriticalLogs() first to flush
|
|
*/
|
|
public String getLogs() {
|
|
String str = formatMessages(_context.logManager().getBuffer().getMostRecentMessages());
|
|
return "<p>" + _("File location") + ": <b><code>" + _context.logManager().currentFile() + "</code></b></p>" + str;
|
|
}
|
|
|
|
/**
|
|
* Side effect - calls logManager.flush()
|
|
*/
|
|
public String getCriticalLogs() {
|
|
_context.logManager().flush();
|
|
return formatMessages(_context.logManager().getBuffer().getMostRecentCriticalMessages());
|
|
}
|
|
|
|
/**
|
|
* Does not necessarily exist.
|
|
* @since 0.9.1
|
|
*/
|
|
static File wrapperLogFile(I2PAppContext ctx) {
|
|
File f = null;
|
|
if (ctx.hasWrapper()) {
|
|
String wv = System.getProperty("wrapper.version");
|
|
if (wv != null && VersionComparator.comp(wv, LOCATION_AVAILABLE) >= 0) {
|
|
try {
|
|
f = WrapperManager.getWrapperLogFile();
|
|
} catch (Throwable t) {}
|
|
}
|
|
}
|
|
if (f == null || !f.exists()) {
|
|
// RouterLaunch puts the location here if no wrapper
|
|
String path = System.getProperty("wrapper.logfile");
|
|
if (path != null) {
|
|
f = new File(path);
|
|
} else {
|
|
// look in new and old places
|
|
f = new File(System.getProperty("java.io.tmpdir"), "wrapper.log");
|
|
if (!f.exists())
|
|
f = new File(ctx.getBaseDir(), "wrapper.log");
|
|
}
|
|
}
|
|
return f;
|
|
}
|
|
|
|
public String getServiceLogs() {
|
|
File f = wrapperLogFile(_context);
|
|
String str = FileUtil.readTextFile(f.getAbsolutePath(), 250, false);
|
|
if (str == null)
|
|
return "<p>" + _("File not found") + ": <b><code>" + f.getAbsolutePath() + "</code></b></p>";
|
|
else {
|
|
str = str.replace("&", "&").replace("<", "<").replace(">", ">");
|
|
return "<p>" + _("File location") + ": <b><code>" + f.getAbsolutePath() + "</code></b></p><pre>" + str + "</pre>";
|
|
}
|
|
}
|
|
|
|
/***** unused
|
|
public String getConnectionLogs() {
|
|
return formatMessages(_context.commSystem().getMostRecentErrorMessages());
|
|
}
|
|
******/
|
|
|
|
private final static String NL = System.getProperty("line.separator");
|
|
|
|
/** formats in reverse order */
|
|
private String formatMessages(List<String> msgs) {
|
|
if (msgs.isEmpty())
|
|
return "<p><i>" + _("No log messages") + "</i></p>";
|
|
boolean colorize = _context.getBooleanPropertyDefaultTrue("routerconsole.logs.color");
|
|
StringBuilder buf = new StringBuilder(16*1024);
|
|
buf.append("<ul>");
|
|
for (int i = msgs.size() - 1; i >= 0; i--) {
|
|
String msg = msgs.get(i);
|
|
// don't display the dup message if it is last
|
|
if (i == 0 && msg.contains("↓"))
|
|
break;
|
|
msg = msg.replace("&", "&").replace("<", "<").replace(">", ">");
|
|
msg = msg.replace("&darr;", "↓"); // hack - undo the damage (LogWriter)
|
|
// remove last \n that LogRecordFormatter added
|
|
if (msg.endsWith(NL))
|
|
msg = msg.substring(0, msg.length() - NL.length());
|
|
// replace \n so that exception stack traces will format correctly and will paste nicely into pastebin
|
|
msg = msg.replace("\n", "<br> \n");
|
|
buf.append("<li>");
|
|
if (colorize) {
|
|
// TODO this would be a lot easier if LogConsoleBuffer stored LogRecords instead of formatted strings
|
|
String color;
|
|
// Homeland Security Advisory System
|
|
// http://www.dhs.gov/xinfoshare/programs/Copy_of_press_release_0046.shtm
|
|
// but pink instead of yellow for WARN
|
|
if (msg.contains(_("CRIT")))
|
|
color = "#cc0000";
|
|
else if (msg.contains(_("ERROR")))
|
|
color = "#ff3300";
|
|
else if (msg.contains(_("WARN")))
|
|
color = "#ff00cc";
|
|
else if (msg.contains(_("INFO")))
|
|
color = "#000099";
|
|
else
|
|
color = "#006600";
|
|
buf.append("<font color=\"").append(color).append("\">");
|
|
buf.append(msg);
|
|
buf.append("</font>");
|
|
} else {
|
|
buf.append(msg);
|
|
}
|
|
buf.append("</li>\n");
|
|
}
|
|
buf.append("</ul>\n");
|
|
|
|
return buf.toString();
|
|
}
|
|
}
|