org.gudy.azureus2.pluginsimpl.local.logging
Class LoggerChannelImpl

java.lang.Object
  extended by org.gudy.azureus2.pluginsimpl.local.logging.LoggerChannelImpl
All Implemented Interfaces:
LoggerChannel

public class LoggerChannelImpl
extends java.lang.Object
implements LoggerChannel


Field Summary
 
Fields inherited from interface org.gudy.azureus2.plugins.logging.LoggerChannel
LT_ERROR, LT_INFORMATION, LT_WARNING
 
Constructor Summary
protected LoggerChannelImpl(Logger _logger, java.lang.String _name, boolean _timestamp, boolean _no_output)
           
 
Method Summary
 void addListener(LoggerChannelListener l)
          Add a LoggerChannelListener to this LoggerChannel
protected  java.lang.String addTimeStamp(java.lang.String data)
           
 boolean getForce()
           
 Logger getLogger()
          Retrieve the parent Logger object for this LoggerChannel.
 java.lang.String getName()
          Returns the name of the Logger Channel
protected  java.lang.String getTimeStamp()
           
 boolean isEnabled()
          Indicates whether or not logging is enabled - use to optimise calls to the log methods that require resources to construct the message to be logged.
 void log(int log_type, java.lang.String data)
          Log a message of a specific type to this channel's logger
 void log(java.lang.Object[] relatedTo, int log_type, java.lang.String data)
          Log a string against a list of objects
 void log(java.lang.Object[] relatedTo, java.lang.String data)
          Log an error against a list of objects with implicit type LoggerChannel.LT_INFORMATION
 void log(java.lang.Object[] relatedTo, java.lang.String str, java.lang.Throwable error)
          Log an error against a list of objects
 void log(java.lang.Object relatedTo, int log_type, java.lang.String data)
          Log an error against an object.
 void log(java.lang.Object relatedTo, java.lang.String data)
          Log an error against an object with implicit type LoggerChannel.LT_INFORMATION
 void log(java.lang.Object relatedTo, java.lang.String str, java.lang.Throwable error)
          Log an error against an object.
 void log(java.lang.String data)
          log text with implicit type LoggerChannel.LT_INFORMATION
 void log(java.lang.String str, java.lang.Throwable error)
          log an error with implicit type of LoggerChannel.LT_ERROR
 void log(java.lang.Throwable error)
          log an error with implicit type of LoggerChannel.LT_ERROR
 void logAlert(int alert_type, java.lang.String message)
          raise an alert to the user, if UI present Note that messages shown to the user are filtered on unique message content So if you raise an identical alert the second + subsequent messages will not be shown.
