Newer
Older
Podhorszki, Norbert
committed
* Engine.h
*
* Created on: Nov 7, 2016
* Author: wfg
*/
#ifndef ENGINE_H_
#define ENGINE_H_
/// \cond EXCLUDE_FROM_DOXYGEN
#include <memory> //std::shared_ptr
#include <string>
#include <utility> //std::pair
Podhorszki, Norbert
committed
#ifdef ADIOS_NOMPI
Podhorszki, Norbert
committed
#else
#include "ADIOSTypes.h"
#include "core/Capsule.h"
#include "core/Transform.h"
#include "core/Transport.h"
#include "core/Variable.h"
#include "core/VariableCompound.h"
typedef enum { NONBLOCKINGREAD = 0, BLOCKINGREAD = 1 } PerformReadMode;
typedef enum {
APPEND = 0,
UPDATE = 1, // writer advance modes
NEXT_AVAILABLE = 2,
LATEST_AVAILABLE = 3, // reader advance modes
} AdvanceMode;
* Base class for Engine operations managing shared-memory, and buffer and
* variables transform and transport operations
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
MPI_Comm m_MPIComm = MPI_COMM_SELF;
const std::string m_EngineType; ///< from derived class
const std::string m_Name; ///< name used for this engine
const std::string
m_AccessMode; ///< accessMode for buffers used by this engine
const Method &m_Method; ///< associated method containing engine metadata
int m_RankMPI = 0; ///< current MPI rank process
int m_SizeMPI = 1; ///< current MPI processes size
const std::string m_HostLanguage = "C++"; ///< default host language
/**
* Unique constructor
* @param adios
* @param engineType
* @param name
* @param accessMode
* @param mpiComm
* @param method
* @param debugMode
* @param nthreads
* @param endMessage
*/
Engine(ADIOS &adios, const std::string engineType, const std::string name,
const std::string accessMode, MPI_Comm mpiComm, const Method &method,
const bool debugMode, const unsigned int nthreads,
const std::string endMessage);
virtual ~Engine();
/** @brief Let ADIOS allocate memory for a variable, which can be used by the
* user.
*
* To decrease the cost of copying memory, a user may let ADIOS allocate the
* memory for a user-variable,
* according to the definition of an ADIOS-variable. The memory will be part
* of the ADIOS buffer used
* by the engine and it lives until the engine (file, stream) is closed.
* A variable that has been allocated this way (cannot have its local
* dimensions changed, and AdvanceAsync() should be
* used instead of Advance() and the user-variable must not be modified by the
* application until the notification arrives.
* This is required so that any reader can access the written data before the
* application overwrites it.
* @param var Variable with defined local dimensions and offsets in global
* space
* @param fillValue Fill the allocated array with this value
* @return A constant pointer to the non-constant allocated array. User should
* not deallocate this pointer.
*/
template <class T>
inline T *const AllocateVariable(Variable<T> &var, T fillValue = 0)
{
throw std::invalid_argument("ERROR: type not supported for variable " +
var->name + " in call to GetVariable\n");
}
/**
* Needed for DataMan Engine
* @param callback function passed from the user
*/
virtual void SetCallBack(std::function<void(const void *, std::string,
std::string, std::string, Dims)>
callback);
/**
* Write function that adds static checking on the variable to be passed by
* values
* It then calls its corresponding derived class virtual function
* This version uses m_Group to look for the variableName.
* @param variable name of variable to the written
* @param values pointer passed from the application
*/
template <class T> void Write(Variable<T> &variable, const T *values)
{
Write(variable, values);
}
/**
* String version
* @param variableName
* @param values
*/
template <class T> void Write(const std::string variableName, const T *values)
{
Write(variableName, values);
}
/**
* Single value version
* @param variable
* @param values
*/
template <class T> void Write(Variable<T> &variable, const T values)
{
const T val = values;
Write(variable, &val);
}
/**
* Single value version using string as variable handlers, allows rvalues to
* be passed
* @param variableName
* @param values
*/
template <class T> void Write(const std::string variableName, const T values)
{
const T val = values;
Write(variableName, &val);
}
virtual void Write(Variable<char> &variable, const char *values);
virtual void Write(Variable<unsigned char> &variable,
const unsigned char *values);
virtual void Write(Variable<short> &variable, const short *values);
virtual void Write(Variable<unsigned short> &variable,
const unsigned short *values);
virtual void Write(Variable<int> &variable, const int *values);
virtual void Write(Variable<unsigned int> &variable,
const unsigned int *values);
virtual void Write(Variable<long int> &variable, const long int *values);
virtual void Write(Variable<unsigned long int> &variable,
const unsigned long int *values);
virtual void Write(Variable<long long int> &variable,
const long long int *values);
virtual void Write(Variable<unsigned long long int> &variable,
const unsigned long long int *values);
virtual void Write(Variable<float> &variable, const float *values);
virtual void Write(Variable<double> &variable, const double *values);
virtual void Write(Variable<long double> &variable,
const long double *values);
virtual void Write(Variable<std::complex<float>> &variable,
const std::complex<float> *values);
virtual void Write(Variable<std::complex<double>> &variable,
const std::complex<double> *values);
virtual void Write(Variable<std::complex<long double>> &variable,
const std::complex<long double> *values);
virtual void Write(VariableCompound &variable, const void *values);
/**
* @brief Write functions can be overridden by derived classes. Base class
* behavior is to:
* 1) Write to Variable values (m_Values) using the pointer to default group
* *m_Group set with SetDefaultGroup function
* 2) Transform the data
* 3) Write to all capsules -> data and metadata
* @param variableName
* @param values coming from user app
*/
virtual void Write(const std::string variableName, const char *values);
virtual void Write(const std::string variableName,
const unsigned char *values);
virtual void Write(const std::string variableName, const short *values);
virtual void Write(const std::string variableName,
const unsigned short *values);
virtual void Write(const std::string variableName, const int *values);
virtual void Write(const std::string variableName,
const unsigned int *values);
virtual void Write(const std::string variableName, const long int *values);
virtual void Write(const std::string variableName,
const unsigned long int *values);
virtual void Write(const std::string variableName,
const long long int *values);
virtual void Write(const std::string variableName,
const unsigned long long int *values);
virtual void Write(const std::string variableName, const float *values);
virtual void Write(const std::string variableName, const double *values);
virtual void Write(const std::string variableName, const long double *values);
virtual void Write(const std::string variableName,
const std::complex<float> *values);
virtual void Write(const std::string variableName,
const std::complex<double> *values);
virtual void Write(const std::string variableName,
const std::complex<long double> *values);
virtual void Write(const std::string variableName, const void *values);
/**
* Read function that adds static checking on the variable to be passed by
* values
* It then calls its corresponding derived class virtual function
* This version uses m_Group to look for the variableName.
* @param variable name of variable to the written
* @param values pointer passed from the application, nullptr not allowed,
* must use Read(variable) instead intentionally
*/
template <class T> void Read(Variable<T> &variable, const T *values)
{
Read(variable, values);
}
/**
* String version
* @param variableName
* @param values
*/
template <class T> void Read(const std::string variableName, const T *values)
{
Read(variableName, values);
}
/**
* Single value version
* @param variable
* @param values
*/
template <class T> void Read(Variable<T> &variable, const T &values)
{
Read(variable, &values);
}
/**
* Single value version using string as variable handlers
* @param variableName
* @param values
*/
template <class T> void Read(const std::string variableName, const T &values)
{
Read(variableName, &values);
}
/**
* Unallocated version, ADIOS will allocate space for incoming data
* @param variable
*/
template <class T> void Read(Variable<T> &variable)
{
Read(variable, nullptr);
}
/**
* Unallocated version, ADIOS will allocate space for incoming data
* @param variableName
*/
template <class T> void Read(const std::string variableName)
{
Read(variableName, nullptr);
}
virtual void Read(Variable<double> &variable, const double *values);
/**
* Read function that adds static checking on the variable to be passed by
* values
* It then calls its corresponding derived class virtual function
* This version uses m_Group to look for the variableName.
* @param variable name of variable to the written
* @param values pointer passed from the application
*/
template <class T> void ScheduleRead(Variable<T> &variable, const T *values)
{
ScheduleRead(variable, values);
}
/**
* String version
* @param variableName
* @param values
*/
template <class T>
void ScheduleRead(const std::string variableName, const T *values)
{
ScheduleRead(variableName, values);
}
/**
* Single value version
* @param variable
* @param values
*/
template <class T> void ScheduleRead(Variable<T> &variable, const T &values)
{
ScheduleRead(variable, &values);
}
/**
* Single value version using string as variable handlers
* @param variableName
* @param values
*/
template <class T>
void ScheduleRead(const std::string variableName, const T &values)
{
ScheduleRead(variableName, &values);
}
/**
* Unallocated version, ADIOS will allocate space for incoming data
* @param variableName
*/
void ScheduleRead(const std::string variableName)
{
ScheduleRead(variableName, nullptr);
}
/**
* Unallocated unspecified version, ADIOS will receive any variable and will
* allocate space for incoming data
*/
void ScheduleRead() { ScheduleRead(nullptr, nullptr); }
virtual void ScheduleRead(Variable<double> &variable, const double *values);
/**
* Perform all scheduled reads, either blocking until all reads completed, or
* return immediately.
* @param mode Blocking or non-blocking modes
*/
void PerformReads(PerformReadMode mode);
/**
* Reader application indicates that no more data will be read from the
* current stream before advancing.
* This is necessary to allow writers to advance as soon as possible.
*/
virtual void Release();
/**
* Indicates that a new step is going to be written as new variables come in.
*/
virtual void Advance(float timeout_sec = 0.0);
/**
* Indicates that a new step is going to be written as new variables come in.
* @param mode Advance mode, there are different options for writers and
* readers
*/
virtual void Advance(AdvanceMode mode, float timeout_sec = 0.0);
/** @brief Advance asynchronously and get a callback when readers release
* access to the buffered step.
*
* User variables that were allocated through AllocateVariable()
* must not be modified until advance is completed.
* @param mode Advance mode, there are different options for writers and
* readers
* @param callback Will be called when advance is completed.
*/
virtual void
AdvanceAsync(AdvanceMode mode,
std::function<void(std::shared_ptr<adios::Engine>)> callback);
// Read API
/**
* Inquires and (optionally) allocates and copies the contents of a variable
* If success: it returns a pointer to the internal stored variable object in
* ADIOS class.
* If failure: it returns nullptr
* @param name variable name to look for
* @param readIn if true: reads the full variable and payload, allocating
* values in memory, if false: internal payload is nullptr
* @return success: it returns a pointer to the internal stored variable
* object in ADIOS class, failure: nullptr
*/
virtual Variable<void> *InquireVariable(const std::string name,
const bool readIn = true);
virtual Variable<char> *InquireVariableChar(const std::string name,
const bool readIn = true);
virtual Variable<unsigned char> *
InquireVariableUChar(const std::string name, const bool readIn = true);
virtual Variable<short> *InquireVariableShort(const std::string name,
const bool readIn = true);
virtual Variable<unsigned short> *
InquireVariableUShort(const std::string name, const bool readIn = true);
virtual Variable<int> *InquireVariableInt(const std::string name,
const bool readIn = true);
virtual Variable<unsigned int> *InquireVariableUInt(const std::string name,
const bool readIn = true);
virtual Variable<long int> *InquireVariableLInt(const std::string name,
const bool readIn = true);
virtual Variable<unsigned long int> *
InquireVariableULInt(const std::string name, const bool readIn = true);
virtual Variable<long long int> *
InquireVariableLLInt(const std::string name, const bool readIn = true);
virtual Variable<unsigned long long int> *
InquireVariableULLInt(const std::string name, const bool readIn = true);
virtual Variable<float> *InquireVariableFloat(const std::string name,
const bool readIn = true);
virtual Variable<double> *InquireVariableDouble(const std::string name,
const bool readIn = true);
virtual Variable<long double> *
InquireVariableLDouble(const std::string name, const bool readIn = true);
virtual Variable<std::complex<float>> *
InquireVariableCFloat(const std::string name, const bool readIn = true);
virtual Variable<std::complex<double>> *
InquireVariableCDouble(const std::string name, const bool readIn = true);
virtual Variable<std::complex<long double>> *
InquireVariableCLDouble(const std::string name, const bool readIn = true);
virtual VariableCompound *InquireVariableCompound(const std::string name,
const bool readIn = true);
/** Return the names of all variables present in a stream/file opened for
* reading
*
* @return a vector of strings
*/
std::vector<std::string> VariableNames();
virtual void
Close(const int transportIndex =
-1) = 0; ///< Closes a particular transport, or all if -1
Podhorszki, Norbert
committed
protected:
&m_ADIOS; ///< reference to ADIOS object that creates this Engine at Open
std::vector<std::shared_ptr<Transport>> m_Transports; ///< transports managed
const bool m_DebugMode =
false; ///< true: additional checks, false: by-pass checks
unsigned int m_nThreads = 0;
const std::string m_EndMessage; ///< added to exceptions to improve debugging
std::set<std::string> m_WrittenVariables; ///< contains the names of the
virtual void
Init(); ///< Initialize m_Capsules and m_Transports, called from constructor
virtual void InitParameters(); ///< Initialize parameters from Method, called
virtual void InitTransports(); ///< Initialize transports from Method, called
/**
* Used to verify parameters in m_Method containers
* @param itParam iterator to a certain parameter
* @param parameters map of parameters, from m_Method
* @param parameterName used if exception is thrown to provide debugging
* information
* @param hint used if exception is thrown to provide debugging information
*/
void CheckParameter(
const std::map<std::string, std::string>::const_iterator itParam,
const std::map<std::string, std::string> ¶meters,
const std::string parameterName, const std::string hint) const;
bool TransportNamesUniqueness() const; ///< checks if transport names are
/**
* Throws an exception in debug mode if transport index is out of range.
* @param transportIndex must be in the range [ -1 , m_Transports.size()-1 ]
*/
void CheckTransportIndex(const int transportIndex);