OnixS C++ Eurex T7 Market and Reference Data (EMDI, MDI, RDI, EOBI) Handlers 19.0.3
Users' manual and API documentation
Loading...
Searching...
No Matches
Compiler.h
Go to the documentation of this file.
1/*
2* Copyright Onix Solutions Limited [OnixS]. All rights reserved.
3*
4* This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
5* and international copyright treaties.
6*
7* Access to and use of the software is governed by the terms of the applicable ONIXS Software
8* Services Agreement (the Agreement) and Customer end user license agreements granting
9* a non-assignable, non-transferable and non-exclusive license to use the software
10* for it's own data processing purposes under the terms defined in the Agreement.
11*
12* Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
13* of this source code or associated reference material to any other location for further reproduction
14* or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15*
16* Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17* the terms of the Agreement is a violation of copyright law.
18*/
19#pragma once
20
21#include <sstream>
22
23#if defined (_MSC_VER)
24# define ONIXS_EUREX_EMDI_COMPILER_INFO ("MSVS")
25#elif __GNUC__
26 inline
27 std::string compilerInfo()
28 {
29 std::stringstream ss;
30 ss << "gcc " << __VERSION__ << ", std=" << __cplusplus;
31 return ss.str();
32 }
33# define ONIXS_EUREX_EMDI_COMPILER_INFO (compilerInfo())
34#else
35# define ONIXS_EUREX_EMDI_COMPILER_INFO ("Unknown")
36#endif
37
38
39#if !(defined(ONIXS_EUREX_EMDI_DOXYGEN) && ONIXS_EUREX_EMDI_DOXYGEN)
40
41#include <OnixS/Eurex/MarketData/CompilerDetection.h>
42
43#if defined(_MSC_VER) && defined(_MSVC_LANG)
44# define ONIXS_CURRENT_CXX_STD _MSVC_LANG
45#else
46# define ONIXS_CURRENT_CXX_STD __cplusplus
47#endif
48
49# if defined(ONIXS_EUREX_EMDI_CXX11)
50# if (ONIXS_CURRENT_CXX_STD < 201103L)
51# error C++11 was targeted during the OnixS SDK compilation but is not detected now
52# define ONIXS_TERMINATE_COMPILATION
53# endif
54# endif
55
56# if defined(ONIXS_EUREX_EMDI_CXX14)
57# if (ONIXS_CURRENT_CXX_STD < 201402L)
58# error C++14 was targeted during the OnixS SDK compilation but is not detected now
59# define ONIXS_TERMINATE_COMPILATION
60# endif
61# endif
62
63# if defined(ONIXS_EUREX_EMDI_CXX17)
64# if (ONIXS_CURRENT_CXX_STD < 201703L)
65# error C++17 was targeted during the OnixS SDK compilation but is not detected now
66# define ONIXS_TERMINATE_COMPILATION
67# endif
68# endif
69
70# if defined(ONIXS_EUREX_EMDI_CXX20)
71# if !(ONIXS_CURRENT_CXX_STD > 201703L)
72# error C++20 was targeted during the OnixS SDK compilation but is not detected now
73# define ONIXS_TERMINATE_COMPILATION
74# endif
75# endif
76
77# if defined(ONIXS_TERMINATE_COMPILATION)
78# include <terminate_compilation>
79#endif
80
81# if defined(ONIXS_EUREX_EMDI_COMPILER_IS_GNU) | defined(ONIXS_EUREX_EMDI_COMPILER_IS_Clang)
82# define ONIXS_EUREX_EMDI_COMPILER_IS_GNU_or_Clang
83# endif
84
85# if defined(ONIXS_EUREX_EMDI_COMPILER_IS_GNU_or_Clang)
86
87# define ONIXS_EUREX_EMDI_LIKELY(cond) (__builtin_expect((static_cast<bool>((cond))), true))
88# define ONIXS_EUREX_EMDI_UNLIKELY(cond) (__builtin_expect((static_cast<bool>((cond))), false))
89# define ONIXS_EUREX_EMDI_UNUSED __attribute__((__unused__))
90# define ONIXS_EUREX_EMDI_HOTPATH __attribute__((hot))
91# define ONIXS_EUREX_EMDI_COLDPATH __attribute__((noinline,cold))
92# define ONIXS_EUREX_EMDI_NORETURN __attribute__ ((__noreturn__))
93# define ONIXS_EUREX_EMDI_NODISCARD __attribute__((warn_unused_result))
94# define ONIXS_EUREX_EMDI_PURE
95
96#elif defined(ONIXS_EUREX_EMDI_COMPILER_IS_MSVC)
97
98# define ONIXS_EUREX_EMDI_LIKELY(cond) ((cond))
99# define ONIXS_EUREX_EMDI_UNLIKELY(cond) ((cond))
100# define ONIXS_EUREX_EMDI_PURE
101# define ONIXS_EUREX_EMDI_UNUSED
102# define ONIXS_EUREX_EMDI_HOTPATH
103# define ONIXS_EUREX_EMDI_COLDPATH
104# define ONIXS_EUREX_EMDI_NORETURN __declspec(noreturn)
105# define ONIXS_EUREX_EMDI_NODISCARD _Check_return_
106
107#else
108# error Unsupported compiler
109#endif
110
111#else //#if !(defined(ONIXS_DOXYGEN) && ONIXS_DOXYGEN)
112
113#define ONIXS_EUREX_EMDI_EXPORTED
114#define ONIXS_EUREX_EMDI_NORETURN
115#define ONIXS_EUREX_EMDI_NODISCARD
116
117#define ONIXS_EUREX_EMDI_HOTPATH
118#define ONIXS_EUREX_EMDI_COLDPATH
119#define ONIXS_EUREX_EMDI_PURE
120
121#define ONIXS_EUREX_EMDI_CXX11
122#define ONIXS_EUREX_EMDI_CXX14
123#define ONIXS_EUREX_EMDI_CXX17
124#define ONIXS_EUREX_EMDI_CXX20
125
126#define ONIXS_EUREX_EMDI_UNUSED
127
128#endif