📄 loggerbase.java
字号:
* many useless compiler warnings. This message will be logged
* unconditionally.
*
* @param exception An <code>Exception</code> to be reported
* @param msg The associated message string
*/
public void log(Exception exception, String msg) {
log(msg, exception);
}
/**
* Writes an explanatory message and a stack trace for a given
* <code>Throwable</code> exception to the servlet log file. The name
* and type of the servlet log file is specific to the servlet container,
* usually an event log. This message will be logged unconditionally.
*
* @param msg A <code>String</code> that describes the error or
* exception
* @param throwable The <code>Throwable</code> error or exception
*/
public void log(String msg, Throwable throwable) {
CharArrayWriter buf = new CharArrayWriter();
PrintWriter writer = new PrintWriter(buf);
writer.println(msg);
throwable.printStackTrace(writer);
Throwable rootCause = null;
if (throwable instanceof LifecycleException)
rootCause = ((LifecycleException) throwable).getThrowable();
else if (throwable instanceof ServletException)
rootCause = ((ServletException) throwable).getRootCause();
if (rootCause != null) {
writer.println("----- Root Cause -----");
rootCause.printStackTrace(writer);
}
log(buf.toString());
}
/**
* Writes the specified message to the servlet log file, usually an event
* log, if the logger is set to a verbosity level equal to or higher than
* the specified value for this message.
*
* @param message A <code>String</code> specifying the message to be
* written to the log file
* @param verbosity Verbosity level of this message
*/
public void log(String message, int verbosity) {
if (this.verbosity >= verbosity)
log(message);
}
/**
* Writes the specified message and exception to the servlet log file,
* usually an event log, if the logger is set to a verbosity level equal
* to or higher than the specified value for this message.
*
* @param message A <code>String</code> that describes the error or
* exception
* @param throwable The <code>Throwable</code> error or exception
* @param verbosity Verbosity level of this message
*/
public void log(String message, Throwable throwable, int verbosity) {
if (this.verbosity >= verbosity)
log(message, throwable);
}
/**
* Remove a property change listener from this component.
*
* @param listener The listener to remove
*/
public void removePropertyChangeListener(PropertyChangeListener listener) {
support.removePropertyChangeListener(listener);
}
protected String domain;
protected String host;
protected String path;
protected ObjectName oname;
protected ObjectName controller;
protected MBeanServer mserver;
public ObjectName getController() {
return controller;
}
public void setController(ObjectName controller) {
this.controller = controller;
}
public ObjectName getObjectName() {
return oname;
}
public String getDomain() {
return domain;
}
public ObjectName preRegister(MBeanServer server,
ObjectName name) throws Exception {
oname=name;
mserver=server;
// FIXME null pointer exception
if (name == null) {
return null;
}
domain=name.getDomain();
host=name.getKeyProperty("host");
path=name.getKeyProperty("path");
if( container== null ) {
// Register with the parent
try {
ObjectName cname=null;
if( host == null ) {
// global
cname=new ObjectName(domain +":type=Engine");
} else if( path==null ) {
cname=new ObjectName(domain +
":type=Host,host=" + host);
} else {
cname=new ObjectName(domain +":j2eeType=WebModule,name=//" +
host + "/" + path);
}
log.debug("Register with " + cname);
mserver.invoke(cname, "setLogger", new Object[] {this},
new String[] {"org.apache.catalina.Logger"});
} catch (Exception e) {
e.printStackTrace(); //To change body of catch statement use Options | File Templates.
}
}
return name;
}
public void postRegister(Boolean registrationDone) {
}
public void preDeregister() throws Exception {
}
public void postDeregister() {
}
public void init() {
}
public void destroy() {
}
public ObjectName createObjectName() {
// register
try {
StandardEngine engine=null;
String suffix="";
if( container instanceof StandardEngine ) {
engine=(StandardEngine)container;
} else if( container instanceof StandardHost ) {
engine=(StandardEngine)container.getParent();
suffix=",host=" + container.getName();
} else if( container instanceof StandardContext ) {
String path = ((StandardContext)container).getPath();
// add "/" to avoid MalformedObjectName Exception
if (path.equals("")) {
path = "/";
}
engine=(StandardEngine)container.getParent().getParent();
suffix= ",path=" + path + ",host=" +
container.getParent().getName();
} else {
log.error("Unknown container " + container );
}
if( engine != null ) {
oname=new ObjectName(engine.getDomain()+ ":type=Logger" + suffix);
} else {
log.error("Null engine !! " + container);
}
} catch (Throwable e) {
e.printStackTrace(); //To change body of catch statement use Options | File Templates.
}
return oname;
}
// ------------------------------------------------------ Lifecycle Methods
/**
* Add a lifecycle event listener to this component.
*
* @param listener The listener to add
*/
public void addLifecycleListener(LifecycleListener listener) {
lifecycle.addLifecycleListener(listener);
}
/**
* Get the lifecycle listeners associated with this lifecycle. If this
* Lifecycle has no listeners registered, a zero-length array is returned.
*/
public LifecycleListener[] findLifecycleListeners() {
return lifecycle.findLifecycleListeners();
}
/**
* Remove a lifecycle event listener from this component.
*
* @param listener The listener to add
*/
public void removeLifecycleListener(LifecycleListener listener) {
lifecycle.removeLifecycleListener(listener);
}
/**
* Prepare for the beginning of active use of the public methods of this
* component. This method should be called after <code>configure()</code>,
* and before any of the public methods of the component are utilized.
*
* @exception LifecycleException if this component detects a fatal error
* that prevents this component from being used
*/
public void start() throws LifecycleException {
// register this logger
if ( getObjectName()==null ) {
ObjectName oname = createObjectName();
try {
Registry.getRegistry(null, null).registerComponent(this, oname, null);
log.debug( "registering logger " + oname );
} catch( Exception ex ) {
log.error( "Can't register logger " + oname, ex);
}
}
}
/**
* Gracefully terminate the active use of the public methods of this
* component. This method should be the last one called on a given
* instance of this component.
*
* @exception LifecycleException if this component detects a fatal error
* that needs to be reported
*/
public void stop() throws LifecycleException {
// unregister this logger
if ( getObjectName()!=null ) {
ObjectName oname = createObjectName();
try {
Registry.getRegistry(null, null).unregisterComponent(oname);
log.info( "unregistering logger " + oname );
} catch( Exception ex ) {
log.error( "Can't unregister logger " + oname, ex);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -