[6879] Not apply casting time spell bonuses mods to creature (non-pets) casted spells...
[getmangos.git] / dep / include / zthread / ThreadLocalImpl.h
blob3b4046f8f580ac9b2208483f42fad162b8e73f1f
1 /*
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"
28 namespace ZThread {
30 /**
31 * @class ThreadLocalImpl
32 * @author Eric Crahen <http://www.code-foo.com>
33 * @date <2003-07-27T10:23:19-0400>
34 * @version 2.3.0
36 * @see ThreadLocal
38 class ZTHREAD_API ThreadLocalImpl : private NonCopyable {
39 public:
41 class Value;
42 typedef CountedPtr<Value, size_t> ValuePtr;
44 //!
45 class Value {
46 Value& operator=(const Value&);
47 public:
48 virtual ~Value() {}
49 virtual bool isInheritable() const = 0;
50 virtual ValuePtr clone() const = 0;
53 //! Create a ThreadLocalImpl
54 ThreadLocalImpl();
56 //! Destroy a ThreadLocalImpl
57 ~ThreadLocalImpl();
59 /**
60 * @class InitialValueFn
62 template <typename T>
63 struct InitialValueFn {
64 T operator()() { return T(); }
65 };
67 /**
68 * @class ChildValueFn
70 struct ChildValueFn {
71 template <typename T>
72 T operator()(const T& value) { return T(value); }
75 /**
76 * @class UniqueChildValueFn
78 struct UniqueChildValueFn : public ChildValueFn { };
80 /**
81 * @class InheritableValueFn
83 struct InheritableValueFn {
85 template <typename T>
86 bool operator()(const T&) { return true; }
88 bool operator()(const UniqueChildValueFn&) { return false; }
92 protected:
94 //! Get the Value for the current thread
95 ValuePtr value( ValuePtr (*pfn)() ) const;
97 //! Clear any value set for this thread
98 void clear() const;
100 //! Clear any value set with any ThreadLocal for this thread
101 static void clearAll();
105 } // __ZTTHREADLOCALIMPL_H__
107 #endif