#include <PropertyConfiguratorImpl.hh>
Collaboration diagram for log4cpp::PropertyConfiguratorImpl:
Public Types | |
typedef std::map< std::string, Appender * > | AppenderMap |
Public Methods | |
PropertyConfiguratorImpl () | |
virtual | ~PropertyConfiguratorImpl () |
virtual void | doConfigure (const std::string &initFileName) throw (ConfigureFailure) |
virtual void | doConfigure (std::istream &in) throw (ConfigureFailure) |
Protected Methods | |
void | configureCategory (const std::string &categoryname) throw (ConfigureFailure) |
configure the given category. More... | |
void | getCategories (std::vector< std::string > &categories) const |
Get the categories contained within the map of properties. More... | |
void | instantiateAllAppenders () throw (ConfigureFailure) |
Appender * | instantiateAppender (const std::string &name) |
Intantiate and configure the appender referred to by the given name. More... | |
void | setLayout (Appender *appender, const std::string &name) |
Method for instantiating and configuring the layouts associated with each appender. More... | |
Protected Attributes | |
Properties | _properties |
AppenderMap | _allAppenders |
|
|
|
|
|
|
|
configure the given category. This includes setting its Priority and adding any Appenders.
|
|
|
|
|
|
Get the categories contained within the map of properties. This simply extracts the categories from the map.
|
|
|
|
Intantiate and configure the appender referred to by the given name. This method searches the map to find all configuration parameters for the appender, and adds the appender to the given category. This isn't very general in the sense that it will need to be modified for each type of appender and layout. A more general solution would be to define an "options" interface for each appender and layout, so that we can simply call this method with a list of options instead of needing to know what is or is not available. This would also require some generic way of instantiating an object for which we have no knowledge. An "AppenderFactory" could be used which maps the given type to an actual object class registered with the factory (?? is this possible?).
|
|
Method for instantiating and configuring the layouts associated with each appender.
|
|
|
|
|