2007-10-10 02:09:28 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2007-10-10 17:12:20 -07:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2007-10-10 02:09:28 -07:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is log4moz
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Michael Johnston
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2006
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Michael Johnston <special.michael@gmail.com>
|
|
|
|
* Dan Mills <thunder@mozilla.com>
|
|
|
|
*
|
2007-10-10 17:12:20 -07:00
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
2007-10-10 02:09:28 -07:00
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2007-12-14 18:07:25 -08:00
|
|
|
const EXPORTED_SYMBOLS = ['Log4Moz'];
|
|
|
|
|
2007-10-10 02:09:28 -07:00
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
|
2007-12-14 18:07:25 -08:00
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
2008-01-24 17:41:36 -08:00
|
|
|
|
|
|
|
const MODE_RDONLY = 0x01;
|
|
|
|
const MODE_WRONLY = 0x02;
|
|
|
|
const MODE_CREATE = 0x08;
|
|
|
|
const MODE_APPEND = 0x10;
|
|
|
|
const MODE_TRUNCATE = 0x20;
|
|
|
|
|
|
|
|
const PERMS_FILE = 0644;
|
|
|
|
const PERMS_DIRECTORY = 0755;
|
|
|
|
|
|
|
|
const ONE_BYTE = 1;
|
|
|
|
const ONE_KILOBYTE = 1024 * ONE_BYTE;
|
|
|
|
const ONE_MEGABYTE = 1024 * ONE_KILOBYTE;
|
2007-12-14 18:07:25 -08:00
|
|
|
|
2008-03-25 13:55:34 -07:00
|
|
|
let Log4Moz = {
|
|
|
|
Level: {
|
|
|
|
Fatal: 70,
|
|
|
|
Error: 60,
|
|
|
|
Warn: 50,
|
|
|
|
Info: 40,
|
|
|
|
Config: 30,
|
|
|
|
Debug: 20,
|
|
|
|
Trace: 10,
|
|
|
|
All: 0,
|
|
|
|
Desc: {
|
|
|
|
70: "FATAL",
|
|
|
|
60: "ERROR",
|
|
|
|
50: "WARN",
|
|
|
|
40: "INFO",
|
|
|
|
30: "CONFIG",
|
|
|
|
20: "DEBUG",
|
|
|
|
10: "TRACE",
|
|
|
|
0: "ALL"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2008-11-03 14:48:53 -08:00
|
|
|
get repository() {
|
|
|
|
delete Log4Moz.repository;
|
|
|
|
Log4Moz.repository = new LoggerRepository();
|
|
|
|
return Log4Moz.repository;
|
2008-05-29 17:56:52 -07:00
|
|
|
},
|
2008-11-03 14:48:53 -08:00
|
|
|
set repository(value) {
|
|
|
|
delete Log4Moz.repository;
|
|
|
|
Log4Moz.repository = value;
|
|
|
|
},
|
|
|
|
|
|
|
|
get LogMessage() { return LogMessage; },
|
|
|
|
get Logger() { return Logger; },
|
|
|
|
get LoggerRepository() { return LoggerRepository; },
|
2008-05-29 17:56:52 -07:00
|
|
|
|
|
|
|
get Formatter() { return Formatter; },
|
2008-05-29 18:15:50 -07:00
|
|
|
get BasicFormatter() { return BasicFormatter; },
|
2008-11-03 14:48:53 -08:00
|
|
|
|
2008-05-29 18:15:50 -07:00
|
|
|
get Appender() { return Appender; },
|
|
|
|
get DumpAppender() { return DumpAppender; },
|
|
|
|
get ConsoleAppender() { return ConsoleAppender; },
|
|
|
|
get FileAppender() { return FileAppender; },
|
2008-08-19 17:28:02 -07:00
|
|
|
get RotatingFileAppender() { return RotatingFileAppender; },
|
|
|
|
|
|
|
|
// Logging helper:
|
2008-11-03 14:48:53 -08:00
|
|
|
// let logger = Log4Moz.repository.getLogger("foo");
|
2008-08-19 17:28:02 -07:00
|
|
|
// logger.info(Log4Moz.enumerateInterfaces(someObject).join(","));
|
2008-11-03 14:48:53 -08:00
|
|
|
enumerateInterfaces: function Log4Moz_enumerateInterfaces(aObject) {
|
2008-08-19 17:28:02 -07:00
|
|
|
let interfaces = [];
|
|
|
|
|
|
|
|
for (i in Ci) {
|
|
|
|
try {
|
|
|
|
aObject.QueryInterface(Ci[i]);
|
|
|
|
interfaces.push(i);
|
|
|
|
}
|
|
|
|
catch(ex) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
return interfaces;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Logging helper:
|
2008-11-03 14:48:53 -08:00
|
|
|
// let logger = Log4Moz.repository.getLogger("foo");
|
2008-08-19 17:28:02 -07:00
|
|
|
// logger.info(Log4Moz.enumerateProperties(someObject).join(","));
|
2008-11-03 14:48:53 -08:00
|
|
|
enumerateProperties: function Log4Moz_enumerateProps(aObject,
|
|
|
|
aExcludeComplexTypes) {
|
2008-08-19 17:28:02 -07:00
|
|
|
let properties = [];
|
|
|
|
|
|
|
|
for (p in aObject) {
|
|
|
|
try {
|
|
|
|
if (aExcludeComplexTypes &&
|
|
|
|
(typeof aObject[p] == "object" || typeof aObject[p] == "function"))
|
|
|
|
continue;
|
|
|
|
properties.push(p + " = " + aObject[p]);
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
properties.push(p + " = " + ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return properties;
|
|
|
|
}
|
2007-10-10 02:09:28 -07:00
|
|
|
};
|
|
|
|
|
2008-03-25 13:55:34 -07:00
|
|
|
|
2007-10-10 02:09:28 -07:00
|
|
|
/*
|
2007-12-10 19:47:11 -08:00
|
|
|
* LogMessage
|
|
|
|
* Encapsulates a single log event's data
|
2007-10-10 02:09:28 -07:00
|
|
|
*/
|
2007-12-10 19:47:11 -08:00
|
|
|
function LogMessage(loggerName, level, message){
|
|
|
|
this.loggerName = loggerName;
|
|
|
|
this.message = message;
|
|
|
|
this.level = level;
|
|
|
|
this.time = Date.now();
|
|
|
|
}
|
|
|
|
LogMessage.prototype = {
|
2007-12-14 18:07:25 -08:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsISupports]),
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
get levelDesc() {
|
2007-12-14 18:07:25 -08:00
|
|
|
if (this.level in Log4Moz.Level.Desc)
|
|
|
|
return Log4Moz.Level.Desc[this.level];
|
2007-12-10 19:47:11 -08:00
|
|
|
return "UNKNOWN";
|
|
|
|
},
|
|
|
|
|
|
|
|
toString: function LogMsg_toString(){
|
2008-07-11 14:47:15 -07:00
|
|
|
return "LogMessage [" + this.time + " " + this.level + " " +
|
2007-12-10 19:47:11 -08:00
|
|
|
this.message + "]";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Logger
|
|
|
|
* Hierarchical version. Logs to all appenders, assigned or inherited
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Logger(name, repository) {
|
2010-02-11 15:25:31 -08:00
|
|
|
if (!repository)
|
|
|
|
repository = Log4Moz.repository;
|
|
|
|
this._name = name;
|
|
|
|
this._appenders = [];
|
|
|
|
this._repository = repository;
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
2007-12-10 19:47:11 -08:00
|
|
|
Logger.prototype = {
|
2007-12-14 18:07:25 -08:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsISupports]),
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
parent: null,
|
|
|
|
|
2008-11-03 14:48:53 -08:00
|
|
|
get name() {
|
|
|
|
return this._name;
|
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
_level: null,
|
|
|
|
get level() {
|
|
|
|
if (this._level != null)
|
|
|
|
return this._level;
|
|
|
|
if (this.parent)
|
|
|
|
return this.parent.level;
|
|
|
|
dump("log4moz warning: root logger configuration error: no level defined\n");
|
2007-12-14 18:07:25 -08:00
|
|
|
return Log4Moz.Level.All;
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
set level(level) {
|
|
|
|
this._level = level;
|
2007-10-10 02:09:28 -07:00
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
_appenders: null,
|
|
|
|
get appenders() {
|
|
|
|
if (!this.parent)
|
|
|
|
return this._appenders;
|
|
|
|
return this._appenders.concat(this.parent.appenders);
|
2007-10-10 02:09:28 -07:00
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
addAppender: function Logger_addAppender(appender) {
|
|
|
|
for (let i = 0; i < this._appenders.length; i++) {
|
|
|
|
if (this._appenders[i] == appender)
|
|
|
|
return;
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
2007-12-10 19:47:11 -08:00
|
|
|
this._appenders.push(appender);
|
2007-10-10 02:09:28 -07:00
|
|
|
},
|
|
|
|
|
2009-02-20 01:54:45 -08:00
|
|
|
removeAppender: function Logger_removeAppender(appender) {
|
|
|
|
let newAppenders = [];
|
|
|
|
for (let i = 0; i < this._appenders.length; i++) {
|
|
|
|
if (this._appenders[i] != appender)
|
|
|
|
newAppenders.push(this._appenders[i]);
|
|
|
|
}
|
|
|
|
this._appenders = newAppenders;
|
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
log: function Logger_log(message) {
|
|
|
|
if (this.level > message.level)
|
2007-10-10 02:09:28 -07:00
|
|
|
return;
|
2007-12-10 19:47:11 -08:00
|
|
|
let appenders = this.appenders;
|
|
|
|
for (let i = 0; i < appenders.length; i++){
|
|
|
|
appenders[i].append(message);
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
fatal: function Logger_fatal(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Fatal, string));
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
error: function Logger_error(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Error, string));
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
warn: function Logger_warn(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Warn, string));
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
info: function Logger_info(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Info, string));
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
config: function Logger_config(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Config, string));
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
debug: function Logger_debug(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Debug, string));
|
2007-12-10 19:47:11 -08:00
|
|
|
},
|
|
|
|
trace: function Logger_trace(string) {
|
2007-12-14 18:07:25 -08:00
|
|
|
this.log(new LogMessage(this._name, Log4Moz.Level.Trace, string));
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LoggerRepository
|
|
|
|
* Implements a hierarchy of Loggers
|
|
|
|
*/
|
|
|
|
|
|
|
|
function LoggerRepository() {}
|
|
|
|
LoggerRepository.prototype = {
|
2007-12-14 18:07:25 -08:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsISupports]),
|
2007-10-10 02:09:28 -07:00
|
|
|
|
|
|
|
_loggers: {},
|
|
|
|
|
|
|
|
_rootLogger: null,
|
|
|
|
get rootLogger() {
|
|
|
|
if (!this._rootLogger) {
|
|
|
|
this._rootLogger = new Logger("root", this);
|
2007-12-14 18:07:25 -08:00
|
|
|
this._rootLogger.level = Log4Moz.Level.All;
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
|
|
|
return this._rootLogger;
|
|
|
|
},
|
|
|
|
// FIXME: need to update all parent values if we do this
|
|
|
|
//set rootLogger(logger) {
|
|
|
|
// this._rootLogger = logger;
|
|
|
|
//},
|
|
|
|
|
|
|
|
_updateParents: function LogRep__updateParents(name) {
|
|
|
|
let pieces = name.split('.');
|
|
|
|
let cur, parent;
|
|
|
|
|
|
|
|
// find the closest parent
|
2008-12-02 08:12:20 -08:00
|
|
|
// don't test for the logger name itself, as there's a chance it's already
|
|
|
|
// there in this._loggers
|
|
|
|
for (let i = 0; i < pieces.length - 1; i++) {
|
2007-10-10 02:09:28 -07:00
|
|
|
if (cur)
|
|
|
|
cur += '.' + pieces[i];
|
|
|
|
else
|
|
|
|
cur = pieces[i];
|
|
|
|
if (cur in this._loggers)
|
|
|
|
parent = cur;
|
|
|
|
}
|
|
|
|
|
2008-12-02 08:12:20 -08:00
|
|
|
// if we didn't assign a parent above, there is no parent
|
|
|
|
if (!parent)
|
2007-10-10 02:09:28 -07:00
|
|
|
this._loggers[name].parent = this.rootLogger;
|
|
|
|
else
|
|
|
|
this._loggers[name].parent = this._loggers[parent];
|
|
|
|
|
|
|
|
// trigger updates for any possible descendants of this logger
|
|
|
|
for (let logger in this._loggers) {
|
2008-12-02 08:12:20 -08:00
|
|
|
if (logger != name && logger.indexOf(name) == 0)
|
2007-10-10 02:09:28 -07:00
|
|
|
this._updateParents(logger);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getLogger: function LogRep_getLogger(name) {
|
2008-11-03 14:48:53 -08:00
|
|
|
if (!name)
|
|
|
|
name = this.getLogger.caller.name;
|
|
|
|
if (name in this._loggers)
|
|
|
|
return this._loggers[name];
|
|
|
|
this._loggers[name] = new Logger(name, this);
|
|
|
|
this._updateParents(name);
|
2007-10-10 02:09:28 -07:00
|
|
|
return this._loggers[name];
|
|
|
|
}
|
2007-12-10 19:47:11 -08:00
|
|
|
};
|
2007-10-10 02:09:28 -07:00
|
|
|
|
|
|
|
/*
|
2007-12-10 19:47:11 -08:00
|
|
|
* Formatters
|
|
|
|
* These massage a LogMessage into whatever output is desired
|
|
|
|
* Only the BasicFormatter is currently implemented
|
2007-10-10 02:09:28 -07:00
|
|
|
*/
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
// Abstract formatter
|
|
|
|
function Formatter() {}
|
|
|
|
Formatter.prototype = {
|
2007-12-14 18:07:25 -08:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsISupports]),
|
2007-12-10 19:47:11 -08:00
|
|
|
format: function Formatter_format(message) {}
|
|
|
|
};
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
// FIXME: should allow for formatting the whole string, not just the date
|
|
|
|
function BasicFormatter(dateFormat) {
|
|
|
|
if (dateFormat)
|
|
|
|
this.dateFormat = dateFormat;
|
|
|
|
}
|
|
|
|
BasicFormatter.prototype = {
|
2008-11-03 14:48:53 -08:00
|
|
|
__proto__: Formatter.prototype,
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
_dateFormat: null,
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
get dateFormat() {
|
|
|
|
if (!this._dateFormat)
|
|
|
|
this._dateFormat = "%Y-%m-%d %H:%M:%S";
|
|
|
|
return this._dateFormat;
|
2007-10-10 02:09:28 -07:00
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
set dateFormat(format) {
|
|
|
|
this._dateFormat = format;
|
2007-10-10 02:09:28 -07:00
|
|
|
},
|
|
|
|
|
2007-12-10 19:47:11 -08:00
|
|
|
format: function BF_format(message) {
|
2009-02-28 11:11:36 -08:00
|
|
|
// Pad a string to a certain length (20) with a character (space)
|
|
|
|
let pad = function BF__pad(str, len, chr) str +
|
|
|
|
new Array(Math.max((len || 20) - str.length + 1, 0)).join(chr || " ");
|
|
|
|
|
2009-09-11 17:14:45 -07:00
|
|
|
// Generate a date string because toLocaleString doesn't work XXX 514803
|
|
|
|
let z = function(n) n < 10 ? "0" + n : n;
|
|
|
|
let d = new Date(message.time);
|
|
|
|
let dateStr = [d.getFullYear(), "-", z(d.getMonth() + 1), "-",
|
|
|
|
z(d.getDate()), " ", z(d.getHours()), ":", z(d.getMinutes()), ":",
|
|
|
|
z(d.getSeconds())].join("");
|
|
|
|
|
|
|
|
return dateStr + "\t" + pad(message.loggerName) + " " + message.levelDesc +
|
|
|
|
"\t" + message.message + "\n";
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Appenders
|
|
|
|
* These can be attached to Loggers to log to different places
|
|
|
|
* Simply subclass and override doAppend to implement a new one
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Appender(formatter) {
|
|
|
|
this._name = "Appender";
|
|
|
|
this._formatter = formatter? formatter : new BasicFormatter();
|
|
|
|
}
|
|
|
|
Appender.prototype = {
|
2007-12-14 18:07:25 -08:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsISupports]),
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-12-14 18:07:25 -08:00
|
|
|
_level: Log4Moz.Level.All,
|
2007-10-10 02:09:28 -07:00
|
|
|
get level() { return this._level; },
|
|
|
|
set level(level) { this._level = level; },
|
|
|
|
|
|
|
|
append: function App_append(message) {
|
|
|
|
if(this._level <= message.level)
|
|
|
|
this.doAppend(this._formatter.format(message));
|
|
|
|
},
|
|
|
|
toString: function App_toString() {
|
|
|
|
return this._name + " [level=" + this._level +
|
|
|
|
", formatter=" + this._formatter + "]";
|
|
|
|
},
|
|
|
|
doAppend: function App_doAppend(message) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DumpAppender
|
|
|
|
* Logs to standard out
|
|
|
|
*/
|
|
|
|
|
|
|
|
function DumpAppender(formatter) {
|
|
|
|
this._name = "DumpAppender";
|
2008-11-03 14:48:53 -08:00
|
|
|
this._formatter = formatter? formatter : new BasicFormatter();
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
2007-10-10 17:08:58 -07:00
|
|
|
DumpAppender.prototype = {
|
2008-11-03 14:48:53 -08:00
|
|
|
__proto__: Appender.prototype,
|
|
|
|
|
2007-10-10 17:08:58 -07:00
|
|
|
doAppend: function DApp_doAppend(message) {
|
|
|
|
dump(message);
|
|
|
|
}
|
2007-10-10 02:09:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ConsoleAppender
|
|
|
|
* Logs to the javascript console
|
|
|
|
*/
|
|
|
|
|
|
|
|
function ConsoleAppender(formatter) {
|
|
|
|
this._name = "ConsoleAppender";
|
|
|
|
this._formatter = formatter;
|
|
|
|
}
|
2007-10-10 17:08:58 -07:00
|
|
|
ConsoleAppender.prototype = {
|
2008-11-03 14:48:53 -08:00
|
|
|
__proto__: Appender.prototype,
|
|
|
|
|
2007-10-10 17:08:58 -07:00
|
|
|
doAppend: function CApp_doAppend(message) {
|
2007-12-14 18:07:25 -08:00
|
|
|
if (message.level > Log4Moz.Level.Warn) {
|
2007-10-10 17:08:58 -07:00
|
|
|
Cu.reportError(message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Cc["@mozilla.org/consoleservice;1"].
|
|
|
|
getService(Ci.nsIConsoleService).logStringMessage(message);
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FileAppender
|
|
|
|
* Logs to a file
|
|
|
|
*/
|
|
|
|
|
|
|
|
function FileAppender(file, formatter) {
|
|
|
|
this._name = "FileAppender";
|
|
|
|
this._file = file; // nsIFile
|
2008-11-03 14:48:53 -08:00
|
|
|
this._formatter = formatter? formatter : new BasicFormatter();
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
2007-10-10 17:08:58 -07:00
|
|
|
FileAppender.prototype = {
|
2008-11-03 14:48:53 -08:00
|
|
|
__proto__: Appender.prototype,
|
2007-10-10 17:08:58 -07:00
|
|
|
__fos: null,
|
|
|
|
get _fos() {
|
|
|
|
if (!this.__fos)
|
|
|
|
this.openStream();
|
|
|
|
return this.__fos;
|
|
|
|
},
|
|
|
|
|
|
|
|
openStream: function FApp_openStream() {
|
2009-05-26 11:51:29 -07:00
|
|
|
try {
|
|
|
|
let __fos = Cc["@mozilla.org/network/file-output-stream;1"].
|
|
|
|
createInstance(Ci.nsIFileOutputStream);
|
|
|
|
let flags = MODE_WRONLY | MODE_CREATE | MODE_APPEND;
|
|
|
|
__fos.init(this._file, flags, PERMS_FILE, 0);
|
|
|
|
|
|
|
|
this.__fos = Cc["@mozilla.org/intl/converter-output-stream;1"]
|
|
|
|
.createInstance(Ci.nsIConverterOutputStream);
|
|
|
|
this.__fos.init(__fos, "UTF-8", 4096,
|
|
|
|
Ci.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER);
|
|
|
|
} catch(e) {
|
|
|
|
dump("Error opening stream:\n" + e);
|
|
|
|
}
|
2007-10-10 17:08:58 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
closeStream: function FApp_closeStream() {
|
|
|
|
if (!this.__fos)
|
|
|
|
return;
|
|
|
|
try {
|
|
|
|
this.__fos.close();
|
|
|
|
this.__fos = null;
|
|
|
|
} catch(e) {
|
|
|
|
dump("Failed to close file output stream\n" + e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
doAppend: function FApp_doAppend(message) {
|
|
|
|
if (message === null || message.length <= 0)
|
|
|
|
return;
|
|
|
|
try {
|
2009-05-26 11:51:29 -07:00
|
|
|
this._fos.writeString(message);
|
2007-10-10 17:08:58 -07:00
|
|
|
} catch(e) {
|
|
|
|
dump("Error writing file:\n" + e);
|
|
|
|
}
|
2008-03-28 19:36:11 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
clear: function FApp_clear() {
|
|
|
|
this.closeStream();
|
2009-02-23 16:55:41 -08:00
|
|
|
try {
|
|
|
|
this._file.remove(false);
|
|
|
|
} catch (e) {
|
|
|
|
// XXX do something?
|
|
|
|
}
|
2007-10-10 02:09:28 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RotatingFileAppender
|
|
|
|
* Similar to FileAppender, but rotates logs when they become too large
|
|
|
|
*/
|
|
|
|
|
|
|
|
function RotatingFileAppender(file, formatter, maxSize, maxBackups) {
|
2008-05-29 18:15:50 -07:00
|
|
|
if (maxSize === undefined)
|
|
|
|
maxSize = ONE_MEGABYTE * 2;
|
|
|
|
|
|
|
|
if (maxBackups === undefined)
|
|
|
|
maxBackups = 0;
|
|
|
|
|
2007-10-10 02:09:28 -07:00
|
|
|
this._name = "RotatingFileAppender";
|
|
|
|
this._file = file; // nsIFile
|
2008-11-03 14:48:53 -08:00
|
|
|
this._formatter = formatter? formatter : new BasicFormatter();
|
2007-10-10 02:09:28 -07:00
|
|
|
this._maxSize = maxSize;
|
|
|
|
this._maxBackups = maxBackups;
|
|
|
|
}
|
2007-10-10 17:08:58 -07:00
|
|
|
RotatingFileAppender.prototype = {
|
2008-11-03 14:48:53 -08:00
|
|
|
__proto__: FileAppender.prototype,
|
|
|
|
|
2007-10-10 17:08:58 -07:00
|
|
|
doAppend: function RFApp_doAppend(message) {
|
|
|
|
if (message === null || message.length <= 0)
|
|
|
|
return;
|
|
|
|
try {
|
|
|
|
this.rotateLogs();
|
2009-05-26 11:51:29 -07:00
|
|
|
FileAppender.prototype.doAppend.call(this, message);
|
2007-10-10 17:08:58 -07:00
|
|
|
} catch(e) {
|
2009-05-26 11:51:29 -07:00
|
|
|
dump("Error writing file:" + e + "\n");
|
2007-10-10 17:08:58 -07:00
|
|
|
}
|
|
|
|
},
|
2009-05-26 11:51:29 -07:00
|
|
|
|
2007-10-10 17:08:58 -07:00
|
|
|
rotateLogs: function RFApp_rotateLogs() {
|
|
|
|
if(this._file.exists() &&
|
|
|
|
this._file.fileSize < this._maxSize)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.closeStream();
|
|
|
|
|
|
|
|
for (let i = this.maxBackups - 1; i > 0; i--){
|
|
|
|
let backup = this._file.parent.clone();
|
|
|
|
backup.append(this._file.leafName + "." + i);
|
|
|
|
if (backup.exists())
|
|
|
|
backup.moveTo(this._file.parent, this._file.leafName + "." + (i + 1));
|
|
|
|
}
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-10-10 17:08:58 -07:00
|
|
|
let cur = this._file.clone();
|
|
|
|
if (cur.exists())
|
|
|
|
cur.moveTo(cur.parent, cur.leafName + ".1");
|
2007-10-10 02:09:28 -07:00
|
|
|
|
2007-10-10 17:08:58 -07:00
|
|
|
// Note: this._file still points to the same file
|
|
|
|
}
|
2007-10-10 02:09:28 -07:00
|
|
|
};
|