#include <AppenderSkeleton.hh>
Public Member Functions | |
virtual void | close ()=0 |
virtual void | doAppend (const LoggingEvent &event) |
virtual Filter * | getFilter () |
virtual Priority::Value | getThreshold () |
virtual bool | reopen () |
virtual bool | requiresLayout () const =0 |
virtual void | setFilter (Filter *filter) |
virtual void | setLayout (Layout *layout)=0 |
virtual void | setThreshold (Priority::Value priority) |
virtual | ~AppenderSkeleton () |
Public Member Functions inherited from log4cpp::Appender | |
const std::string & | getName () const |
virtual | ~Appender () |
Protected Member Functions | |
virtual void | _append (const LoggingEvent &event)=0 |
AppenderSkeleton (const std::string &name) | |
Protected Member Functions inherited from log4cpp::Appender | |
Appender (const std::string &name) | |
Private Attributes | |
Filter * | _filter |
Priority::Value | _threshold |
Additional Inherited Members | |
Static Public Member Functions inherited from log4cpp::Appender | |
static void | closeAll () |
static Appender * | getAppender (const std::string &name) |
static bool | reopenAll () |
AppenderSkeleton is a helper class, simplifying implementation of Appenders: it already takes care of handling of Thresholds and Filters.
Definition at line 24 of file AppenderSkeleton.hh.
|
protected |
Constructor for AppenderSkeleton. Will only be used in getAppender() (and in derived classes of course).
name | The name of this Appender. |
Definition at line 15 of file AppenderSkeleton.cpp.
|
virtual |
Destructor for AppenderSkeleton.
Definition at line 21 of file AppenderSkeleton.cpp.
|
protectedpure virtual |
Log in Appender specific way. Subclasses of Appender should implement this method to perform actual logging.
event | The LoggingEvent to log. |
Implemented in log4cpp::RemoteSyslogAppender, log4cpp::FileAppender, log4cpp::SyslogAppender, log4cpp::IdsaAppender, log4cpp::StringQueueAppender, log4cpp::AbortAppender, log4cpp::RollingFileAppender, log4cpp::DailyRollingFileAppender, log4cpp::OstreamAppender, and log4cpp::BufferingAppender.
|
pure virtual |
Release any resources allocated within the appender such as file handles, network connections, etc.
Implements log4cpp::Appender.
Implemented in log4cpp::RemoteSyslogAppender, log4cpp::SyslogAppender, log4cpp::FileAppender, log4cpp::IdsaAppender, log4cpp::StringQueueAppender, log4cpp::AbortAppender, log4cpp::OstreamAppender, and log4cpp::BufferingAppender.
|
virtual |
Log in Appender specific way.
event | The LoggingEvent to log. |
Implements log4cpp::Appender.
Definition at line 30 of file AppenderSkeleton.cpp.
|
virtual |
Get the Filter for this appender.
Implements log4cpp::Appender.
Definition at line 55 of file AppenderSkeleton.cpp.
|
virtual |
Get the threshold priority of this Appender.
Implements log4cpp::Appender.
Definition at line 42 of file AppenderSkeleton.cpp.
|
virtual |
Reopens the output destination of this Appender, e.g. the logfile or TCP socket.
Implements log4cpp::Appender.
Reimplemented in log4cpp::RemoteSyslogAppender, log4cpp::SyslogAppender, log4cpp::FileAppender, log4cpp::IdsaAppender, log4cpp::StringQueueAppender, log4cpp::AbortAppender, and log4cpp::OstreamAppender.
Definition at line 26 of file AppenderSkeleton.cpp.
|
pure virtual |
Check if the appender uses a layout.
Implements log4cpp::Appender.
Implemented in log4cpp::IdsaAppender, log4cpp::LayoutAppender, and log4cpp::AbortAppender.
|
virtual |
Set a Filter for this appender.
Implements log4cpp::Appender.
Definition at line 46 of file AppenderSkeleton.cpp.
|
pure virtual |
Set the Layout for this appender.
layout | The layout to use. |
Implements log4cpp::Appender.
Implemented in log4cpp::IdsaAppender, log4cpp::AbortAppender, and log4cpp::LayoutAppender.
|
virtual |
Set the threshold priority of this Appender. The Appender will not appender LoggingEvents with a priority lower than the threshold. Use Priority::NOTSET to disable threshold checking.
priority | The priority to set. |
Implements log4cpp::Appender.
Definition at line 38 of file AppenderSkeleton.cpp.
|
private |
Definition at line 107 of file AppenderSkeleton.hh.
|
private |
Definition at line 106 of file AppenderSkeleton.hh.