libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
SagittariusCommon.h
Go to the documentation of this file.
1 /*== SAGITTARIUS =====================================================================
2  * Copyright (c) 2012, Jesse K Medley
3  * All rights reserved.
4 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of The University of Washington nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 //== FILEDOC =========================================================================
29 
35 //== BEGINNING OF CODE ===============================================================
36 
37 #ifndef __SAGITTARIUS_COMMON_H_
38 #define __SAGITTARIUS_COMMON_H_
39 
40 //== INCLUDES ========================================================================
41 
43 #include "graphfab/core/config.h"
44 
45 #ifdef __cplusplus
46  #include <string>
47  #include <vector>
48  #include <list>
49  #include <complex>
50 #endif
51 
52 // Standard macros
53 // http://stackoverflow.com/questions/3419332/c-preprocessor-stringify-the-result-of-a-macro
54 #define QUOTE(ARG) #ARG
55 #define EXPAND_AND_QUOTE(ARG) QUOTE(ARG)
56 // http://www.altdevblogaday.com/2011/07/12/abusing-the-c-preprocessor/
57 #define JOIN(x, y) x##y
58 
59 #ifdef __cplusplus
60 namespace Graphfab
61 {
62 #endif
63 
64  //C99 compatibility
65  #ifndef __cplusplus
66  #if __STDC_VERSION__ < 199901L
67  // Gave up
68  //# error "C99 Support is REQUIRED"
69  #endif
70  #endif
71 
72  //maximum unsigned char...
73  #if SAGITTARIUS_PLATFORM == SAGITTARIUS_PLATFORM_LINUX
74  # if SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_64
75  # define PLATFORM_UCHAR_MAX 256
76  # elif SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_32
77  # define PLATFORM_UCHAR_MAX 256
78  # endif
79  #elif SAGITTARIUS_PLATFORM == SAGITTARIUS_PLATFORM_WIN
80  # if SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_64
81  # define PLATFORM_UCHAR_MAX 256
82  # elif SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_32
83  # define PLATFORM_UCHAR_MAX 256
84  # endif
85  #elif SAGITTARIUS_PLATFORM == SAGITTARIUS_PLATFORM_APPLE
86  # if SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_64
87  # define PLATFORM_UCHAR_MAX 256
88  # elif SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_32
89  # define PLATFORM_UCHAR_MAX 256
90  # endif
91  #endif
92 
94  #define SAGITTARIUS_REAL double
95  #define GF_PYREALFMT "d"
96 
98  #define SAGITTARIUS_DEBUG_LEVEL SBNW_DEBUG_LEVEL
99 
100  //C++ typedefs
101 
102  #ifdef __cplusplus
103 
105  typedef SAGITTARIUS_REAL Real;
106 
107  typedef std::complex<Real> Complex;
108 
109  extern const Real pi;
110 
111  #if SAGITTARIUS_USE_WIDE_STRINGS
112  typedef std::wstring _String;
114  #else
115  typedef std::string _String;
116  #endif
117 
119  typedef _String String;
121  typedef _String ASCIIString;
122 
124  typedef unsigned long index_t;
125 
126  #endif//End of C++ typedefs
127 
128 #ifdef __cplusplus
129 } //namespace Graphfab
130 #endif
131 
132 
133 //C typedefs
135 // FIXME: this will cause problems
137 
138 
139 #endif
SAGITTARIUS_REAL Real
Make Real visible to C. Consider letting Real lie in top namespace.
Definition: SagittariusCommon.h:136
#define SAGITTARIUS_REAL
See typedef below.
Definition: SagittariusCommon.h:94
Definition: SagittariusCommon.cpp:38
Platform information (client switch is in here)