594c8229c4b504961006775b0eeb52fa4a7f16da
[libcds.git] / cds / details / defs.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef CDSLIB_DEFS_H
32 #define CDSLIB_DEFS_H
33
34 #include <stddef.h>
35 #include <stdlib.h>
36 #include <assert.h>
37 #include <cstdint>
38 #include <exception>
39 #include <stdexcept>
40 #include <string>
41 #include <memory>
42
43 #include <cds/version.h>
44
45 /** \mainpage CDS: Concurrent Data Structures library
46
47    This library is a collection of lock-free and lock-based fine-grained algorithms of data structures
48    like maps, queues, list etc. The library contains implementation of well-known data structures
49    and memory reclamation schemas for modern processor architectures. The library is written on C++11.
50
51    The main namespace for the library is \ref cds.
52    To see the full list of container's class go to <a href="modules.html">modules</a> tab.
53
54    Supported processor architectures and operating systems (OS) are:
55       - x86 [32bit] Linux, Windows, FreeBSD, MinGW
56       - amd64 (x86-64) [64bit] Linux, Windows, FreeBSD, MinGW
57       - ia64 (itanium) [64bit] Linux, HP-UX 11.23, HP-UX 11.31
58       - sparc [64bit] Sun Solaris
59       - Mac OS X amd64
60       - ppc64 Linux
61
62    Supported compilers:
63       - GCC 4.8+
64       - Clang 3.6+
65       - MS Visual C++ 2013 Update 4 and above
66       - Intel C++ Compiler 15
67
68    For each lock-free data structure the \p CDS library presents several implementation based on published papers. For
69    example, there are several implementations of queue, each of them is divided by memory reclamation
70    schema used. However, any implementation supports common interface for the type of data structure.
71
72    To use any lock-free data structure, the following are needed:
73    - atomic operation library conforming with C++11 memory model.
74       The <b>libcds</b> can be built with \p std::atomic, \p boost::atomic or its own
75       @ref cds_cxx11_atomic "atomic implementation"
76    - safe memory reclamation (SMR) or garbage collecting (GC) algorithm.
77
78    SMR is the main part of lock-free data structs. The SMR solves the problem of safe
79    memory reclamation that is one of the main problem for lock-free programming.
80    The library contains the implementations of several light-weight \ref cds_garbage_collector "memory reclamation schemes":
81    - M.Michael's Hazard Pointer - see \p cds::gc::HP, \p cds::gc::DHP for more explanation
82    - User-space Read-Copy Update (RCU) - see \p cds::urcu namespace
83    - there is an empty \p cds::gc::nogc "GC" for append-only containers that do not support item reclamation.
84
85    Many GC requires a support from the thread. The library does not define the threading model you must use,
86    it is developed to support various ones; about incorporating <b>cds</b> library to your threading model see \p cds::threading.
87
88    \anchor cds_how_to_use
89    \par How to use
90
91    The main part of lock-free programming is SMR, so-called garbage collector,  for safe memory reclamation.
92    The library provides several types of SMR schemes. One of widely used and well-tested is Hazard Pointer
93    memory reclamation schema discovered by M. Micheal and implemented in the library as \p cds::gc::HP class.
94    Usually, the application is based on only one type of GC.
95
96    In the next example we mean that you use Hazard Pointer \p cds::gc::HP - based containers.
97
98     First, in your code you should initialize \p cds library and Hazard Pointer in \p main() function:
99     \code
100     #include <cds/init.h>       // for cds::Initialize and cds::Terminate
101     #include <cds/gc/hp.h>      // for cds::HP (Hazard Pointer) SMR
102
103     int main(int argc, char** argv)
104     {
105         // Initialize libcds
106         cds::Initialize();
107
108         {
109             // Initialize Hazard Pointer singleton
110             cds::gc::HP hpGC;
111
112             // If main thread uses lock-free containers
113             // the main thread should be attached to libcds infrastructure
114             cds::threading::Manager::attachThread();
115
116             // Now you can use HP-based containers in the main thread
117             //...
118         }
119
120         // Terminate libcds
121         cds::Terminate();
122     }
123     \endcode
124
125     Second, any of your thread should be attached to \p cds infrastructure.
126     \code
127     #include <cds/gc/hp.h>
128
129     int myThreadEntryPoint(void *)
130     {
131         // Attach the thread to libcds infrastructure
132         cds::threading::Manager::attachThread();
133
134         // Now you can use HP-based containers in the thread
135         //...
136
137         // Detach thread when terminating
138         cds::threading::Manager::detachThread();
139     }
140     \endcode
141
142     After that, you can use \p cds lock-free containers safely without any external synchronization.
143
144     In some cases, you should work in an external thread. For example, your application
145     is a plug-in for a server that calls your code in a thread that has been created by the server.
146     In this case, you should use persistent mode of garbage collecting. In this mode, the thread attaches
147     to the GC singleton only if it is not attached yet and never call detaching:
148     \code
149     #include <cds/gc/hp.h>
150
151     int plugin_entry_point()
152     {
153         // Attach the thread if it is not attached yet
154         if ( !cds::threading::Manager::isThreadAttached())
155             cds::threading::Manager::attachThread();
156
157         // Do some work with HP-related containers
158         ...
159     }
160     \endcode
161
162
163    \par How to build
164
165    The <b>cds</b> is mostly header-only library. Only small part of library related to GC core functionality
166    should be compiled.
167
168    External dependenies: the tests depends on:
169    - \p boost.thread (thread-loal storage support), boost.system
170    - \p google-test
171
172    \par Windows build
173
174    Prerequisites: for building <b>cds</b> library and test suite you need:
175     - <a href="http://www.activestate.com/activeperl/downloads">perl</a> installed; \p PATH environment variable
176         should contain full path to Perl binary. Perl is used to generate large dictionary for testing purpose;
177     - <a href="http://www.boost.org/">boost library</a> 1.51 and above. You should create environment variable
178         \p BOOST_PATH containing full path to \p boost root directory (for example, <tt>C:\\libs\\boost_1_57_0</tt>).
179
180    Open solution file <tt>cds\projects\vc14\cds.sln</tt> with Microsoft VisualStudio 2015.
181    The solution contains \p cds project and a lot of test projects. Just build the library using solution.
182
183    <b>Warning</b>: the solution depends on \p BOOST_PATH environment variable that specifies full path
184    to \p boost library root directory. The test projects search \p boost libraries in:
185    - for 32bit: <tt>\$(BOOST_PATH)/stage/lib</tt>, <tt>\$(BOOST_PATH)/stage32/lib</tt>, and <tt>\$(BOOST_PATH)/bin</tt>.
186    - for 64bit: <tt>\$(BOOST_PATH)/stage64/lib</tt> and <tt>\$(BOOST_PATH)/bin</tt>.
187
188    All tests are based on googletest framework. The following environment variables specify
189    where to find gtest include and library directories:
190    - \p GTEST_ROOT - gtest root directory. <tt>\$(GTEST_ROOT)/include</tt> specifies full path to
191         gtest include files;
192    - \p GTEST_LIB64 - the path to 64bit gtest library dir;
193    - \p GTEST_LIB32 - the path to 32bit gtest library dir.
194
195    \par *NIX build
196
197    For Unix-like systems GCC and Clang compilers are supported.
198    Use GCC 4.8+ compiler or Clang 3.6+ to build <b>cds</b> library with CMake.
199    See accompanying file <tt>/build/cmake/readme.md</tt> for more info.
200
201    @note Important for GCC compiler: all your projects that use \p libcds must be compiled with <b>-fno-strict-aliasing</b>
202    compiler flag.
203
204 */
205
206
207 /// The main library namespace
208 namespace cds {}
209
210 /*
211     \brief Basic typedefs and defines
212
213     You do not need include this header directly. All library header files depends on defs.h and include it.
214
215     Defines macros:
216
217     CDS_COMPILER        Compiler:
218                     - CDS_COMPILER_MSVC     Microsoft Visual C++
219                     - CDS_COMPILER_GCC      GNU C++
220                     - CDS_COMPILER_CLANG    clang
221                     - CDS_COMPILER_UNKNOWN  unknown compiler
222
223     CDS_COMPILER__NAME    Character compiler name
224
225     CDS_COMPILER_VERSION    Compliler version (number)
226
227     CDS_BUILD_BITS    Resulting binary code:
228                     - 32        32bit
229                     - 64        64bit
230                     - -1        undefined
231
232     CDS_POW2_BITS    CDS_BUILD_BITS == 2**CDS_POW2_BITS
233
234     CDS_PROCESSOR_ARCH    The processor architecture:
235                     - CDS_PROCESSOR_X86     Intel x86 (32bit)
236                     - CDS_PROCESSOR_AMD64   Amd64, Intel x86-64 (64bit)
237                     - CDS_PROCESSOR_IA64    Intel IA64 (Itanium)
238                     - CDS_PROCESSOR_SPARC   Sparc
239                     - CDS_PROCESSOR_PPC64   PowerPC64
240                     - CDS_PROCESSOR_ARM7    ARM v7
241                     - CDS_PROCESSOR_ARM8    ARM v8
242                     - CDS_PROCESSOR_UNKNOWN undefined processor architecture
243
244     CDS_PROCESSOR__NAME    The name (string) of processor architecture
245
246     CDS_OS_TYPE        Operating system type:
247                     - CDS_OS_UNKNOWN        unknown OS
248                     - CDS_OS_PTHREAD        unknown OS with pthread
249                     - CDS_OS_WIN32          Windows 32bit
250                     - CDS_OS_WIN64          Windows 64bit
251                     - CDS_OS_LINUX          Linux
252                     - CDS_OS_SUN_SOLARIS    Sun Solaris
253                     - CDS_OS_HPUX           HP-UX
254                     - CDS_OS_AIX            IBM AIX
255                     - CDS_OS_BSD            FreeBSD, OpenBSD, NetBSD - common flag
256                     - CDS_OS_FREE_BSD       FreeBSD
257                     - CDS_OS_OPEN_BSD       OpenBSD
258                     - CSD_OS_NET_BSD        NetBSD
259                     - CDS_OS_MINGW          MinGW
260                     - CDS_OS_OSX            Apple OS X
261
262     CDS_OS__NAME        The name (string) of operating system type
263
264     CDS_OS_INTERFACE OS interface:
265                     - CDS_OSI_UNIX             Unix (POSIX)
266                     - CDS_OSI_WINDOWS          Windows
267
268
269     CDS_BUILD_TYPE    Build type: 'RELEASE' or 'DEBUG' string
270
271 */
272
273 #if defined(_DEBUG) || !defined(NDEBUG)
274 #    define    CDS_DEBUG
275 #    define    CDS_BUILD_TYPE    "DEBUG"
276 #else
277 #    define    CDS_BUILD_TYPE    "RELEASE"
278 #endif
279
280 /// Unused function argument
281 #define CDS_UNUSED(x)   (void)(x)
282
283 // Supported compilers:
284 #define CDS_COMPILER_MSVC        1
285 #define CDS_COMPILER_GCC         2
286 #define CDS_COMPILER_INTEL       3
287 #define CDS_COMPILER_CLANG       4
288 #define CDS_COMPILER_UNKNOWN    -1
289
290 // Supported processor architectures:
291 #define CDS_PROCESSOR_X86       1
292 #define CDS_PROCESSOR_IA64      2
293 #define CDS_PROCESSOR_SPARC     3
294 #define CDS_PROCESSOR_AMD64     4
295 #define CDS_PROCESSOR_PPC64     5   // PowerPC 64bit
296 #define CDS_PROCESSOR_ARM7      7
297 #define CDS_PROCESSOR_ARM8      8
298 #define CDS_PROCESSOR_UNKNOWN   -1
299
300 // Supported OS interfaces
301 #define CDS_OSI_UNKNOWN          0
302 #define CDS_OSI_UNIX             1
303 #define CDS_OSI_WINDOWS          2
304
305 // Supported operating systems (value of CDS_OS_TYPE):
306 #define CDS_OS_UNKNOWN          -1
307 #define CDS_OS_WIN32            1
308 #define CDS_OS_WIN64            5
309 #define CDS_OS_LINUX            10
310 #define CDS_OS_SUN_SOLARIS      20
311 #define CDS_OS_HPUX             30
312 #define CDS_OS_AIX              50  // IBM AIX
313 #define CDS_OS_FREE_BSD         61
314 #define CDS_OS_OPEN_BSD         62
315 #define CDS_OS_NET_BSD          63
316 #define CDS_OS_MINGW            70
317 #define CDS_OS_OSX              80
318 #define CDS_OS_PTHREAD          100
319
320 #if defined(_MSC_VER)
321 #   if defined(__ICL) || defined(__INTEL_COMPILER)
322 #       define CDS_COMPILER CDS_COMPILER_INTEL
323 #   elif defined(__clang__)
324 #       define CDS_COMPILER CDS_COMPILER_CLANG
325 #   else
326 #       define CDS_COMPILER CDS_COMPILER_MSVC
327 #   endif
328 #elif defined(__clang__)    // Clang checking must be before GCC since Clang defines __GCC__ too
329 #   define CDS_COMPILER CDS_COMPILER_CLANG
330 #elif defined( __GCC__ ) || defined(__GNUC__)
331 #   if defined(__ICL) || defined(__INTEL_COMPILER)
332 #       define CDS_COMPILER CDS_COMPILER_INTEL
333 #   else
334 #       define CDS_COMPILER CDS_COMPILER_GCC
335 #   endif
336 #else
337 #    define CDS_COMPILER CDS_COMPILER_UNKNOWN
338 #endif  // Compiler choice
339
340
341 // CDS_VERIFY: Debug - assert(_expr); Release - _expr
342 #ifdef CDS_DEBUG
343 #   define CDS_VERIFY( _expr )       assert( _expr )
344 #   define CDS_VERIFY_FALSE( _expr ) assert( !( _expr ))
345 #   define CDS_DEBUG_ONLY( _expr )        _expr
346 #else
347 #   define CDS_VERIFY( _expr )    _expr
348 #   define CDS_VERIFY_FALSE( _expr ) _expr
349 #   define CDS_DEBUG_ONLY( _expr )
350 #endif
351
352 #ifdef CDS_STRICT
353 #   define CDS_STRICT_DO(_expr)         _expr
354 #else
355 #   define CDS_STRICT_DO( _expr )
356 #endif
357
358 #ifdef CDS_DEBUG
359 #   define cds_assert( expr )       assert( expr )
360 #else
361     static inline void cds_assert( bool expr ) {
362         if ( !expr )
363             abort();
364     }
365 #endif
366
367 // Compiler-specific defines
368 #include <cds/compiler/defs.h>
369
370 #define CDS_NOEXCEPT            CDS_NOEXCEPT_SUPPORT
371 #define CDS_NOEXCEPT_( expr )   CDS_NOEXCEPT_SUPPORT_( expr )
372
373 #ifdef CDS_CXX11_INLINE_NAMESPACE_SUPPORT
374 #   define CDS_CXX11_INLINE_NAMESPACE   inline
375 #else
376 #   define CDS_CXX11_INLINE_NAMESPACE
377 #endif
378
379 /*************************************************************************
380  Common things
381 **************************************************************************/
382
383 namespace cds {
384
385     /// any_type is used as a placeholder for auto-calculated type (usually in \p rebind templates)
386     struct any_type {};
387
388 } // namespace cds
389
390 #endif // #ifndef CDSLIB_DEFS_H