]> Creatis software - crea.git/blob - src/creaSystem.h
#define BOOST_FILESYSTEM_VERSION 2
[crea.git] / src / creaSystem.h
1 /*=========================================================================
2                                                                                 
3   Program:   crea
4   Module:    $RCSfile: creaSystem.h,v $
5   Language:  C++
6   Date:      $Date: 2011/02/22 11:12:40 $
7   Version:   $Revision: 1.13 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/creatools/license.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 /**
20  *\file
21  *\brief contains all the OS depending stuff
22  */
23 #ifndef __creaSystem_h__
24 #define __creaSystem_h__
25
26 #include "creaConfigure.h"
27
28 #define BOOST_FILESYSTEM_VERSION 2
29
30 // We try for Visual 6..????
31 //#pragma warning( disable : 4786)
32
33 //-----------------------------------------------------------------------------
34 //This is needed when compiling in debug mode
35 #ifdef _MSC_VER
36 // 'identifier' : class 'type' needs to have dll-interface to be used by
37 // clients of class 'type2'
38 #pragma warning ( disable : 4251 )
39 // non dll-interface class 'type' used as base for dll-interface class 'type2'
40 #pragma warning ( disable : 4275 )
41 // 'identifier' : identifier was truncated to 'number' characters in the
42 // debug information
43 #pragma warning ( disable : 4786 )
44 //'identifier' : decorated name length exceeded, name was truncated
45 #pragma warning ( disable : 4503 )
46 // C++ exception specification ignored except to indicate a 
47 // function is not __declspec(nothrow)
48 #pragma warning ( disable : 4290 )
49 // signed/unsigned mismatch
50 #pragma warning ( disable : 4018 )
51 // return type for 'identifier' is '' (ie; not a UDT or reference to UDT. Will
52 // produce errors if applied using infix notation
53 #pragma warning ( disable : 4284 )
54 // 'type' : forcing value to bool 'true' or 'false' (performance warning)
55 // //#pragma warning ( disable : 4800 )
56 #endif //_MSC_VER
57
58
59 #include <stdio.h>  // for printf, ...
60 #include <iostream> // for cout, endl, ...
61
62 #ifdef _MSC_VER
63 // Micro$oft related stuff
64 #pragma once
65 #include <conio.h>
66 #include <tchar.h>
67 #else
68 //#include  <curses.h> // for getch
69 #endif //_MSC_VER
70
71 //-----------------------------------------------------------------------------
72 // Micro$oft shared library related stuff
73 //
74 // all the classes that must be visible outside the crea library 
75 // should be defined as :
76 // class CREA_EXPORT ClassName 
77 // instead of :
78 // class ClassName
79
80
81 /*
82 // Useless ?
83 #if defined(_WIN32) 
84 //&& defined(BUILD_SHARED_LIBS)
85   #ifdef CREA_EXPORTS2
86     #define CREA_EXPORT2 export
87   #else
88     #define CREA_EXPORT2 
89   #endif
90 #else
91   #define CREA_EXPORT2
92 #endif // defined(_WIN32) && defined(BUILD_SHARED_LIBS)
93 */
94 //#define TEST toto
95
96
97 #if defined(_WIN32) && defined(CREA_BUILD_SHARED)
98   #ifdef CREA_EXPORT_SYMBOLS
99     #define CREA_EXPORT __declspec( dllexport ) 
100   #else
101         #define CREA_EXPORT __declspec( dllimport )
102   #endif
103   #define CREA_CDECL __cdecl
104 #else
105   #define CREA_EXPORT
106   #define CREA_CDECL
107 #endif // defined(_WIN32) && defined(CREA_BUILD_SHARED)
108
109
110 #ifdef __BORLANDC__
111 #include <mem.h>
112 #endif //__BORLANDC__
113
114
115
116 // ----------------------------------------------------------------------------
117 // wx headers
118 // ----------------------------------------------------------------------------
119 //#include "creaWx.h"
120
121 /*
122 #ifdef _USE_WXWIDGETS_
123 #include "wx/wxprec.h"
124 #include <wx/datetime.h>
125 #ifndef WX_PRECOMP
126 #   include <wx/wx.h>
127 #endif //WX_PRECOMP
128
129 #include <wx/log.h>
130
131 #ifdef __WXGTK__
132 # include <locale.h>
133 #endif //__WXGTK__
134
135 #endif //_USE_WXWIDGETS_
136 */
137 //-----------------------------------------------------------------------------
138
139 //-----------------------------------------------------------------------------
140 // Version
141 #include <string.h>
142
143 namespace crea
144 {
145 #define CREA_STRINGIFY(A) #A
146 #define CREA_STRINGIFY_SYMBOL(A) CREA_STRINGIFY(A)
147
148   extern "C" 
149   {
150     CREA_EXPORT inline const std::string& CREA_CDECL GetVersion() 
151     {
152       static const std::string v(CREA_STRINGIFY_SYMBOL(CREA_VERSION));
153       return v;
154     }
155   }
156
157 }
158 //-----------------------------------------------------------------------------
159
160 //-----------------------------------------------------------------------------
161 /*
162 #ifdef _WIN32
163 typedef  signed char         int8_t;
164 typedef  signed short        int16_t;
165 typedef  signed int          int32_t;
166 typedef  unsigned char       uint8_t;
167 typedef  unsigned short      uint16_t;
168 typedef  unsigned int        uint32_t;
169 #else 
170 #include <stdint.h>
171 #include <inttypes.h> 
172 #endif
173 */
174
175 #ifdef CMAKE_HAVE_STDINT_H
176    #include <stdint.h>
177 #else
178 #ifdef CMAKE_HAVE_INTTYPES_H
179    // Old system only have this
180    #include <inttypes.h>   // For uint8_t uint16_t and uint32_t
181 #else
182    //#include "XXX.h"
183 // Broken plateforms do not respect C99 and do not provide those typedef
184 // Special case for recent Borland compiler, comes with stdint.h
185 #if defined(_MSC_VER) || defined(__BORLANDC__) && (__BORLANDC__ < 0x0560)  \
186                       || defined(__MINGW32__)
187 typedef  signed char         int8_t;
188 typedef  signed short        int16_t;
189 typedef  signed int          int32_t;
190 typedef  unsigned char       uint8_t;
191 typedef  unsigned short      uint16_t;
192 typedef  unsigned int        uint32_t;
193
194 /// \todo Find a clever way to deal with int64_t, uint64_t
195
196 #else
197 #error "Sorry your plateform is not supported"
198 #endif // defined(_MSC_VER) || defined(__BORLANDC__) && (__BORLANDC__ < 0x0560)  || defined(__MINGW32__)
199 #endif // CMAKE_HAVE_INTTYPES_H
200 #endif // CMAKE_HAVE_STDINT_H
201
202 // Basically for VS6 and bcc 5.5.1:
203 #ifndef UINT32_MAX
204 #define UINT32_MAX    (4294967295U)
205 #endif
206
207 //-----------------------------------------------------------------------------
208
209
210 //-----------------------------------------------------------------------------
211 namespace crea
212 {
213  
214   /// System related stuff
215   struct System
216   {
217     /// returns true iff the program has a tty
218     static int HasTTY(); 
219     CREA_EXPORT static int GetAppPath(char *pname, size_t pathsize);
220     CREA_EXPORT static std::string GetDllAppPath(std::string &nomdll);
221     CREA_EXPORT static std::string GetDllAppPath(const char *nomdll);   
222     CREA_EXPORT static std::string GetExecutablePath();
223     CREA_EXPORT static void createDirectory(const char* directorypath);
224   };
225
226 } // namespace crea
227 //-----------------------------------------------------------------------------
228
229     // file separator
230 #if defined(_WIN32)
231 #define VALID_FILE_SEPARATOR "\\"
232 #define INVALID_FILE_SEPARATOR "/"
233 #else
234 #define INVALID_FILE_SEPARATOR "\\"
235 #define VALID_FILE_SEPARATOR "/"
236 #endif
237
238 #endif