Apache Log4cxx  Version 1.2.0
Loading...
Searching...
No Matches
loggingevent.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_SPI_LOGGING_EVENT_H
19#define _LOG4CXX_SPI_LOGGING_EVENT_H
20
21#include <log4cxx/logstring.h>
22#include <time.h>
23#include <log4cxx/logger.h>
24#include <log4cxx/mdc.h>
26#include <vector>
27#include <chrono>
28
29
30namespace LOG4CXX_NS
31{
32namespace helpers
33{
34class ObjectOutputStream;
35}
36
37namespace spi
38{
40
49class LOG4CXX_EXPORT LoggingEvent :
50 public virtual helpers::Object
51{
52 public:
57
58 typedef spi::KeySet KeySet;
59
63
76 ( const LogString& logger
77 , const LevelPtr& level
78 , const spi::LocationInfo& location
79 , LogString&& message
80 );
81
93 LoggingEvent(const LogString& logger,
94 const LevelPtr& level, const LogString& message,
95 const LOG4CXX_NS::spi::LocationInfo& location);
96
98
100 const LevelPtr& getLevel() const;
101
103 const LogString& getLoggerName() const;
104
106 const LogString& getMessage() const;
107
109 const LogString& getRenderedMessage() const;
110
114 static log4cxx_time_t getStartTime();
115
117 const LogString& getThreadName() const;
118
123 const LogString& getThreadUserName() const;
124
127 log4cxx_time_t getTimeStamp() const;
128
129 std::chrono::time_point<std::chrono::system_clock> getChronoTimeStamp() const;
130
131 /* Return the file where this log statement was written. */
132 const LOG4CXX_NS::spi::LocationInfo& getLocationInformation() const;
133
143 bool getNDC(LogString& dest) const;
144
161 bool getMDC(const LogString& key, LogString& dest) const;
162
170 KeySet getMDCKeySet() const;
171
176 void getMDCCopy() const;
177
184 bool getProperty(const LogString& key, LogString& dest) const;
191 KeySet getPropertyKeySet() const;
192
196 void setProperty(const LogString& key, const LogString& value);
197
198 private:
199 LOG4CXX_DECLARE_PRIVATE_MEMBER_PTR(LoggingEventPrivate, m_priv)
200
201 //
202 // prevent copy and assignment
203 //
205 LoggingEvent& operator=(const LoggingEvent&);
206 static const LogString& getCurrentThreadName();
207 static const LogString& getCurrentThreadUserName();
208
209};
210
211LOG4CXX_PTR_DEF(LoggingEvent);
212LOG4CXX_LIST_DEF(LoggingEventList, LoggingEventPtr);
213}
214}
215
216#endif //_LOG4CXX_SPI_LOGGING_EVENT_H
base class for java-like objects.
Definition: object.h:106
This class represents the location of a logging statement.
Definition: locationinfo.h:46
The internal representation of logging events.
Definition: loggingevent.h:51
spi::KeySet KeySet
Definition: loggingevent.h:58
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition: appender.h:32
LOG4CXX_LIST_DEF(AppenderList, AppenderPtr)
std::basic_string< logchar > LogString
Definition: logstring.h:60
std::shared_ptr< Level > LevelPtr
Definition: optionconverter.h:28
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:158
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:152
#define DECLARE_LOG4CXX_OBJECT(object)
Definition: object.h:43
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:146