Tulip  4.8.0
Better Visualization Through Research
 All Classes Files Functions Variables Enumerations Enumerator Properties Groups Pages
tulipconf.h
1 /*
2  *
3  * This file is part of Tulip (www.tulip-software.org)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 ///@cond DOXYGEN_HIDDEN
20 
21 #ifndef TULIPCONF_H
22 #define TULIPCONF_H
23 
24 /**
25  * @brief this file contains various helper macros and functions to have a true cross-platform compilation.
26  *
27  */
28 
29 #define STRINGIFY(PARAM) STRINGIFY_INTERNAL(PARAM)
30 #define STRINGIFY_INTERNAL(PARAM) #PARAM
31 
32 //MSVC and GCC in c++11 mode use decltype instead of typeof
33 #if !defined(_MSC_VER)
34 # if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
35 # define TYPEOF decltype
36 # else
37 # define TYPEOF typeof
38 # endif
39 #endif
40 
41 #if defined(_MSC_VER)
42 // disable some annoying Visual Studio warnings
43 #pragma warning(disable: 4251) //member is not dllexport
44 #pragma warning(disable: 4267) //conversion from 'size_t' to 'type', possible loss of data
45 #pragma warning(disable: 4275) //base class is not dllexport
46 #pragma warning(disable: 4244) //conversion to (or from) smaller integer type
47 #pragma warning(disable: 4355) //'this' pointer used in initializer list
48 #pragma warning(disable: 4800) //non-bool value coerced into bool (e.g. bool a = 5;)
49 #pragma warning(disable: 4503) //decorated name too long, truncated
50 #pragma warning(disable: 4344) //template specialisation results in different function being called (getProperty<>)
51 
52 // disable deprecated warnings when compiling the tulip dlls, as MSVC is overly verbose with deprecation
53 // (even if a deprecated function is not used, warnings are issued)
54 #if defined(DLL_TULIP) || defined(DLL_TULIP_GL) || defined(DLL_TULIP_QT) || defined(DLL_TULIP_QT2)
55 #pragma warning(disable: 4996) //deprecated functions
56 #endif
57 
58 //MSVC 2010 has a different keyword for typeof, and deprecated
59 # if _MSC_VER >= 1600
60 # define _DEPRECATED __declspec(deprecated)
61 # define _DEPRECATED_TYPEDEF(type, deprecated_type) typedef _DEPRECATED type deprecated_type
62 # define TYPEOF decltype
63 # else
64 //MSVC 2008 must use Boost's typeof
65 # include "boost/typeof/typeof.hpp"
66 # define TYPEOF BOOST_TYPEOF
67 # endif
68 
69 # define __PRETTY_FUNCTION__ __FUNCTION__ //MSVC has a different name for pretty_function
70 # define strcasecmp stricmp //strcasecmp does not exists for VC, workaround
71 
72 #include <cmath>
73 
74 static double fabs(int i) {
75  return std::fabs(static_cast<double>(i));
76 }
77 
78 # if _MSC_VER < 1800 // Visual Studio 2013 improved C99 support, no need to redefine some cmath functions
79 
80 // MSVC needs explicit casting of ints ot double, float or long double. Let's just pretend he does not.
81 #include <cstdlib>
82 
83 static double sqrt(int i) {
84  return std::sqrt(static_cast<double>(i));
85 }
86 
87 static double sqrt(unsigned int i) {
88  return std::sqrt(static_cast<double>(i));
89 }
90 
91 static double log(int i) {
92  return std::log(static_cast<double>(i));
93 }
94 
95 static double log(unsigned int i) {
96  return std::log(static_cast<double>(i));
97 }
98 
99 static double floor(int i) {
100  return std::floor(static_cast<double>(i));
101 }
102 
103 static double floor(unsigned int i) {
104  return std::floor(static_cast<double>(i));
105 }
106 
107 static double round(double d) {
108  return std::floor(d + 0.5);
109 }
110 
111 static float strtof(const char* cptr, char** endptr) {
112  return std::strtod(cptr, endptr);
113 }
114 
115 #define isnan(x) ((x) != (x)) //you guessed it, this is a C99 feature, and VC++ does not support C99. workaroud this.
116 #define rint(arg) arg > 0 ? static_cast<int>(std::floor(static_cast<double>(arg))) : static_cast<int>(std::ceil(static_cast<double>(arg))) //Hey, nother C99 feature !
117 
118 # else // _MSC_VER < 1800
119 
120 // for std::min and std::max
121 #include <algorithm>
122 
123 # endif // _MSC_VER < 1800
124 
125 //clang does not define __GNUC_MINOR__, thus having a separate clang #elif seems cleaner than adding defined() in the #else
126 #elif __clang__
127 # define _DEPRECATED __attribute__ ((deprecated))
128 # define _DEPRECATED_TYPEDEF(type, deprecated_type) typedef type deprecated_type _DEPRECATED
129 # define stdext __gnu_cxx
130 
131 // disable some specific C++11 warnings with clang
132 #if __clang_major__ >= 3 && __clang_minor__ >= 4
133 #pragma clang diagnostic ignored "-Wdeprecated-register"
134 #endif
135 
136 //for GCC 4.X
137 #else
138 # define _DEPRECATED __attribute__ ((deprecated))
139 # define _DEPRECATED_TYPEDEF(type, deprecated_type) typedef type deprecated_type _DEPRECATED
140 # define stdext __gnu_cxx
141 # if (__GNUC_MINOR__ < 4 && __GNUC__ < 4)
142 # include <ext/stl_hash_fun.h>
143 # elif (__GNUC_MINOR__ < 3 && __GNUC__ <= 4)
144 # include <ext/hash_fun.h>
145 # elif (__GNUC_MINOR__ > 3 && __GNUC__ >= 4)
146 # include <backward/hash_fun.h>
147 # endif
148 #endif
149 
150 //WIN32 specific defines: dllimport and dllexport stuff
151 #ifdef _WIN32
152 # ifdef DLL_TULIP
153 # define TLP_SCOPE __declspec(dllexport)
154 # else
155 # define TLP_SCOPE __declspec(dllimport)
156 # endif
157 #endif
158 #ifndef TLP_SCOPE
159 # define TLP_SCOPE
160 #endif
161 
162 #ifdef _WIN32
163 # ifdef DLL_TULIP_GL
164 # define TLP_GL_SCOPE __declspec(dllexport)
165 # else
166 # define TLP_GL_SCOPE __declspec(dllimport)
167 # endif
168 #endif
169 #ifndef TLP_GL_SCOPE
170 # define TLP_GL_SCOPE
171 #endif
172 
173 #ifdef _WIN32
174 # ifdef DLL_TULIP_QT
175 # define TLP_QT_SCOPE __declspec(dllexport)
176 # else
177 # define TLP_QT_SCOPE __declspec(dllimport)
178 # endif
179 #endif
180 #ifndef TLP_QT_SCOPE
181 # define TLP_QT_SCOPE
182 #endif
183 
184 #ifdef _WIN32
185 # ifdef DLL_TULIP_PYTHON
186 # define TLP_PYTHON_SCOPE __declspec(dllexport)
187 # else
188 # define TLP_PYTHON_SCOPE __declspec(dllimport)
189 # endif
190 #endif
191 #ifndef TLP_PYTHON_SCOPE
192 # define TLP_PYTHON_SCOPE
193 #endif
194 
195 #ifdef _WIN32
196 # ifdef DLL_TULIP_OGDF
197 # define TLP_OGDF_SCOPE __declspec(dllexport)
198 # else
199 # define TLP_OGDF_SCOPE __declspec(dllimport)
200 # endif
201 #endif
202 #ifndef TLP_OGDF_SCOPE
203 # define TLP_OGDF_SCOPE
204 #endif
205 
206 #include <ostream>
207 
208 namespace tlp {
209 /**
210  *
211  * @brief return the ostream used for the output of debug messages
212  */
213 extern TLP_SCOPE std::ostream& debug();
214 /**
215  *
216  * @brief set the ostream used for the output debug messages
217  */
218 extern TLP_SCOPE void setDebugOutput(std::ostream& os);
219 /**
220  *
221  * @brief return the ostream used for the output of warning messages
222  */
223 extern TLP_SCOPE std::ostream& warning();
224 /**
225  *
226  * @brief set the ostream used for the output of warning messages
227  */
228 extern TLP_SCOPE void setWarningOutput(std::ostream& os);
229 /**
230  *
231  * @brief return the ostream used for the output of error messages
232  */
233 extern TLP_SCOPE std::ostream& error();
234 /**
235  *
236  * @brief set the ostream used for the output of error messages
237  */
238 extern TLP_SCOPE void setErrorOutput(std::ostream& os);
239 }
240 
241 #endif //TULIPCONF_H
242 ///@endcond