Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_THREADING_THREAD_LOCAL_STORAGE_H_ | 5 #ifndef BASE_THREADING_THREAD_LOCAL_STORAGE_H_ |
| 6 #define BASE_THREADING_THREAD_LOCAL_STORAGE_H_ | 6 #define BASE_THREADING_THREAD_LOCAL_STORAGE_H_ |
| 7 | 7 |
| 8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 | 10 |
| 11 #if defined(OS_POSIX) | 11 #if defined(OS_WIN) |
| 12 #include <windows.h> | |
| 13 #elif defined(OS_POSIX) | |
| 12 #include <pthread.h> | 14 #include <pthread.h> |
| 13 #endif | 15 #endif |
| 14 | 16 |
| 15 namespace base { | 17 namespace base { |
| 16 | 18 |
| 19 namespace internal { | |
| 20 | |
| 21 // WARNING: You should *NOT* be using this class directly. | |
| 22 // PlatformThreadLocalStorage is low-level abstraction to the OS's TLS | |
| 23 // interface, you should instead be using ThreadLocalStorage::StaticSlot/Slot, | |
| 24 // see thread_local_storage.h. | |
| 25 class BASE_EXPORT PlatformThreadLocalStorage { | |
| 26 public: | |
| 27 | |
| 28 #if defined(OS_WIN) | |
| 29 typedef unsigned long TLSKey; | |
| 30 enum { TLS_KEY_OUT_OF_INDEXES = TLS_OUT_OF_INDEXES }; | |
| 31 #elif defined(OS_POSIX) | |
| 32 typedef pthread_key_t TLSKey; | |
| 33 // The following is a "reserved key" which is used in our generic Chromium | |
| 34 // ThreadLocalStorage implementation. We expect that an OS will not return | |
| 35 // such a key, but if it is returned (i.e., the OS tries to allocate it) we | |
| 36 // will just request another key. | |
| 37 enum { TLS_KEY_OUT_OF_INDEXES = 0x7FFFFFFF }; | |
| 38 #endif | |
| 39 // The following methods need to be supported on each OS platform, so that | |
| 40 // the Chromium ThreadLocalStore functionality can be constructed. | |
| 41 // Chromium will use these methods to acquire a single OS slot, and then use | |
| 42 // that to support a much larger number of Chromium slots (independent of the | |
| 43 // OS restrictions). | |
| 44 // The following returns true IFF it successfully is able to return an OS | |
| 45 // key in |key|. | |
| 46 static bool AllocTLS(TLSKey* key); | |
| 47 // Note: FreeTLS() doesn't have to be called, it is fine with this leak, OS | |
| 48 // might not reuse released slot, you might just reset the TLS value with | |
| 49 // SetTLSValue(). | |
| 50 static void FreeTLS(TLSKey key); | |
| 51 static void SetTLSValue(TLSKey key, void* value); | |
| 52 static void* GetTLSValue(TLSKey key); | |
| 53 | |
| 54 // Each platform (OS implementation) is required to call this method on each | |
| 55 // terminating thread when the thread is about to terminate. This method | |
| 56 // will then call all registered destructors for slots in Chromium | |
| 57 // ThreadLocalStorage, until there are no slot values remaining as having | |
| 58 // been set on this thread. | |
| 59 // Destructors may end up being called multiple times on a terminating | |
| 60 // thread, as other destructors may re-set slots that were previously | |
| 61 // destroyed. | |
| 62 // |Value| is the data stored in TLS slot, and will be NULL in Windows which | |
| 63 // doesn't support TLS destructor. The Windows implementation should use | |
| 64 // GetTLSValue() to retrieve the vale of TLS slot. Posix implementation can't | |
| 65 // use the same way because the value was already reset before calling | |
| 66 // destructor. | |
| 67 static void OnThreadExit(void* value); | |
|
jar (doing other things)
2013/12/05 19:53:32
It sure would have been nice if the Window's imple
michaelbai
2013/12/05 22:56:15
In order to do this, we need to know the TLS key i
| |
| 68 }; | |
| 69 | |
| 70 } // namespace internal | |
| 71 | |
| 17 // Wrapper for thread local storage. This class doesn't do much except provide | 72 // Wrapper for thread local storage. This class doesn't do much except provide |
| 18 // an API for portability. | 73 // an API for portability. |
| 19 class BASE_EXPORT ThreadLocalStorage { | 74 class BASE_EXPORT ThreadLocalStorage { |
| 20 public: | 75 public: |
| 21 | 76 |
| 22 // Prototype for the TLS destructor function, which can be optionally used to | 77 // Prototype for the TLS destructor function, which can be optionally used to |
| 23 // cleanup thread local storage on thread exit. 'value' is the data that is | 78 // cleanup thread local storage on thread exit. 'value' is the data that is |
| 24 // stored in thread local storage. | 79 // stored in thread local storage. |
| 25 typedef void (*TLSDestructorFunc)(void* value); | 80 typedef void (*TLSDestructorFunc)(void* value); |
| 26 | 81 |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 53 void* Get() const; | 108 void* Get() const; |
| 54 | 109 |
| 55 // Set the thread-local value stored in slot 'slot' to | 110 // Set the thread-local value stored in slot 'slot' to |
| 56 // value 'value'. | 111 // value 'value'. |
| 57 void Set(void* value); | 112 void Set(void* value); |
| 58 | 113 |
| 59 bool initialized() const { return initialized_; } | 114 bool initialized() const { return initialized_; } |
| 60 | 115 |
| 61 // The internals of this struct should be considered private. | 116 // The internals of this struct should be considered private. |
| 62 bool initialized_; | 117 bool initialized_; |
| 63 #if defined(OS_WIN) | |
| 64 int slot_; | 118 int slot_; |
| 65 #elif defined(OS_POSIX) | |
| 66 pthread_key_t key_; | |
| 67 #endif | |
| 68 | |
| 69 }; | 119 }; |
| 70 | 120 |
| 71 // A convenience wrapper around StaticSlot with a constructor. Can be used | 121 // A convenience wrapper around StaticSlot with a constructor. Can be used |
| 72 // as a member variable. | 122 // as a member variable. |
| 73 class BASE_EXPORT Slot : public StaticSlot { | 123 class BASE_EXPORT Slot : public StaticSlot { |
| 74 public: | 124 public: |
| 75 // Calls StaticSlot::Initialize(). | 125 // Calls StaticSlot::Initialize(). |
| 76 explicit Slot(TLSDestructorFunc destructor = NULL); | 126 explicit Slot(TLSDestructorFunc destructor = NULL); |
| 77 | 127 |
| 78 private: | 128 private: |
| 79 using StaticSlot::initialized_; | 129 using StaticSlot::initialized_; |
| 80 #if defined(OS_WIN) | |
| 81 using StaticSlot::slot_; | 130 using StaticSlot::slot_; |
| 82 #elif defined(OS_POSIX) | 131 |
| 83 using StaticSlot::key_; | |
| 84 #endif | |
| 85 DISALLOW_COPY_AND_ASSIGN(Slot); | 132 DISALLOW_COPY_AND_ASSIGN(Slot); |
| 86 }; | 133 }; |
| 87 | 134 |
| 88 DISALLOW_COPY_AND_ASSIGN(ThreadLocalStorage); | 135 DISALLOW_COPY_AND_ASSIGN(ThreadLocalStorage); |
| 89 }; | 136 }; |
| 90 | 137 |
| 91 } // namespace base | 138 } // namespace base |
| 92 | 139 |
| 93 #endif // BASE_THREADING_THREAD_LOCAL_STORAGE_H_ | 140 #endif // BASE_THREADING_THREAD_LOCAL_STORAGE_H_ |
| OLD | NEW |