Apache Log4cxx  Version 1.8.0
Loading...
Searching...
No Matches
domconfigurator.h
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef _LOG4CXX_XML_DOM_CONFIGURATOR_H
19#define _LOG4CXX_XML_DOM_CONFIGURATOR_H
20
21#include <log4cxx/logstring.h>
23#if LOG4CXX_ABI_VERSION <= 15
24#include <log4cxx/appender.h>
25#include <log4cxx/layout.h>
26#include <log4cxx/logger.h>
29#include <log4cxx/spi/filter.h>
33#include <map>
34#endif
35#include <log4cxx/file.h>
36
37#if LOG4CXX_HAS_DOMCONFIGURATOR
38
39extern "C" {
40 struct apr_xml_doc;
41 struct apr_xml_elem;
42}
43
44namespace LOG4CXX_NS
45{
46
47namespace xml
48{
49class XMLWatchdog;
50
66class LOG4CXX_EXPORT DOMConfigurator
67#if LOG4CXX_ABI_VERSION <= 15
68 : virtual public spi::Configurator
69#else
70 : public spi::Configurator
71#endif
72{
73 public:
75
76#if LOG4CXX_ABI_VERSION <= 15
77 protected:
78 typedef std::map<LogString, AppenderPtr> AppenderMap;
83 LOG4CXX_NS::helpers::Pool& p,
84 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
85 apr_xml_elem* elem,
86 apr_xml_doc* doc,
87 const LogString& appenderName,
88 AppenderMap& appenders);
89
94 LOG4CXX_NS::helpers::Pool& p,
95 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
96 apr_xml_elem* appenderRef,
97 apr_xml_doc* doc,
98 AppenderMap& appenders);
99
104 LOG4CXX_NS::helpers::Pool& p,
105 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
106 apr_xml_elem* appenderElement,
107 apr_xml_doc* doc,
108 AppenderMap& appenders);
109
114 LOG4CXX_NS::helpers::Pool& p,
115 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
116 apr_xml_elem* element,
117 AppenderPtr& appender,
118 apr_xml_doc* doc,
119 AppenderMap& appenders);
120
125 LOG4CXX_NS::helpers::Pool& p,
126 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
127 apr_xml_elem* element,
128 std::vector<LOG4CXX_NS::spi::FilterPtr>& filters);
129
134 LOG4CXX_NS::helpers::Pool& p,
135 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
136 apr_xml_elem* loggerElement,
137 apr_xml_doc* doc,
138 AppenderMap& appenders);
139
144 LOG4CXX_NS::helpers::Pool& p,
145 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
146 apr_xml_elem* factoryElement);
147
151 LOG4CXX_NS::helpers::ObjectPtr parseTriggeringPolicy(
152 LOG4CXX_NS::helpers::Pool& p,
153 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
154 apr_xml_elem* factoryElement);
155
159 LOG4CXX_NS::rolling::RollingPolicyPtr parseRollingPolicy(
160 LOG4CXX_NS::helpers::Pool& p,
161 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
162 apr_xml_elem* factoryElement);
163
167 void parseRoot(LOG4CXX_NS::helpers::Pool& p,
168 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
169 apr_xml_elem* rootElement, apr_xml_doc* doc, AppenderMap& appenders);
170
175 LOG4CXX_NS::helpers::Pool& p,
176 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
177 apr_xml_elem* catElement,
178 LoggerPtr logger, bool isRoot,
179 apr_xml_doc* doc,
180 AppenderMap& appenders );
181
186 LOG4CXX_NS::helpers::Pool& p,
187 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
188 apr_xml_elem* layout_element);
189
194 LOG4CXX_NS::helpers::Pool& p,
195 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
196 apr_xml_elem* element,
197 LoggerPtr logger, bool isRoot);
198
200 LOG4CXX_NS::helpers::Pool& p,
201 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
202 apr_xml_elem* elem,
203 LOG4CXX_NS::config::PropertySetter& propSetter);
204
209 void parse(
210 LOG4CXX_NS::helpers::Pool& p,
211 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
212 apr_xml_elem* element,
213 apr_xml_doc* doc,
214 AppenderMap& appenders);
215#endif // LOG4CXX_ABI_VERSION <= 15
216
217 public:
219
224
225#if LOG4CXX_ABI_VERSION <= 15
226 DOMConfigurator(LOG4CXX_NS::helpers::Pool& p);
227
231 static spi::ConfigurationStatus configure(const char* filename) { return configure(std::string(filename)); }
235 static spi::ConfigurationStatus configure(const std::string& filename);
236#if LOG4CXX_WCHAR_T_API
240 static spi::ConfigurationStatus configure(const wchar_t* filename) { return configure(std::wstring(filename)); }
244 static spi::ConfigurationStatus configure(const std::wstring& filename);
245#endif
246#if LOG4CXX_UNICHAR_API || LOG4CXX_LOGCHAR_IS_UNICHAR
250 static spi::ConfigurationStatus configure(const std::basic_string<UniChar>& filename);
251#endif
252#if LOG4CXX_CFSTRING_API
257#endif
264 static spi::ConfigurationStatus configureAndWatch(const std::string& configFilename);
265#if LOG4CXX_WCHAR_T_API
272 static spi::ConfigurationStatus configureAndWatch(const std::wstring& configFilename);
273#endif
274#if LOG4CXX_UNICHAR_API || LOG4CXX_LOGCHAR_IS_UNICHAR
281 static spi::ConfigurationStatus configureAndWatch(const std::basic_string<UniChar>& configFilename);
282#endif
283#if LOG4CXX_CFSTRING_API
291#endif
305 static spi::ConfigurationStatus configureAndWatch(const std::string& configFilename,
306 long delay);
307#if LOG4CXX_WCHAR_T_API
311 static spi::ConfigurationStatus configureAndWatch(const std::wstring& configFilename,
312 long delay);
313#endif
314#if LOG4CXX_UNICHAR_API || LOG4CXX_LOGCHAR_IS_UNICHAR
318 static spi::ConfigurationStatus configureAndWatch(const std::basic_string<UniChar>& configFilename,
319 long delay);
320#endif
321#if LOG4CXX_CFSTRING_API
326 long delay);
327#endif
328#endif // LOG4CXX_ABI_VERSION <= 15
329
343 ( const File& filename
344#if LOG4CXX_ABI_VERSION <= 15
345 , spi::LoggerRepositoryPtr repository
346#else
348#endif
349 ) override;
350
355 static spi::ConfigurationStatus configure(const File& configFilename);
356
371 static spi::ConfigurationStatus configureAndWatch(const File& configFilename, long delay = 0);
372
373#if LOG4CXX_ABI_VERSION <= 15
374 protected:
376 LOG4CXX_NS::helpers::CharsetDecoderPtr& utf8Decoder,
377 apr_xml_elem*,
378 const std::string& attrName);
379
380 LogString subst(const LogString& value);
381#endif
382
383 private:
384 // prevent assignment or copy statements
386 DOMConfigurator& operator=(const DOMConfigurator&);
387
388 LOG4CXX_DECLARE_PRIVATE_MEMBER_PTR(DOMConfiguratorPrivate, m_priv)
389};
391} // namespace xml
392} // namespace log4cxx
393
394#endif /* LOG4CXX_HAS_DOMCONFIGURATOR */
395
396#endif // _LOG4CXX_XML_DOM_CONFIGURATOR_H
An abstract representation of file and directory path names.
Definition file.h:41
An abstract base for classes capable of configuring Log4cxx.
Definition configurator.h:40
Use this class to initialize the log4cxx environment using a DOM tree.
Definition domconfigurator.h:72
spi::ConfigurationStatus doConfigure(const File &filename, spi::LoggerRepositoryPtr repository) override
Interpret filename as an XML file and set up Log4cxx accordingly.
void parseErrorHandler(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *element, AppenderPtr &appender, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to parse an ErrorHandler element.
void parseLevel(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *element, LoggerPtr logger, bool isRoot)
Used internally to parse a level element.
static spi::ConfigurationStatus configure(const std::basic_string< UniChar > &filename)
A static version of doConfigure.
static spi::ConfigurationStatus configure(const std::wstring &filename)
A static version of doConfigure.
void parseLoggerFactory(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *factoryElement)
Used internally to parse the logger factory element.
AppenderPtr parseAppender(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *appenderElement, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to parse an appender element.
static spi::ConfigurationStatus configureAndWatch(const File &configFilename, long delay=0)
Read configuration options from configFilename (if it exists).
static spi::ConfigurationStatus configure(const char *filename)
A static version of doConfigure.
Definition domconfigurator.h:231
void parseRoot(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *rootElement, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to parse the root logger element.
static spi::ConfigurationStatus configure(const CFStringRef &filename)
A static version of doConfigure.
log4cxx::helpers::ObjectPtr parseTriggeringPolicy(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *factoryElement)
Used internally to parse the logger factory element.
AppenderPtr findAppenderByReference(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *appenderRef, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to parse appenders by IDREF element.
static spi::ConfigurationStatus configureAndWatch(const CFStringRef &configFilename, long delay)
Refer configureAndWatch(const File& filename, long delay)
static spi::ConfigurationStatus configureAndWatch(const CFStringRef &configFilename)
Like configureAndWatch(const File& filename, long delay) except that the default delay as defined by ...
DOMConfigurator(log4cxx::helpers::Pool &p)
static spi::ConfigurationStatus configure(const wchar_t *filename)
A static version of doConfigure.
Definition domconfigurator.h:240
static spi::ConfigurationStatus configureAndWatch(const std::basic_string< UniChar > &configFilename)
Like configureAndWatch(const File& filename, long delay) except that the default delay as defined by ...
std::map< LogString, AppenderPtr > AppenderMap
Definition domconfigurator.h:78
LayoutPtr parseLayout(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *layout_element)
Used internally to parse a layout element.
void setParameter(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *elem, log4cxx::config::PropertySetter &propSetter)
void parseFilters(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *element, std::vector< log4cxx::spi::FilterPtr > &filters)
Used internally to parse a filter element.
static spi::ConfigurationStatus configure(const File &configFilename)
Read configuration options from configFilename.
static spi::ConfigurationStatus configureAndWatch(const std::string &configFilename)
Like configureAndWatch(const File& filename, long delay) except that the default delay as defined by ...
static spi::ConfigurationStatus configureAndWatch(const std::string &configFilename, long delay)
Read the configuration file configFilename if it exists.
void parseChildrenOfLoggerElement(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *catElement, LoggerPtr logger, bool isRoot, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to parse the children of a logger element.
LogString subst(const LogString &value)
AppenderPtr findAppenderByName(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *elem, apr_xml_doc *doc, const LogString &appenderName, AppenderMap &appenders)
Used internally to parse appenders by IDREF name.
void parseLogger(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *loggerElement, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to parse a logger element.
static spi::ConfigurationStatus configure(const std::string &filename)
A static version of doConfigure.
log4cxx::rolling::RollingPolicyPtr parseRollingPolicy(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *factoryElement)
Used internally to parse the logger factory element.
static LogString getAttribute(log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *, const std::string &attrName)
static spi::ConfigurationStatus configureAndWatch(const std::wstring &configFilename, long delay)
Refer configureAndWatch(const File& filename, long delay)
static spi::ConfigurationStatus configureAndWatch(const std::basic_string< UniChar > &configFilename, long delay)
Refer configureAndWatch(const File& filename, long delay)
void parse(log4cxx::helpers::Pool &p, log4cxx::helpers::CharsetDecoderPtr &utf8Decoder, apr_xml_elem *element, apr_xml_doc *doc, AppenderMap &appenders)
Used internally to configure the log4cxx framework from an in-memory representation of an XML documen...
static spi::ConfigurationStatus configureAndWatch(const std::wstring &configFilename)
Like configureAndWatch(const File& filename, long delay) except that the default delay as defined by ...
const struct __CFString * CFStringRef
Definition logstring.h:30
Definition appender.h:30
std::shared_ptr< LoggerRepository > LoggerRepositoryPtr
Definition optionconverter.h:33
ConfigurationStatus
Definition configurator.h:31
Definition domconfigurator.h:48
LOG4CXX_PTR_DEF(DOMConfigurator)
std::basic_string< logchar > LogString
Definition logstring.h:60
std::shared_ptr< Layout > LayoutPtr
Definition appender.h:42
std::shared_ptr< Appender > AppenderPtr
Definition basicconfigurator.h:29
std::shared_ptr< Logger > LoggerPtr
Definition defaultloggerfactory.h:27
#define LOG4CXX_CAST_ENTRY(Interface)
Definition object.h:154
#define END_LOG4CXX_CAST_MAP()
Definition object.h:148
#define DECLARE_LOG4CXX_OBJECT(object)
Definition object.h:41
#define BEGIN_LOG4CXX_CAST_MAP()
Definition object.h:142