IMP logo
IMP Reference Guide  2.6.0
The Integrative Modeling Platform
mpi_config.h
1 // Autogenerated by ../../../../tmp/nightly-build-38828/imp-2.6.0/tools/build/setup_module.py
2 // from ../../../../tmp/nightly-build-38828/imp-2.6.0/tools/build/config_templates/header.h
3 // Do not edit - any changes will be lost!
4 
5 /*
6  * \file IMP/mpi/mpi_config.h
7  * \brief Provide macros to mark functions and classes as exported
8  * from a DLL/.so, and to set up namespaces
9  *
10  * When building the module, IMPMPI_EXPORTS should be defined, and when
11  * using the module externally, it should not be. Classes and functions
12  * declared in the module's headers should then be marked with
13  * IMPMPIEXPORT if they are intended to be part of the API and
14  * they are not defined entirely in a header.
15  *
16  * The Windows build environment requires applications to mark exports in
17  * this way; we use the same markings to set the visibility of ELF symbols
18  * if we have compiler support.
19  *
20  * All code in this module should live in the IMP::mpi namespace.
21  * This is simply achieved by wrapping things with the
22  * IMPMPI_BEGIN_NAMESPACE and IMPMPI_END_NAMESPACE macros.
23  * There are similar macros for module code that is designed to be for
24  * internal use only.
25  *
26  * Copyright 2007-2016 IMP Inventors. All rights reserved.
27  *
28  */
29 
30 #ifndef IMPMPI_CONFIG_H
31 #define IMPMPI_CONFIG_H
32 
33 #include <IMP/kernel_config.h>
34 #include <string>
35 
36 #ifdef _MSC_VER
37 #define NOMINMAX
38 
39 #ifdef IMPMPI_EXPORTS
40 #define IMPMPIEXPORT __declspec(dllexport)
41 #else // EXPORTS
42 #define IMPMPIEXPORT __declspec(dllimport)
43 #endif // EXPORTS
44 
45 #else // _MSC_VER
46 
47 #ifdef GCC_VISIBILITY
48 #define IMPMPIEXPORT __attribute__((visibility("default")))
49 #else // GCC_VISIBILITY
50 #define IMPMPIEXPORT
51 #endif // GCC_VISIBILITY
52 
53 #endif // _MSC_VER
54 
55 #if defined(_MSC_VER) && !defined(SWIG)
56 #ifdef IMPMPI_EXPORTS
57 
58 #define IMPMPI_EXPORT_TEMPLATE(name) \
59  template class __declspec(dllexport) name
60 
61 #else //EXPORTS
62 
63 #define IMPMPI_EXPORT_TEMPLATE(name) \
64  template class __declspec(dllimport) name
65 
66 #endif // EXPORTS
67 
68 #else // MSC and SWIG
69 #define IMPMPI_EXPORT_TEMPLATE(name) IMP_REQUIRE_SEMICOLON_NAMESPACE
70 
71 #endif // MSC and SWIG
72 
73 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
74 
75 #define IMPMPI_BEGIN_NAMESPACE \
76  IMP_COMPILER_ENABLE_WARNINGS namespace IMP{ namespace mpi {
77 
78 #define IMPMPI_END_NAMESPACE } } \
79 IMP_COMPILER_DISABLE_WARNINGS
80 
81 #define IMPMPI_BEGIN_INTERNAL_NAMESPACE IMPMPI_BEGIN_NAMESPACE \
82  namespace internal {
83 
84 #define IMPMPI_END_INTERNAL_NAMESPACE } IMPMPI_END_NAMESPACE
85 
86 #else // SWIG and DOXYGEN
87 #define IMPMPI_BEGIN_NAMESPACE namespace IMP{ namespace mpi {
88 
89 #define IMPMPI_END_NAMESPACE } }
90 
91 #define IMPMPI_BEGIN_INTERNAL_NAMESPACE IMPMPI_BEGIN_NAMESPACE\
92  namespace internal {
93 
94 #define IMPMPI_END_INTERNAL_NAMESPACE } IMPMPI_END_NAMESPACE
95 
96 #endif // SWIG AND DOXYGEN
97 
98 #define IMP_MPI_USE_BOOST_FILESYSTEM
99 #define IMP_MPI_HAS_BOOST_FILESYSTEM 1
100 #define IMP_MPI_USE_BOOST_PROGRAMOPTIONS
101 #define IMP_MPI_HAS_BOOST_PROGRAMOPTIONS 1
102 #define IMP_MPI_USE_BOOST_RANDOM
103 #define IMP_MPI_HAS_BOOST_RANDOM 1
104 #define IMP_MPI_USE_BOOST_SYSTEM
105 #define IMP_MPI_HAS_BOOST_SYSTEM 1
106 
107 // functions are defined explicitly for SWIG
108 namespace IMP{ namespace mpi {
109 /** \name Standard module functions
110  All \imp modules have a set of standard functions to help get information
111  about the module and about files associated with the module.
112  @{
113  */
114 #if !defined(SWIG)
115  IMPMPIEXPORT std::string get_module_version();
116 #endif
117 
118 #if !defined(SWIG)
119  // SWIG will whine about duplicate definitions of function
120  inline std::string get_module_name() { return "IMP::mpi"; }
121 #endif
122 
123  //! Return the full path to one of this module's data files
124  /** To read the data file "data_library" that was placed in the \c data
125  directory of this module, do something like
126  \code
127  std::ifstream in(IMP::mpi::get_data_path("data_library"));
128  \endcode
129  This will ensure that the code works both when %IMP is installed or
130  if used via the \c setup_environment.sh script.
131 
132  \note Each module has its own data directory, so be sure to use
133  this function from the correct module.
134  */
135 #if !defined(SWIG)
136  IMPMPIEXPORT std::string get_data_path(std::string file_name);
137 #endif
138 
139  //! Return the full path to one of this module's example files
140  /** To read the example file "example_protein.pdb" that was placed
141  in the \c examples directory of this module, do something like
142  \code
143  std::ifstream in(IMP::mpi::get_example_path("example_protein.pdb"));
144  \endcode
145  This will ensure that the code works both when %IMP is installed or
146  if used via the \c setup_environment.sh script.
147 
148  \note Each module has its own example directory, so be sure to use
149  this function from the correct module.
150  */
151 #if !defined(SWIG)
152  IMPMPIEXPORT std::string get_example_path(std::string file_name);
153 #endif
154  /** @} */
155 
156 
157 } } //namespace
158 
159 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
160 
161 #include <IMP/Showable.h>
162 #include <IMP/hash.h>
163 
164 namespace IMP{ namespace mpi {
165 using ::IMP::Showable;
166 using ::IMP::operator<<;
167 using ::IMP::hash_value;
168 } } // namespace
169 namespace IMP{ namespace mpi { namespace internal {
170 using ::IMP::Showable;
171 using ::IMP::operator<<;
172 using ::IMP::hash_value;
173 } } } // namespace
174 
175 #endif // !defined(SWIG) && !defined(IMP_DOXYGEN)
176 
177 
178 #include <IMP/compiler_macros.h>
179 
180 #endif /* IMPMPI_CONFIG_H */
181 
182 // Here so it is always parsed
183 
184 #ifdef IMPMPI_DEPRECATED_HEADER
185 #undef IMPMPI_DEPRECATED_HEADER
186 #undef IMPMPI_DEPRECATED_VALUE_DEF
187 #undef IMPMPI_DEPRECATED_VALUE_DECL
188 #undef IMPMPI_DEPRECATED_OBJECT_DEF
189 #undef IMPMPI_DEPRECATED_OBJECT_DECL
190 #undef IMPMPI_DEPRECATED_FUNCTION_DEF
191 #undef IMPMPI_DEPRECATED_FUNCTION_DECL
192 #undef IMPMPI_DEPRECATED_METHOD_DEF
193 #undef IMPMPI_DEPRECATED_METHOD_DECL
194 #undef IMPMPI_DEPRECATED_MACRO
195 #undef IMPMPI_SHOW_WARNINGS
196 #endif
197 
198 // the central modules we can update easily, so don't warn in them
199 #if defined( IMPMPI_COMPILATION) \
200  || defined(SWIG) || defined(IMP_SWIG_WRAPPER) \
201  || defined( IMPMPI_ALL) || defined(IMP_DOXYGEN) \
202  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
203  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
204  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
205  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
206  || defined(IMPSCOREFUNCTOR_COMPILATION) || defined(IMPRMF_COMPILATION) \
207  || defined(IMPGSL_COMPILATION)
208 #define IMPMPI_SHOW_WARNINGS 0
209 #else
210 #define IMPMPI_SHOW_WARNINGS 1
211 #endif
212 
213 // suppress header warnings with all header, SWIG wrapper and in the module
214 #if IMPMPI_SHOW_WARNINGS
215 #define IMPMPI_DEPRECATED_HEADER(version, help_message) \
216  IMP_PRAGMA(message(__FILE__ " is deprecated: " help_message))
217 #define IMPMPI_DEPRECATED_VALUE_DECL(version) \
218  IMP_DEPRECATED_ATTRIBUTE
219 #define IMPMPI_DEPRECATED_OBJECT_DECL(version) \
220  IMP_DEPRECATED_ATTRIBUTE
221 #define IMPMPI_DEPRECATED_FUNCTION_DECL(version) \
222  IMP_DEPRECATED_ATTRIBUTE
223 #define IMPMPI_DEPRECATED_METHOD_DECL(version) \
224  IMP_DEPRECATED_ATTRIBUTE
225 
226 #else //IMPMPI_SHOW_WARNINGS
227 /** See [deprecation support](@ref deprecation). */
228 #define IMPMPI_DEPRECATED_HEADER(version, help_message) \
229 /** See [deprecation support](@ref deprecation). */
230 #define IMPMPI_DEPRECATED_VALUE_DECL(version)
231 /** See [deprecation support](@ref deprecation). */
232 #define IMPMPI_DEPRECATED_OBJECT_DECL(version)
233 /** See [deprecation support](@ref deprecation). */
234 #define IMPMPI_DEPRECATED_FUNCTION_DECL(version)
235 /** See [deprecation support](@ref deprecation). */
236 #define IMPMPI_DEPRECATED_METHOD_DECL(version)
237 
238 #endif // IMPMPI_SHOW_WARNINGS
239 
240 // only warn about it in the all inclusion to cut down on copies
241 #if !defined(IMP_ALL) || defined(SWIG) || defined(IMP_DOXYGEN) \
242  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
243  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
244  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
245  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
246  || defined(IMPSCOREFUNCTOR_COMPILATION)
247 /** See [deprecation support](@ref deprecation). */
248 #define IMPMPI_DEPRECATED_MACRO(version, message)
249 
250 #else
251 #define IMPMPI_DEPRECATED_MACRO(version, message) \
252  IMP_DEPRECATED_MACRO(version, message)
253 #endif
254 
255 /** See [deprecation support](@ref deprecation). */
256 #define IMPMPI_DEPRECATED_VALUE_DEF(version, message) \
257  IMP_DEPRECATED_VALUE_RUNTIME_WARNING(version, message)
258 
259 /** See [deprecation support](@ref deprecation). */
260 #define IMPMPI_DEPRECATED_OBJECT_DEF(version, message) \
261  IMP_DEPRECATED_OBJECT_RUNTIME_WARNING(version, message)
262 
263 /** See [deprecation support](@ref deprecation). */
264 #define IMPMPI_DEPRECATED_FUNCTION_DEF(version, message) \
265  IMP_DEPRECATED_FUNCTION_RUNTIME_WARNING(version, message)
266 
267 /** See [deprecation support](@ref deprecation). */
268 #define IMPMPI_DEPRECATED_METHOD_DEF(version, message) \
269  IMP_DEPRECATED_METHOD_RUNTIME_WARNING(version, message)
270 
271 
272 #include <IMP/compiler_macros.h>
273 
274 #if defined(IMP_EXECUTABLE) && !defined(IMP_EXECUTABLE_WARNINGS)
275 IMP_COMPILER_ENABLE_WARNINGS
276 #define IMP_EXECUTABLE_WARNINGS
277 #endif
IO support.
IO support.
std::string get_example_path(std::string file_name)
Return the full path to one of this module's example files.
Various compiler workarounds.
std::string get_data_path(std::string file_name)
Return the full path to one of this module's data files.