Apache Log4cxx Version 1.0.0
|
Implements methods common to most, it not all, rolling policies. More...
#include <rollingpolicybase.h>
Public Member Functions | |
RollingPolicyBase () | |
virtual | ~RollingPolicyBase () |
void | activateOptions (log4cxx::helpers::Pool &p) override |
Activate the options that were previously set with calls to option setters. | |
virtual log4cxx::pattern::PatternMap | getFormatSpecifiers () const =0 |
void | setOption (const LogString &option, const LogString &value) override |
Set option to value . | |
void | setFileNamePattern (const LogString &fnp) |
Set file name pattern. | |
LogString | getFileNamePattern () const |
Get file name pattern. | |
bool | getCreateIntermediateDirectories () const |
void | setCreateIntermediateDirectories (bool createIntermediate) |
PatternConverterList | getPatternConverterList () const |
Public Member Functions inherited from log4cxx::rolling::RollingPolicy | |
virtual | ~RollingPolicy () |
virtual RolloverDescriptionPtr | initialize (const LogString ¤tActiveFile, const bool append, log4cxx::helpers::Pool &pool)=0 |
Initialize the policy and return any initial actions for rolling file appender. | |
virtual RolloverDescriptionPtr | rollover (const LogString ¤tActiveFile, const bool append, log4cxx::helpers::Pool &pool)=0 |
Prepare for a rollover. | |
Public Member Functions inherited from log4cxx::spi::OptionHandler | |
virtual | ~OptionHandler () |
virtual void | activateOptions (helpers::Pool &p)=0 |
Activate the options that were previously set with calls to option setters. | |
virtual void | setOption (const LogString &option, const LogString &value)=0 |
Set option to value . | |
Public Member Functions inherited from log4cxx::helpers::Object | |
virtual | ~Object () |
virtual const helpers::Class & | getClass () const =0 |
virtual bool | instanceof (const Class &clazz) const =0 |
virtual const void * | cast (const Class &clazz) const =0 |
Protected Member Functions | |
RollingPolicyBase (LOG4CXX_PRIVATE_PTR(RollingPolicyBasePrivate) priv) | |
void | parseFileNamePattern () |
Parse file name pattern. | |
void | formatFileName (const helpers::ObjectPtr &obj, LogString &buf, helpers::Pool &p) const |
Format file name. | |
log4cxx::pattern::PatternConverterPtr | getIntegerPatternConverter () const |
log4cxx::pattern::PatternConverterPtr | getDatePatternConverter () const |
Implements methods common to most, it not all, rolling policies.
log4cxx::rolling::RollingPolicyBase::RollingPolicyBase | ( | ) |
|
virtual |
|
protected |
|
overridevirtual |
Activate the options that were previously set with calls to option setters.
This allows to defer activiation of the options until all options have been set. This is required for components which have related options that remain ambigous until all are set.
For example, the FileAppender has the File
and Append options both of which are ambigous until the other is also set.
Implements log4cxx::spi::OptionHandler.
Reimplemented in log4cxx::rolling::TimeBasedRollingPolicy.
|
protected |
Format file name.
obj | object to be evaluted in formatting, may not be null. |
buf | string buffer to which formatted file name is appended, may not be null. |
p | memory pool. |
bool log4cxx::rolling::RollingPolicyBase::getCreateIntermediateDirectories | ( | ) | const |
|
protected |
LogString log4cxx::rolling::RollingPolicyBase::getFileNamePattern | ( | ) | const |
Get file name pattern.
|
pure virtual |
Implemented in log4cxx::rolling::FixedWindowRollingPolicy, and log4cxx::rolling::TimeBasedRollingPolicy.
|
protected |
PatternConverterList log4cxx::rolling::RollingPolicyBase::getPatternConverterList | ( | ) | const |
|
protected |
Parse file name pattern.
void log4cxx::rolling::RollingPolicyBase::setCreateIntermediateDirectories | ( | bool | createIntermediate | ) |
void log4cxx::rolling::RollingPolicyBase::setFileNamePattern | ( | const LogString & | fnp | ) |
Set file name pattern.
fnp | file name pattern. |
|
overridevirtual |
Set option
to value
.
The handling of each option depends on the OptionHandler instance. Some options may become active immediately whereas other may be activated only when activateOptions is called.
Implements log4cxx::spi::OptionHandler.
Reimplemented in log4cxx::rolling::TimeBasedRollingPolicy.