protected  void logAlert(int alert_type, java.lang.String message, boolean repeatable)
           
 void logAlert(java.lang.String message, java.lang.Throwable e)
          Alert the user of an error
 void logAlertRepeatable(int alert_type, java.lang.String message)
          Raise an alert to the user, if UI present.
 void logAlertRepeatable(java.lang.String message, java.lang.Throwable e)
          Raise an alert to the user, if UI present.
 void removeListener(LoggerChannelListener l)
          Remove a reviously added LoggerChannelListener
 void setDiagnostic()
          This causes the channel to also write to logs/name files in a cyclic fashion (c.f.
 void setDiagnostic(long max_file_size, boolean diag_timestamp)
           
 void setForce(boolean forceToFile)
          logging to file is disabled by default in non-beta builds.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoggerChannelImpl

protected LoggerChannelImpl(Logger _logger,
                            java.lang.String _name,
                            boolean _timestamp,
                            boolean _no_output)
Method Detail

getLogger

public Logger getLogger()
Description copied from interface: LoggerChannel
Retrieve the parent Logger object for this LoggerChannel.

Specified by:
getLogger in interface LoggerChannel
Returns:
Logger object

getName

public java.lang.String getName()
Description copied from interface: LoggerChannel
Returns the name of the Logger Channel

Specified by:
getName in interface LoggerChannel
Returns:
Logger channel name

isEnabled

public boolean isEnabled()
Description copied from interface: LoggerChannel
Indicates whether or not logging is enabled - use to optimise calls to the log methods that require resources to construct the message to be logged. Note that this doesn't apply to alerts - these will always be handled

Specified by:
isEnabled in interface LoggerChannel
Returns:
Enabled state of logging

setDiagnostic

public void setDiagnostic()
Description copied from interface: LoggerChannel
This causes the channel to also write to logs/name files in a cyclic fashion (c.f. the debug_1/2._log files)

Specified by:
setDiagnostic in interface LoggerChannel

setForce

public void setForce(boolean forceToFile)
Description copied from interface: LoggerChannel
logging to file is disabled by default in non-beta builds. This forces writing to file regardless

Specified by:
setForce in interface LoggerChannel

getForce

public boolean getForce()
Specified by:
getForce in interface LoggerChannel
Returns:

setDiagnostic

public void setDiagnostic(long max_file_size,
                          boolean diag_timestamp)
Specified by:
setDiagnostic in interface LoggerChannel

log

public void log(int log_type,
                java.lang.String data)
Description copied from interface: LoggerChannel
Log a message of a specific type to this channel's logger

Specified by:
log in interface LoggerChannel
Parameters:
log_type - LT_* constant
data - text to log

log

public void log(java.lang.String data)
Description copied from interface: LoggerChannel
log text with implicit type LoggerChannel.LT_INFORMATION

Specified by:
log in interface LoggerChannel
Parameters:
data - text to log

log

public void log(java.lang.Object[] relatedTo,
                int log_type,
                java.lang.String data)
Description copied from interface: LoggerChannel
Log a string against a list of objects

Specified by:
log in interface LoggerChannel
Parameters:
relatedTo - a list of what this log is related to (ex. Peer, Torrent, Download, Object)
log_type - LT_* constant
data - text to log

log

public void log(java.lang.Object relatedTo,
                int log_type,
                java.lang.String data)
Description copied from interface: LoggerChannel
Log an error against an object.

Specified by:
log in interface LoggerChannel
Parameters:
relatedTo - What this log is related to (ex. Peer, Torrent, Download, Object, etc)
log_type - LT_* constant
data - text to log

log

public void log(java.lang.Throwable error)
Description copied from interface: LoggerChannel
log an error with implicit type of LoggerChannel.LT_ERROR

Specified by:
log in interface LoggerChannel
Parameters:
error - Throwable object to log

log

public void log(java.lang.String str,
                java.lang.Throwable error)
Description copied from interface: LoggerChannel
log an error with implicit type of LoggerChannel.LT_ERROR

Specified by:
log in interface LoggerChannel
Parameters:
str - text to log
error - Throwable object to log

log

public void log(java.lang.Object[] relatedTo,
                java.lang.String str,
                java.lang.Throwable error)
Description copied from interface: LoggerChannel
Log an error against a list of objects

Specified by:
log in interface LoggerChannel
Parameters:
relatedTo - a list of what this log is related to (ex. Peer, Torrent, Download, Object)
str - text to log
error - Error that will be appended to the log entry

log

public void log(java.lang.Object relatedTo,
                java.lang.String str,
                java.lang.Throwable error)
Description copied from interface: LoggerChannel
Log an error against an object.

Specified by:
log in interface LoggerChannel
Parameters:
relatedTo - What this log is related to (ex. Peer, Torrent, Download, Object, etc)
str - text to log
error - Error that will be appended to the log entry

log

public void log(java.lang.Object[] relatedTo,
                java.lang.String data)
Description copied from interface: LoggerChannel
Log an error against a list of objects with implicit type LoggerChannel.LT_INFORMATION

Specified by:
log in interface LoggerChannel
Parameters:
relatedTo - a list of what this log is related to (ex. Peer, Torrent, Download, Object)
data - text to log

log

public void log(java.lang.Object relatedTo,
                java.lang.String data)
Description copied from interface: LoggerChannel
Log an error against an object with implicit type LoggerChannel.LT_INFORMATION

Specified by:
log in interface LoggerChannel
Parameters:
relatedTo - What this log is related to (ex. Peer, Torrent, Download, Object, etc)
data - text to log

logAlert

protected void logAlert(int alert_type,
                        java.lang.String message,
                        boolean repeatable)

logAlert

public void logAlert(int alert_type,
                     java.lang.String message)
Description copied from interface: LoggerChannel
raise an alert to the user, if UI present Note that messages shown to the user are filtered on unique message content So if you raise an identical alert the second + subsequent messages will not be shown. Thus, if you want "identical" messages to be shown, prefix them with something unique like a timestamp.

Specified by:
logAlert in interface LoggerChannel
Parameters:
alert_type - LT_* constant
message - text to alert user with

logAlertRepeatable

public void logAlertRepeatable(int alert_type,
                               java.lang.String message)
Description copied from interface: LoggerChannel
Raise an alert to the user, if UI present. Subsequent, identical messages will always generate an alert (i.e. duplicates won't be filtered)

Specified by:
logAlertRepeatable in interface LoggerChannel
Parameters:
alert_type - LT_* constant
message - text to alert user with

logAlert

public void logAlert(java.lang.String message,
                     java.lang.Throwable e)
Description copied from interface: LoggerChannel
Alert the user of an error

Specified by:
logAlert in interface LoggerChannel
Parameters:
message - text to alert user with
e - Error that will be attached to the alert

logAlertRepeatable

public void logAlertRepeatable(java.lang.String message,
                               java.lang.Throwable e)
Description copied from interface: LoggerChannel
Raise an alert to the user, if UI present. Subsequent, identical messages will always generate an alert (i.e. duplicates won't be filtered)

Specified by:
logAlertRepeatable in interface LoggerChannel
Parameters:
message - text to alert user with
e - Error that will be attached to the alert

addListener

public void addListener(LoggerChannelListener l)
Description copied from interface: LoggerChannel
Add a LoggerChannelListener to this LoggerChannel

Specified by:
addListener in interface LoggerChannel
Parameters:
l - Listener to add

removeListener

public void removeListener(LoggerChannelListener l)
Description copied from interface: LoggerChannel
Remove a reviously added LoggerChannelListener

Specified by:
removeListener in interface LoggerChannel
Parameters:
l - Listener to remove.

addTimeStamp

protected java.lang.String addTimeStamp(java.lang.String data)

getTimeStamp

protected java.lang.String getTimeStamp()