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_LOCAL_H
|
---|
19 | #define _LOG4CXX_HELPERS_THREAD_LOCAL_H
|
---|
20 |
|
---|
21 | #include <log4cxx/log4cxx.h>
|
---|
22 | #include <log4cxx/helpers/pool.h>
|
---|
23 |
|
---|
24 | #if !defined(LOG4CXX_THREAD_FUNC)
|
---|
25 | #if defined(_WIN32)
|
---|
26 | #define LOG4CXX_THREAD_FUNC __stdcall
|
---|
27 | #else
|
---|
28 | #define LOG4CXX_THREAD_FUNC
|
---|
29 | #endif
|
---|
30 | #endif
|
---|
31 |
|
---|
32 |
|
---|
33 | extern "C" {
|
---|
34 | struct apr_threadkey_t;
|
---|
35 | }
|
---|
36 |
|
---|
37 | namespace log4cxx
|
---|
38 | {
|
---|
39 | namespace helpers
|
---|
40 | {
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * This class provides thread-local variables. This class is similar in function
|
---|
44 | * to java.lang.ThreadLocal.
|
---|
45 | */
|
---|
46 | class LOG4CXX_EXPORT ThreadLocal {
|
---|
47 | public:
|
---|
48 | /**
|
---|
49 | * Create new instance.
|
---|
50 | */
|
---|
51 | ThreadLocal();
|
---|
52 | /**
|
---|
53 | * Destructor.
|
---|
54 | */
|
---|
55 | ~ThreadLocal();
|
---|
56 | /**
|
---|
57 | * Sets the value in the current thread's copy of this thread-local variable.
|
---|
58 | * @param priv new value.
|
---|
59 | */
|
---|
60 | void set(void* priv);
|
---|
61 | /**
|
---|
62 | * Returns the value in the current thread's copy of this thread-local variable.
|
---|
63 | * @return value of thread-local variable for the current thread.
|
---|
64 | */
|
---|
65 | void* get();
|
---|
66 |
|
---|
67 | private:
|
---|
68 | /**
|
---|
69 | * Prevent use of default copy constructor.
|
---|
70 | */
|
---|
71 | ThreadLocal(const ThreadLocal&);
|
---|
72 | /**
|
---|
73 | * Prevent use of default assignment operator.
|
---|
74 | */
|
---|
75 | ThreadLocal& operator=(const ThreadLocal&);
|
---|
76 |
|
---|
77 | static apr_threadkey_t* create(Pool& p);
|
---|
78 |
|
---|
79 | Pool p;
|
---|
80 | apr_threadkey_t* key;
|
---|
81 | };
|
---|
82 | } // namespace helpers
|
---|
83 | } // namespace log4cxx
|
---|
84 |
|
---|
85 | #endif //_LOG4CXX_HELPERS_THREAD_LOCAL_H
|
---|