NuriaProject Framework  0.1
The NuriaProject Framework
threadlocal.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_THREADLOCAL_HPP
18 #define NURIA_THREADLOCAL_HPP
19 
20 #include <QThreadStorage>
21 
41 #define NURIA_THREAD_GLOBAL_STATIC(Type, Name) \
42  static Type *Name () { \
43  static QThreadStorage< Type * > storage; \
44  if (!storage.hasLocalData ()) { \
45  storage.setLocalData (new Type); \
46  } \
47  return storage.localData (); \
48  }
49 
63 #define NURIA_THREAD_GLOBAL_STATIC_WITH_ARGS(Type, Name, Args) \
64  static Type *Name () { \
65  static QThreadStorage< Type * > storage; \
66  if (!storage.hasLocalData ()) { \
67  storage.setLocalData (new Type Args); \
68  } \
69  return storage.localData (); \
70  }
71 
89 #define NURIA_THREAD_GLOBAL_STATIC_WITH_INIT(Type, Name, Method) \
90  static Type *Name () { \
91  static QThreadStorage< Type * > storage; \
92  if (!storage.hasLocalData ()) { \
93  storage.setLocalData (Method ()); \
94  } \
95  return storage.localData (); \
96  }
97 
98 #endif // NURIA_THREADLOCAL_HPP