2 * Copyright (c) 2005, Eric Crahen
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is furnished
9 * to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in all
12 * copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #ifndef __ZTTHREADLOCALIMPL_H__
24 #define __ZTTHREADLOCALIMPL_H__
26 #include "zthread/CountedPtr.h"
31 * @class ThreadLocalImpl
32 * @author Eric Crahen <http://www.code-foo.com>
33 * @date <2003-07-27T10:23:19-0400>
38 class ZTHREAD_API ThreadLocalImpl
: private NonCopyable
{
42 typedef CountedPtr
<Value
, size_t> ValuePtr
;
46 Value
& operator=(const Value
&);
49 virtual bool isInheritable() const = 0;
50 virtual ValuePtr
clone() const = 0;
53 //! Create a ThreadLocalImpl
56 //! Destroy a ThreadLocalImpl
60 * @class InitialValueFn
63 struct InitialValueFn
{
64 T
operator()() { return T(); }
72 T
operator()(const T
& value
) { return T(value
); }
76 * @class UniqueChildValueFn
78 struct UniqueChildValueFn
: public ChildValueFn
{ };
81 * @class InheritableValueFn
83 struct InheritableValueFn
{
86 bool operator()(const T
&) { return true; }
88 bool operator()(const UniqueChildValueFn
&) { return false; }
94 //! Get the Value for the current thread
95 ValuePtr
value( ValuePtr (*pfn
)() ) const;
97 //! Clear any value set for this thread
100 //! Clear any value set with any ThreadLocal for this thread
101 static void clearAll();
105 } // __ZTTHREADLOCALIMPL_H__