IODA
defs.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 
9 /// \file defs.h
10 /// \brief Common preprocessor definitions used throughout IODA.
11 
12 #ifdef __cplusplus
13 # include <cstddef>
14 #else
15 # include <stddef.h>
16 #endif
17 
18 // Compiler interface warning suppression
19 #ifdef _MSC_FULL_VER
20 //# include <CppCoreCheck/Warnings.h>
21 //# pragma warning(disable: CPPCORECHECK_DECLARATION_WARNINGS)
22 # pragma warning(push)
23 # pragma warning(disable : 4003) // Bug in boost with VS2016.3
24 # pragma warning(disable : 4251) // DLL interface
25 # pragma warning(disable : 4275) // DLL interface
26 // Avoid unnamed objects. Buggy in VS / does not respect attributes telling the compiler to ignore
27 // the check.
28 # pragma warning(disable : 26444)
29 # pragma warning(disable : 4661) // Template definition
30 # pragma warning(disable : 4554) // Eigen Tensor warning
31 # pragma warning(disable : 4996) // Old versions of Eigen may use C++17-deprecated functions.
32 #endif
33 
34 /* Symbol export / import macros */
35 
36 /**
37  * \defgroup ioda_common_macros Common Macros
38  * \brief Common macros that you will see peppered throughout the code. Symbol export, parameter
39  * deprecation, etc. \ingroup ioda_internals
40  * @{
41  *
42  * \def IODA_COMPILER_EXPORTS_VERSION
43  * 0 - when we have no idea what the compiler is.
44  * 1 - when the compiler is like MSVC.
45  * 2 - when the compiler is like GNU, Intel, or Clang.
46  */
47 
48 #if defined(_MSC_FULL_VER)
49 # define IODA_COMPILER_EXPORTS_VERSION 1
50 #elif defined(__INTEL_COMPILER) || defined(__GNUC__) || defined(__MINGW32__) || defined(__clang__)
51 # define IODA_COMPILER_EXPORTS_VERSION 2
52 #else
53 # define IODA_COMPILER_EXPORTS_VERSION 0
54 #endif
55 
56 // Defaults for static libraries
57 
58 /**
59  * \def IODA_SHARED_EXPORT
60  * \brief A tag used to tell the compiler that a symbol should be exported.
61  *
62  * \def IODA_SHARED_IMPORT
63  * \brief A tag used to tell the compiler that a symbol should be imported.
64  *
65  * \def IODA_HIDDEN
66  * \brief A tag used to tell the compiler that a symbol should not be listed,
67  * but it may be referenced from other code modules.
68  *
69  * \def IODA_PRIVATE
70  * \brief A tag used to tell the compiler that a symbol should not be listed,
71  * and it may not be referenced from other code modules.
72  **/
73 
74 #if IODA_COMPILER_EXPORTS_VERSION == 1
75 # define IODA_SHARED_EXPORT __declspec(dllexport)
76 # define IODA_SHARED_IMPORT __declspec(dllimport)
77 # define IODA_HIDDEN
78 # define IODA_PRIVATE
79 #elif IODA_COMPILER_EXPORTS_VERSION == 2
80 # define IODA_SHARED_EXPORT __attribute__((visibility("default")))
81 # define IODA_SHARED_IMPORT __attribute__((visibility("default")))
82 # define IODA_HIDDEN __attribute__((visibility("hidden")))
83 # define IODA_PRIVATE __attribute__((visibility("internal")))
84 #else
85 # pragma message( \
86  "ioda - defs.h warning: compiler is unrecognized. Shared libraries may not export their symbols properly.")
87 # define IODA_SHARED_EXPORT
88 # define IODA_SHARED_IMPORT
89 # define IODA_HIDDEN
90 # define IODA_PRIVATE
91 #endif
92 
93 /**
94  * \def IODA_DL
95  * \brief A preprocessor tag that indicates that a symbol is to be exported/imported.
96  *
97  * If ioda_SHARED is defined, then the target library both
98  * exports and imports. If not defined, then it is a static library.
99  *
100  *
101  **/
102 
103 #if ioda_SHARED
104 # ifdef ioda_EXPORTING
105 # define IODA_DL IODA_SHARED_EXPORT
106 # else
107 # define IODA_DL IODA_SHARED_IMPORT
108 # endif
109 #else
110 # define IODA_DL
111 #endif
112 
113 #ifdef __cplusplus
114 
115 namespace ioda {
116 
117 /// Defines the dimensions for a bunch of objects.
118 typedef ptrdiff_t Dimensions_t;
119 
120 /// Used in classification of objects into Groups, Variables, et cetera.
121 enum class ObjectType {
122  /// Used as an input value for filtering.
123  /// Specify this if you want to examine everything.
124  Ignored,
125  /// Support for this object type is unimplemented in this version of ioda-engines.
126  Unimplemented,
127  /// Object is a Group
128  Group,
129  /// Object is a Variable
130  Variable
131 };
132 } // namespace ioda
133 
134 #endif // __cplusplus