Apache Log4cxx Version 1.0.0
Loading...
Searching...
No Matches
nteventlogappender.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_NT_EVENT_LOG_APPENDER_HEADER_
19#define _LOG4CXX_NT_EVENT_LOG_APPENDER_HEADER_
20
22
23namespace log4cxx
24{
25namespace nt
26{
30class LOG4CXX_EXPORT NTEventLogAppender : public AppenderSkeleton
31{
32 public:
38
40 NTEventLogAppender(const LogString& server, const LogString& log,
41 const LogString& source, const LayoutPtr& layout);
42
44
45 void activateOptions(helpers::Pool& p) override;
46 void close() override;
47 void setOption(const LogString& option, const LogString& value) override;
48
54 bool requiresLayout() const override
55 {
56 return true;
57 }
58
59 void setSource(const LogString& source);
60
61 const LogString& getSource() const;
62
63 void setLog(const LogString& log);
64
65 const LogString& getLog() const;
66
67 void setServer(const LogString& server);
68
69 const LogString& getServer() const;
70
71
72 protected:
73 //
74 // these typedef are proxies for the real Win32 definitions
75 // and need to be cast to the global definitions before
76 // use with a Win32 API call
77 typedef void SID;
78 typedef void* HANDLE;
79
80 void append(const spi::LoggingEventPtr& event, helpers::Pool& p) override;
81 static unsigned short getEventType(const spi::LoggingEventPtr& event);
82 static unsigned short getEventCategory(const spi::LoggingEventPtr& event);
83 /*
84 * Add this source with appropriate configuration keys to the registry.
85 */
87
88 struct NTEventLogAppenderPrivate;
89 static LogString getErrorString(const LogString& function);
90
91 private:
93 NTEventLogAppender& operator=(const NTEventLogAppender&);
94}; // class NTEventLogAppender
95
97
98} // namespace nt
99} // namespace log4cxx
100
101#endif //_LOG4CXX_NT_EVENT_LOG_APPENDER_HEADER_
Implementation base class for all appenders.
Definition: appenderskeleton.h:41
Definition: pool.h:33
Appends log events to NT EventLog.
Definition: nteventlogappender.h:31
void setLog(const LogString &log)
void * HANDLE
Definition: nteventlogappender.h:78
const LogString & getServer() const
static unsigned short getEventType(const spi::LoggingEventPtr &event)
const LogString & getLog() const
void setServer(const LogString &server)
static LogString getErrorString(const LogString &function)
const LogString & getSource() const
void append(const spi::LoggingEventPtr &event, helpers::Pool &p) override
Subclasses of AppenderSkeleton should implement this method to perform actual logging.
void setSource(const LogString &source)
void SID
Definition: nteventlogappender.h:77
static unsigned short getEventCategory(const spi::LoggingEventPtr &event)
LOG4CXX_PTR_DEF(NTEventLogAppender)
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition: appender.h:32
Definition: configuration.h:25
std::basic_string< logchar > LogString
Definition: logstring.h:60
std::shared_ptr< Layout > LayoutPtr
Definition: appender.h:42
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:157
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:151
#define DECLARE_LOG4CXX_OBJECT(object)
Definition: object.h:42
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition: object.h:163
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:145