Apache Log4cxx  Version 1.8.0
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 
23 namespace LOG4CXX_NS
24 {
25 namespace nt
26 {
30 class 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 
43  virtual ~NTEventLogAppender();
44 
45  using spi::OptionHandler::activateOptions;
51  void activateOptions( LOG4CXX_ACTIVATE_OPTIONS_FORMAL_PARAMETERS ) override;
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 
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_
#define LOG4CXX_APPEND_FORMAL_PARAMETERS
Log in Appender specific way.
Definition: appender.h:92
Implementation base class for all appenders.
Definition: appenderskeleton.h:45
Appends log events to NT EventLog.
Definition: nteventlogappender.h:31
const LogString & getSource() const
void setLog(const LogString &log)
void * HANDLE
Definition: nteventlogappender.h:100
static unsigned short getEventType(const spi::LoggingEventPtr &event)
const LogString & getServer() const
void setServer(const LogString &server)
const LogString & getLog() const
static LogString getErrorString(const LogString &function)
void append(const spi::LoggingEventPtr &event, helpers::Pool &p) override
Subclasses of AppenderSkeleton must implement this method to perform actual logging.
void setSource(const LogString &source)
void SID
Definition: nteventlogappender.h:99
static unsigned short getEventCategory(const spi::LoggingEventPtr &event)
LOG4CXX_PTR_DEF(NTEventLogAppender)
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition: appender.h:31
std::basic_string< logchar > LogString
Definition: logstring.h:60
std::shared_ptr< Layout > LayoutPtr
Definition: appender.h:41
#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