-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcppfmu_common.hpp
408 lines (343 loc) · 11.4 KB
/
cppfmu_common.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/* Copyright 2016-2019, SINTEF Ocean.
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef CPPFMU_COMMON_HPP
#define CPPFMU_COMMON_HPP
#include <algorithm> // std::find()
#include <cstddef> // std::size_t
#include <functional> // std::function
#include <memory> // std::shared_ptr, std::unique_ptr
#include <new> // std::bad_alloc
#include <stdexcept> // std::runtime_error
#include <string> // std::basic_string, std::char_traits
#include <utility> // std::forward
#include <vector> // std::vector
extern "C"
{
#ifdef CPPFMU_USE_FMI_1_0
# include <fmiFunctions.h>
#else
# include <fmi2Functions.h>
#endif
}
// CPPFMU_NOEXCEPT evaluates to 'noexcept' on compilers that support it.
#if (__cplusplus >= 201103L) || (defined(_MSC_VER) && _MSC_VER >= 1900)
# define CPPFMU_NOEXCEPT noexcept
#else
# define CPPFMU_NOEXCEPT
#endif
namespace cppfmu
{
// Aliases for FMI types and enums
#ifdef CPPFMU_USE_FMI_1_0
typedef fmiReal FMIReal;
typedef fmiInteger FMIInteger;
typedef fmiBoolean FMIBoolean;
typedef fmiString FMIString;
typedef char FMIByte; // doesn't exist in FMI 1
typedef fmiCallbackFunctions FMICallbackFunctions;
typedef fmiCallbackAllocateMemory FMICallbackAllocateMemory;
typedef fmiCallbackFreeMemory FMICallbackFreeMemory;
typedef fmiCallbackLogger FMICallbackLogger;
typedef fmiComponent FMIComponent;
typedef fmiComponent FMIComponentEnvironment;
typedef fmiStatus FMIStatus;
typedef void* FMIFMUState; // doesn't exist in FMI 1
typedef fmiValueReference FMIValueReference;
const FMIBoolean FMIFalse = fmiFalse;
const FMIBoolean FMITrue = fmiTrue;
const FMIStatus FMIOK = fmiOK;
const FMIStatus FMIWarning = fmiWarning;
const FMIStatus FMIDiscard = fmiDiscard;
const FMIStatus FMIError = fmiError;
const FMIStatus FMIFatal = fmiFatal;
const FMIStatus FMIPending = fmiPending;
#else
typedef fmi2Real FMIReal;
typedef fmi2Integer FMIInteger;
typedef fmi2Boolean FMIBoolean;
typedef fmi2String FMIString;
typedef fmi2Byte FMIByte;
typedef fmi2CallbackFunctions FMICallbackFunctions;
typedef fmi2CallbackAllocateMemory FMICallbackAllocateMemory;
typedef fmi2CallbackFreeMemory FMICallbackFreeMemory;
typedef fmi2CallbackLogger FMICallbackLogger;
typedef fmi2Component FMIComponent;
typedef fmi2ComponentEnvironment FMIComponentEnvironment;
typedef fmi2FMUstate FMIFMUState;
typedef fmi2Status FMIStatus;
typedef fmi2ValueReference FMIValueReference;
const FMIBoolean FMIFalse = fmi2False;
const FMIBoolean FMITrue = fmi2True;
const FMIStatus FMIOK = fmi2OK;
const FMIStatus FMIWarning = fmi2Warning;
const FMIStatus FMIDiscard = fmi2Discard;
const FMIStatus FMIError = fmi2Error;
const FMIStatus FMIFatal = fmi2Fatal;
const FMIStatus FMIPending = fmi2Pending;
#endif
// ============================================================================
// ERROR HANDLING
// ============================================================================
/* Exception class that signals "fatal error", i.e. an error which means that
* not only is the current model instance invalid, but all other instances of
* the same model too.
*/
class FatalError : public std::runtime_error
{
public:
FatalError(const char* msg) CPPFMU_NOEXCEPT : std::runtime_error{msg} { }
};
// ============================================================================
// MEMORY MANAGEMENT
// ============================================================================
/* A wrapper class for the FMI memory allocation and deallocation functions.
* Alloc() and Free() simply forward to the functions provided by the
* simulation environment.
*/
class Memory
{
public:
explicit Memory(const FMICallbackFunctions& callbackFunctions)
: m_alloc{callbackFunctions.allocateMemory}
, m_free{callbackFunctions.freeMemory}
{
}
// Allocates memory for 'nObj' objects of size 'size'.
void* Alloc(std::size_t nObj, std::size_t size) CPPFMU_NOEXCEPT
{
return m_alloc(nObj, size);
}
// Frees the memory pointed to by 'ptr'.
void Free(void* ptr) CPPFMU_NOEXCEPT
{
m_free(ptr);
}
bool operator==(const Memory& rhs) const CPPFMU_NOEXCEPT
{
return m_alloc == rhs.m_alloc && m_free == rhs.m_free;
}
bool operator!=(const Memory& rhs) const CPPFMU_NOEXCEPT
{
return !operator==(rhs);
}
private:
FMICallbackAllocateMemory m_alloc;
FMICallbackFreeMemory m_free;
};
/* A class that satisfies the Allocator concept, and which can therefore be
* used to manage memory for the standard C++ containers.
*
* For information about the various member functions, we refer to reference
* material for the Allocator concept, e.g.:
* http://en.cppreference.com/w/cpp/concept/Allocator
*/
template<typename T>
class Allocator
{
public:
using value_type = T;
explicit Allocator(const Memory& memory) : m_memory{memory} { }
template<typename U>
Allocator(const Allocator<U>& other) CPPFMU_NOEXCEPT
: m_memory{other.m_memory}
{
}
T* allocate(std::size_t n)
{
if (n == 0) return nullptr;
if (auto m = m_memory.Alloc(n, sizeof(T))) {
return reinterpret_cast<T*>(m);
} else {
throw std::bad_alloc();
}
}
void deallocate(T* p, std::size_t n) CPPFMU_NOEXCEPT
{
if (n > 0) {
m_memory.Free(p);
}
}
bool operator==(const Allocator& rhs) const CPPFMU_NOEXCEPT
{
return m_memory == rhs.m_memory;
}
bool operator!=(const Allocator& rhs) const CPPFMU_NOEXCEPT
{
return !operator==(rhs);
}
// -------------------------------------------------------------------------
// None of the following are required by C++11, yet they are, variously,
// required by GCC and MSVC.
template<typename U>
struct rebind { using other = Allocator<U>; };
#if defined(__GNUC__) && (__GNUC__ < 5)
using pointer = T*;
using const_pointer = const T*;
using reference = T&;
using const_reference = const T&;
using size_type = std::size_t;
using difference_type = std::ptrdiff_t;
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
Allocator() : m_memory{FMICallbackFunctions{}} { }
#pragma GCC diagnostic pop
#endif
#ifdef _MSC_VER
template<typename U, typename... Args>
void construct(U* p, Args&&... args)
{
::new((void*) p) U(std::forward<Args>(args)...);
}
template<typename U>
void destroy(U* p)
{
p->~U();
}
#endif
// -------------------------------------------------------------------------
private:
template<typename U>
friend class Allocator;
Memory m_memory;
};
// An alias for a string type that uses cppfmu::Allocator to manage memory.
using String = std::basic_string<char, std::char_traits<char>, Allocator<char>>;
// Returns a String whose contents are equal to those of 'string'.
inline String CopyString(const Memory& memory, FMIString string)
{
return String{string, Allocator<char>{memory}};
}
/* Allocates memory for a single object of type T and runs its constructor,
* in the style of the built-in 'new' operator. Any arguments in 'args'
* are forwarded to the constructor.
*/
template<typename T, typename... Args>
T* New(const Memory& memory, Args&&... args)
{
auto alloc = Allocator<T>{memory};
const auto ptr = std::allocator_traits<decltype(alloc)>::allocate(alloc, 1);
try {
std::allocator_traits<decltype(alloc)>::construct(
alloc,
ptr,
std::forward<Args>(args)...);
} catch (...) {
std::allocator_traits<decltype(alloc)>::deallocate(alloc, ptr, 1);
throw;
}
return ptr;
}
/* Destroys and deallocates memory for an object of type T, in the style of
* the built-in 'delete' operator.
*/
template<typename T>
void Delete(const Memory& memory, T* obj) CPPFMU_NOEXCEPT
{
auto alloc = Allocator<T>{memory};
std::allocator_traits<decltype(alloc)>::destroy(alloc, obj);
std::allocator_traits<decltype(alloc)>::deallocate(alloc, obj, 1);
}
/* An alias for a std::unique_ptr specialisation where the deleter is general
* and independent of the type of the object pointed to. This is used for the
* return type of AllocateUnique() below.
*/
template<typename T>
using UniquePtr = std::unique_ptr<T, std::function<void(void*)>>;
/* Creates an object of type T which is managed by a std::unique_ptr.
* The object is created using cppfmu::New(), and when the time comes, it is
* destroyed using cppfmu::Delete().
*/
template<typename T, typename... Args>
UniquePtr<T> AllocateUnique(const Memory& memory, Args&&... args)
{
return UniquePtr<T>{
New<T>(memory, std::forward<Args>(args)...),
[memory] (void* ptr) { Delete(memory, reinterpret_cast<T*>(ptr)); }};
}
// ============================================================================
// LOGGING
// ============================================================================
namespace detail
{
template<typename Container, typename Item>
bool CanFind(const Container& container, const Item& item)
{
return container.end() != std::find(
container.begin(),
container.end(),
item);
}
}
/* A class that can be used to log messages from model code. All messages are
* forwarded to the logging facilities provided by the simulation environment.
*/
class Logger
{
public:
struct Settings
{
Settings(const Memory& memory)
: loggedCategories(Allocator<String>{memory})
{ }
bool debugLoggingEnabled = false;
std::vector<String, Allocator<String>> loggedCategories;
};
Logger(
FMIComponentEnvironment component,
String instanceName,
FMICallbackFunctions callbackFunctions,
std::shared_ptr<Settings> settings)
: m_component{component}
, m_instanceName(std::move(instanceName))
, m_fmiLogger{callbackFunctions.logger}
, m_settings{settings}
{
}
// Logs a message.
template<typename... Args>
void Log(
FMIStatus status,
FMIString category,
FMIString message,
Args&&... args) CPPFMU_NOEXCEPT
{
if (m_settings->loggedCategories.empty() ||
detail::CanFind(m_settings->loggedCategories, category)) {
m_fmiLogger(
m_component,
m_instanceName.c_str(),
status,
category,
message,
std::forward<Args>(args)...);
}
}
/* Logs a debug message (if debug logging is enabled by the simulation
* environment).
*/
template<typename... Args>
void DebugLog(
FMIStatus status,
FMIString category,
FMIString message,
Args&&... args) CPPFMU_NOEXCEPT
{
if (m_settings->debugLoggingEnabled) {
Log(
status,
category,
message,
std::forward<Args>(args)...);
}
}
private:
const FMIComponentEnvironment m_component;
const String m_instanceName;
const FMICallbackLogger m_fmiLogger;
std::shared_ptr<Settings> m_settings;
};
} // namespace cppfmu
#endif // header guard