Apache Log4cxx  Version 1.7.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_NS
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 using spi::OptionHandler::activateOptions;
52 void close() override;
53
69 void setOption(const LogString& option, const LogString& value) override;
70
76 bool requiresLayout() const override
77 {
78 return true;
79 }
80
81 void setSource(const LogString& source);
82
83 const LogString& getSource() const;
84
85 void setLog(const LogString& log);
86
87 const LogString& getLog() const;
88
89 void setServer(const LogString& server);
90
91 const LogString& getServer() const;
92
93
94 protected:
95 //
96 // these typedef are proxies for the real Win32 definitions
97 // and need to be cast to the global definitions before
98 // use with a Win32 API call
99 typedef void SID;
100 typedef void* HANDLE;
101
102 void append(const spi::LoggingEventPtr& event, helpers::Pool& p) override;
103 static unsigned short getEventType(const spi::LoggingEventPtr& event);
104 static unsigned short getEventCategory(const spi::LoggingEventPtr& event);
105 /*
106 * Add this source with appropriate configuration keys to the registry.
107 */
109
110 struct NTEventLogAppenderPrivate;
111 static LogString getErrorString(const LogString& function);
112
113 private:
115 NTEventLogAppender& operator=(const NTEventLogAppender&);
116}; // class NTEventLogAppender
117
119
120} // namespace nt
121} // namespace log4cxx
122
123#endif //_LOG4CXX_NT_EVENT_LOG_APPENDER_HEADER_
AppenderSkeleton(LOG4CXX_PRIVATE_PTR(AppenderSkeletonPrivate) priv)
Definition pool.h:33
Appends log events to NT EventLog.
Definition nteventlogappender.h:31
void setLog(const LogString &log)
void * HANDLE
Definition nteventlogappender.h:100
const LogString & getServer() const
static unsigned short getEventType(const spi::LoggingEventPtr &event)
const LogString & getLog() const
void setServer(const LogString &server)
void activateOptions(helpers::Pool &) override
void setOption(const LogString &option, const LogString &value) override
Set option to value.
bool requiresLayout() const override
The SocketAppender does not use a layout.
Definition nteventlogappender.h:76
void close() override
Release any resources allocated within the appender such as file handles, network connections,...
static LogString getErrorString(const LogString &function)
const LogString & getSource() const
void setSource(const LogString &source)
void SID
Definition nteventlogappender.h:99
static unsigned short getEventCategory(const spi::LoggingEventPtr &event)
void append(const spi::LoggingEventPtr &event, helpers::Pool &1) override
Subclasses of AppenderSkeleton must implement this method to perform actual logging.
Definition nteventlogappender.h:26
LOG4CXX_PTR_DEF(NTEventLogAppender)
Definition appender.h:30
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition appender.h:32
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:154
#define END_LOG4CXX_CAST_MAP()
Definition object.h:148
#define DECLARE_LOG4CXX_OBJECT(object)
Definition object.h:41
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition object.h:160
#define BEGIN_LOG4CXX_CAST_MAP()
Definition object.h:142
#define LOG4CXX_ACTIVATE_OPTIONS_FORMAL_PARAMETERS
Activate the options that were previously set with calls to option setters.
Definition optionhandler.h:53