/src/logging-log4cxx/src/main/include/log4cxx/nt/nteventlogappender.h
Line | Count | Source |
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 | | |
21 | | #include <log4cxx/appenderskeleton.h> |
22 | | |
23 | | namespace LOG4CXX_NS |
24 | | { |
25 | | namespace nt |
26 | | { |
27 | | /** |
28 | | * Appends log events to NT EventLog. |
29 | | */ |
30 | | class LOG4CXX_EXPORT NTEventLogAppender : public AppenderSkeleton |
31 | | { |
32 | | public: |
33 | | DECLARE_LOG4CXX_OBJECT(NTEventLogAppender) |
34 | 0 | BEGIN_LOG4CXX_CAST_MAP() |
35 | 0 | LOG4CXX_CAST_ENTRY(NTEventLogAppender) |
36 | 0 | LOG4CXX_CAST_ENTRY_CHAIN(AppenderSkeleton) |
37 | 0 | END_LOG4CXX_CAST_MAP() |
38 | | |
39 | | NTEventLogAppender(); |
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; |
46 | | /** |
47 | | \copybrief AppenderSkeleton::activateOptions() |
48 | | |
49 | | Calls <a href="https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-registereventsourcew">RegisterEventSource</a>. |
50 | | */ |
51 | | void activateOptions( LOG4CXX_ACTIVATE_OPTIONS_FORMAL_PARAMETERS ) override; |
52 | | void close() override; |
53 | | |
54 | | /** |
55 | | \copybrief AppenderSkeleton::setOption() |
56 | | |
57 | | Supported options | Supported values | Default value | |
58 | | -------------- | ---------------- | --------------- | |
59 | | Server | (\ref winapi "1") | NULL | |
60 | | Source | (\ref winapi "1") | - | |
61 | | Log | (\ref eventLog "2") | Application | |
62 | | |
63 | | \anchor winapi (1) Passed to the Win32 API method <a href="https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-registereventsourcew">RegisterEventSource</a>. |
64 | | |
65 | | \anchor eventLog (2) An event log name. |
66 | | |
67 | | \sa AppenderSkeleton::setOption() |
68 | | */ |
69 | | void setOption(const LogString& option, const LogString& value) override; |
70 | | |
71 | | /** |
72 | | * The SocketAppender does not use a layout. Hence, this method |
73 | | * returns <code>false</code>. |
74 | | * |
75 | | */ |
76 | | bool requiresLayout() const override |
77 | 0 | { |
78 | 0 | return true; |
79 | 0 | } |
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 | | */ |
108 | | void addRegistryInfo(); |
109 | | |
110 | | struct NTEventLogAppenderPrivate; |
111 | | static LogString getErrorString(const LogString& function); |
112 | | |
113 | | private: |
114 | | NTEventLogAppender(const NTEventLogAppender&); |
115 | | NTEventLogAppender& operator=(const NTEventLogAppender&); |
116 | | }; // class NTEventLogAppender |
117 | | |
118 | | LOG4CXX_PTR_DEF(NTEventLogAppender); |
119 | | |
120 | | } // namespace nt |
121 | | } // namespace log4cxx |
122 | | |
123 | | #endif //_LOG4CXX_NT_EVENT_LOG_APPENDER_HEADER_ |