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_HELPERS_THREAD_SPECIFIC_DATA_H
|
---|
19 | #define _LOG4CXX_HELPERS_THREAD_SPECIFIC_DATA_H
|
---|
20 |
|
---|
21 | #include <log4cxx/ndc.h>
|
---|
22 | #include <log4cxx/mdc.h>
|
---|
23 |
|
---|
24 |
|
---|
25 | namespace log4cxx
|
---|
26 | {
|
---|
27 | namespace helpers
|
---|
28 | {
|
---|
29 | /**
|
---|
30 | * This class contains all the thread-specific
|
---|
31 | * data in use by log4cxx.
|
---|
32 | */
|
---|
33 | class LOG4CXX_EXPORT ThreadSpecificData
|
---|
34 | {
|
---|
35 | public:
|
---|
36 | ThreadSpecificData();
|
---|
37 | ~ThreadSpecificData();
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * Gets current thread specific data.
|
---|
41 | * @return thread specific data, may be null.
|
---|
42 | */
|
---|
43 | static ThreadSpecificData* getCurrentData();
|
---|
44 | /**
|
---|
45 | * Release this ThreadSpecficData if empty.
|
---|
46 | */
|
---|
47 | void recycle();
|
---|
48 |
|
---|
49 | static void put(const LogString& key, const LogString& val);
|
---|
50 | static void push(const LogString& val);
|
---|
51 | static void inherit(const log4cxx::NDC::Stack& stack);
|
---|
52 |
|
---|
53 | log4cxx::NDC::Stack& getStack();
|
---|
54 | log4cxx::MDC::Map& getMap();
|
---|
55 |
|
---|
56 |
|
---|
57 | private:
|
---|
58 | static ThreadSpecificData& getDataNoThreads();
|
---|
59 | static ThreadSpecificData* createCurrentData();
|
---|
60 | log4cxx::NDC::Stack ndcStack;
|
---|
61 | log4cxx::MDC::Map mdcMap;
|
---|
62 | };
|
---|
63 |
|
---|
64 | } // namespace helpers
|
---|
65 | } // namespace log4cxx
|
---|
66 |
|
---|
67 | #endif
|
---|