forked from openPMD/openPMD-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAbstractIOHandlerImpl.hpp
More file actions
569 lines (553 loc) · 26.5 KB
/
AbstractIOHandlerImpl.hpp
File metadata and controls
569 lines (553 loc) · 26.5 KB
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
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
/* Copyright 2018-2021 Fabian Koller
*
* This file is part of openPMD-api.
*
* openPMD-api is free software: you can redistribute it and/or modify
* it under the terms of of either the GNU General Public License or
* the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* openPMD-api is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License and the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and the GNU Lesser General Public License along with openPMD-api.
* If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "openPMD/IO/AbstractIOHandler.hpp"
#include "openPMD/IO/IOTask.hpp"
#include "openPMD/auxiliary/DerefDynamicCast.hpp"
#include <future>
#include <iostream>
namespace openPMD
{
// class AbstractIOHandler;
class Writable;
class AbstractIOHandlerImpl
{
public:
AbstractIOHandlerImpl(AbstractIOHandler *handler) : m_handler{handler}
{}
virtual ~AbstractIOHandlerImpl() = default;
std::future<void> flush()
{
using namespace auxiliary;
while (!(*m_handler).m_work.empty())
{
IOTask &i = (*m_handler).m_work.front();
try
{
switch (i.operation)
{
using O = Operation;
case O::CREATE_FILE:
createFile(
i.writable,
deref_dynamic_cast<Parameter<Operation::CREATE_FILE> >(
i.parameter.get()));
break;
case O::CHECK_FILE:
checkFile(
i.writable,
deref_dynamic_cast<Parameter<Operation::CHECK_FILE> >(
i.parameter.get()));
break;
case O::CREATE_PATH:
createPath(
i.writable,
deref_dynamic_cast<Parameter<O::CREATE_PATH> >(
i.parameter.get()));
break;
case O::CREATE_DATASET:
createDataset(
i.writable,
deref_dynamic_cast<Parameter<O::CREATE_DATASET> >(
i.parameter.get()));
break;
case O::EXTEND_DATASET:
extendDataset(
i.writable,
deref_dynamic_cast<Parameter<O::EXTEND_DATASET> >(
i.parameter.get()));
break;
case O::OPEN_FILE:
openFile(
i.writable,
deref_dynamic_cast<Parameter<O::OPEN_FILE> >(
i.parameter.get()));
break;
case O::CLOSE_FILE:
closeFile(
i.writable,
deref_dynamic_cast<Parameter<O::CLOSE_FILE> >(
i.parameter.get()));
break;
case O::OPEN_PATH:
openPath(
i.writable,
deref_dynamic_cast<Parameter<O::OPEN_PATH> >(
i.parameter.get()));
break;
case O::CLOSE_PATH:
closePath(
i.writable,
deref_dynamic_cast<Parameter<O::CLOSE_PATH> >(
i.parameter.get()));
break;
case O::OPEN_DATASET:
openDataset(
i.writable,
deref_dynamic_cast<Parameter<O::OPEN_DATASET> >(
i.parameter.get()));
break;
case O::DELETE_FILE:
deleteFile(
i.writable,
deref_dynamic_cast<Parameter<O::DELETE_FILE> >(
i.parameter.get()));
break;
case O::DELETE_PATH:
deletePath(
i.writable,
deref_dynamic_cast<Parameter<O::DELETE_PATH> >(
i.parameter.get()));
break;
case O::DELETE_DATASET:
deleteDataset(
i.writable,
deref_dynamic_cast<Parameter<O::DELETE_DATASET> >(
i.parameter.get()));
break;
case O::DELETE_ATT:
deleteAttribute(
i.writable,
deref_dynamic_cast<Parameter<O::DELETE_ATT> >(
i.parameter.get()));
break;
case O::WRITE_DATASET:
writeDataset(
i.writable,
deref_dynamic_cast<Parameter<O::WRITE_DATASET> >(
i.parameter.get()));
break;
case O::WRITE_ATT:
writeAttribute(
i.writable,
deref_dynamic_cast<Parameter<O::WRITE_ATT> >(
i.parameter.get()));
break;
case O::READ_DATASET:
readDataset(
i.writable,
deref_dynamic_cast<Parameter<O::READ_DATASET> >(
i.parameter.get()));
break;
case O::GET_BUFFER_VIEW:
getBufferView(
i.writable,
deref_dynamic_cast<Parameter<O::GET_BUFFER_VIEW> >(
i.parameter.get()));
break;
case O::READ_ATT:
readAttribute(
i.writable,
deref_dynamic_cast<Parameter<O::READ_ATT> >(
i.parameter.get()));
break;
case O::LIST_PATHS:
listPaths(
i.writable,
deref_dynamic_cast<Parameter<O::LIST_PATHS> >(
i.parameter.get()));
break;
case O::LIST_DATASETS:
listDatasets(
i.writable,
deref_dynamic_cast<Parameter<O::LIST_DATASETS> >(
i.parameter.get()));
break;
case O::LIST_ATTS:
listAttributes(
i.writable,
deref_dynamic_cast<Parameter<O::LIST_ATTS> >(
i.parameter.get()));
break;
case O::ADVANCE:
advance(
i.writable,
deref_dynamic_cast<Parameter<O::ADVANCE> >(
i.parameter.get()));
break;
case O::AVAILABLE_CHUNKS:
availableChunks(
i.writable,
deref_dynamic_cast<Parameter<O::AVAILABLE_CHUNKS> >(
i.parameter.get()));
break;
case O::KEEP_SYNCHRONOUS:
keepSynchronous(
i.writable,
deref_dynamic_cast<Parameter<O::KEEP_SYNCHRONOUS> >(
i.parameter.get()));
break;
}
}
catch (...)
{
std::cerr << "[AbstractIOHandlerImpl] IO Task "
<< internal::operationAsString(i.operation)
<< " failed with exception. Removing task"
<< " from IO queue and passing on the exception."
<< std::endl;
(*m_handler).m_work.pop();
throw;
}
(*m_handler).m_work.pop();
}
return std::future<void>();
}
/**
* Close the file corresponding with the writable and release file handles.
* The operation should succeed in any access mode.
*/
virtual void
closeFile(Writable *, Parameter<Operation::CLOSE_FILE> const &) = 0;
/**
* Check if the file specified by the parameter is already present on disk.
* The Writable is irrelevant for this method.
* A backend can choose to ignore this task and specify FileExists::DontKnow
* in the out parameter.
* The consequence will be that some top-level attributes might be defined
* a second time when appending to an existing file, because the frontend
* cannot be sure that the file already has these attributes.
*/
virtual void checkFile(Writable *, Parameter<Operation::CHECK_FILE> &) = 0;
/** Advance the file/stream that this writable belongs to.
*
* If the backend is based around usage of IO steps (especially streaming
* backends), open or close an IO step. This is modeled closely after the
* step concept in ADIOS2.
*
* This task is used to implement streaming-aware semantics in the openPMD
* API by splitting data into packets that are written to and read from
* transport.
*
* IO actions up to the point of closing a step must be performed now.
*
* The advance mode is determined by parameters.mode.
* The return status code shall be stored as parameters.status.
*/
virtual void advance(Writable *, Parameter<Operation::ADVANCE> ¶meters)
{
*parameters.status = AdvanceStatus::RANDOMACCESS;
}
/** Close an openPMD group.
*
* This is an optimization-enabling task and may be ignored by backends.
* Indicates that the group will not be accessed any further.
* Especially in step-based IO mode (e.g. streaming):
* Indicates that the group corresponding with the writable needs not be
* held in a parseable state for this and upcoming IO steps, allowing for
* deletion of metadata to be sent/stored (attributes, datasets, ..). Should
* fail if the writable is not written. Should fail if m_handler->accessType
* is AccessType::READ_ONLY.
*
*/
virtual void closePath(Writable *, Parameter<Operation::CLOSE_PATH> const &)
{}
/** Report chunks that are available for loading from the dataset
* represented by this writable.
*
* The resulting chunks should be stored into parameters.chunks.
*
*/
virtual void
availableChunks(Writable *, Parameter<Operation::AVAILABLE_CHUNKS> &) = 0;
/** Create a new file in physical storage, possibly overriding an existing
* file.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. If m_handler->m_frontendAccess is Access::APPEND, a
* possibly existing file should not be overwritten. Instead, written
* updates should then either occur in-place or in form of new IO steps.
* Support for reading is not necessary in Append mode.
* The new file should be located in m_handler->directory.
* The new file should have the filename parameters.name.
* The filename should include the correct corresponding filename extension.
* Any existing file should be overwritten if m_handler->m_frontendAccess is
* Access::CREATE. The Writables file position should correspond to the root
* group "/" of the hierarchy. The Writable should be marked written when
* the operation completes successfully.
*/
virtual void
createFile(Writable *, Parameter<Operation::CREATE_FILE> const &) = 0;
/** Create all necessary groups for a path, possibly recursively.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The path parameters.path may contain multiple levels
* (e.g. first/second/third/). The Writables file position should correspond
* to the complete newly created path (i.e. first/second/third/ should be
* assigned to the Writables file position). The Writable should be marked
* written when the operation completes successfully.
*/
virtual void
createPath(Writable *, Parameter<Operation::CREATE_PATH> const &) = 0;
/** Create a new dataset of given type, extent and storage properties.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The path may contain multiple levels (e.g.
* group/dataset). The new dataset should have the name parameters.name.
* This name should not start or end with a slash ("/"). The new dataset
* should be of datatype parameters.dtype. The new dataset should have an
* extent of parameters.extent. If possible, the new dataset should be
* extensible. If possible, the new dataset should be divided into chunks
* with size parameters.chunkSize. If possible, the new dataset should be
* compressed according to parameters.compression. This may be
* format-specific. If possible, the new dataset should be transformed
* accoring to parameters.transform. This may be format-specific. The
* Writables file position should correspond to the newly created dataset.
* The Writable should be marked written when the operation completes
* successfully.
*/
virtual void
createDataset(Writable *, Parameter<Operation::CREATE_DATASET> const &) = 0;
/** Increase the extent of an existing dataset.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The operation should fail if the dataset does not yet
* exist. The dataset should have the name parameters.name. This name should
* not start or end with a slash ("/"). The operation should fail if the new
* extent is not strictly large in every dimension. The dataset should have
* an extent of parameters.extent.
*/
virtual void
extendDataset(Writable *, Parameter<Operation::EXTEND_DATASET> const &) = 0;
/** Open an existing file assuming it conforms to openPMD.
*
* The operation should fail if m_handler->directory is not accessible.
* The opened file should have filename parameters.name and include the
* correct corresponding filename extension. The operation should not open
* files more than once. If possible, the file should be opened with
* read-only permissions if m_handler->m_frontendAccess is
* Access::READ_ONLY. The Writables file position should correspond to the
* root group "/" of the hierarchy in the opened file. The Writable should
* be marked written when the operation completes successfully.
*/
virtual void
openFile(Writable *, Parameter<Operation::OPEN_FILE> const &) = 0;
/** Open all contained groups in a path, possibly recursively.
*
* The operation should overwrite existing file positions, even when the
* Writable was already marked written. The path parameters.path may contain
* multiple levels (e.g. first/second/third/). This path should be relative
* (i.e. it should not start with a slash "/"). The number of levels may be
* zero, i.e. parameters.path may be an empty string. The Writables file
* position should correspond to the complete opened path (i.e.
* first/second/third/ should be assigned to the Writables file position).
* The Writable should be marked written when the operation completes
* successfully.
*/
virtual void
openPath(Writable *, Parameter<Operation::OPEN_PATH> const &) = 0;
/** Open an existing dataset and determine its datatype and extent.
*
* The opened dataset should be located in a group below the group of the
* Writables parent writable->parent. The opened datasets name should be
* parameters.name. This name should not start or end with a slash ("/").
* The opened datasets datatype should be stored in *(parameters.dtype).
* The opened datasets extent should be stored in *(parameters.extent).
* The Writables file position should correspond to the opened dataset.
* The Writable should be marked written when the operation completes
* successfully.
*/
virtual void
openDataset(Writable *, Parameter<Operation::OPEN_DATASET> &) = 0;
/** Delete an existing file from physical storage.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The operation should pass if the Writable was not
* marked written. All handles that correspond to the file should be closed
* before deletion. The file to delete should have the filename
* parameters.name. The filename should include the correct corresponding
* filename extension. The Writables file position should be set to an
* invalid position (i.e. the pointer should be a nullptr). The Writable
* should be marked not written when the operation completes successfully.
*/
virtual void
deleteFile(Writable *, Parameter<Operation::DELETE_FILE> const &) = 0;
/** Delete all objects within an existing path.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The operation should pass if the Writable was not
* marked written. The path parameters.path may contain multiple levels
* (e.g. first/second/third/). This path should be relative (i.e. it should
* not start with a slash "/"). It may also contain the current group ".".
* All groups and datasets starting from the path should not be accessible
* in physical storage after the operation completes successfully. The
* Writables file position should be set to an invalid position (i.e. the
* pointer should be a nullptr). The Writable should be marked not written
* when the operation completes successfully.
*/
virtual void
deletePath(Writable *, Parameter<Operation::DELETE_PATH> const &) = 0;
/** Delete an existing dataset.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The operation should pass if the Writable was not
* marked written. The dataset should have the name parameters.name. This
* name should not start or end with a slash ("/"). It may also contain the
* current dataset ".". The dataset should not be accessible in physical
* storage after the operation completes successfully. The Writables file
* position should be set to an invalid position (i.e. the pointer should be
* a nullptr). The Writable should be marked not written when the operation
* completes successfully.
*/
virtual void
deleteDataset(Writable *, Parameter<Operation::DELETE_DATASET> const &) = 0;
/** Delete an existing attribute.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The operation should pass if the Writable was not
* marked written. The attribute should be associated with the Writable and
* have the name parameters.name before deletion. The attribute should not
* be accessible in physical storage after the operation completes
* successfully.
*/
virtual void
deleteAttribute(Writable *, Parameter<Operation::DELETE_ATT> const &) = 0;
/** Write a chunk of data into an existing dataset.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The dataset should be associated with the Writable.
* The operation should fail if the dataset does not exist.
* The operation should fail if the chunk extent parameters.extent is not
* smaller or equals in every dimension. The operation should fail if chunk
* positions parameters.offset+parameters.extent do not reside inside the
* dataset. The dataset should match the dataype parameters.dtype. The data
* parameters.data is a cast-to-void pointer to a flattened version of the
* chunk data. It should be re-cast to the provided datatype. The chunk is
* stored row-major. The region of the chunk should be written to physical
* storage after the operation completes successfully.
*/
virtual void
writeDataset(Writable *, Parameter<Operation::WRITE_DATASET> const &) = 0;
/** Get a view into a dataset buffer that can be filled by a user.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The dataset should be associated with the Writable.
* The operation should fail if the dataset does not exist.
* The operation should fail if the chunk extent parameters.extent is not
* smaller or equals in every dimension. The operation should fail if chunk
* positions parameters.offset+parameters.extent do not reside inside the
* dataset. The dataset should match the dataype parameters.dtype. The
* buffer should be stored as a cast-to-char pointer to a flattened version
* of the backend buffer in parameters.out->ptr. The chunk is stored
* row-major. The buffer's content should be written to storage not before
* the next call to AbstractIOHandler::flush where
* AbstractIOHandler::m_flushLevel == FlushLevel::InternalFlush. The precise
* time of data consumption is defined by the backend:
* * Data written to the returned buffer should be consumed not earlier than
* the next call to AbstractIOHandler::flush where
* AbstractIOHandler::m_flushLevel == FlushLevel::InternalFlush.
* * Data should be consumed not later than the next Operation::ADVANCE task
* where parameter.mode == AdvanceMode::ENDSTEP.
*
* This IOTask is optional and should either (1) not be implemented by a
* backend at all or (2) be implemented as indicated above and set
* parameters.out->backendManagedBuffer = true.
*/
virtual void
getBufferView(Writable *, Parameter<Operation::GET_BUFFER_VIEW> ¶meters)
{
// default implementation: operation unsupported by backend
parameters.out->backendManagedBuffer = false;
}
/** Create a single attribute and fill the value, possibly overwriting an
* existing attribute.
*
* The operation should fail if m_handler->m_frontendAccess is
* Access::READ_ONLY. The attribute should have the name parameters.name.
* This name should not contain a slash ("/"). The attribute should be of
* datatype parameters.dtype. Any existing attribute with the same name
* should be overwritten. If possible, only the value should be changed if
* the datatype stays the same. The attribute should be written to physical
* storage after the operation completes successfully. If the parameter
* changesOverSteps is true, then the attribute must be able to hold
* different values across IO steps. If the backend does not support IO
* steps in such a way, the attribute should not be written. (IO steps are
* an optional backend feature and the frontend must implement fallback
* measures in such a case) All datatypes of Datatype should be supported in
* a type-safe way.
*/
virtual void
writeAttribute(Writable *, Parameter<Operation::WRITE_ATT> const &) = 0;
/** Read a chunk of data from an existing dataset.
*
* The dataset should be associated with the Writable.
* The operation should fail if the dataset does not exist.
* The operation should fail if the chunk extent parameters.extent is not
* smaller or equals in every dimension. The operation should fail if chunk
* positions parameters.offset+parameters.extent do not reside inside the
* dataset. The dataset should match the dataype parameters.dtype. The data
* parameters.data should be a cast-to-void pointer to a flattened version
* of the chunk data. The chunk should be stored row-major. The region of
* the chunk should be written to the location indicated by the pointer
* after the operation completes successfully.
*/
virtual void
readDataset(Writable *, Parameter<Operation::READ_DATASET> &) = 0;
/** Read the value of an existing attribute.
*
* The operation should fail if the Writable was not marked written.
* The operation should fail if the attribute does not exist.
* The attribute should be associated with the Writable and have the name
* parameters.name. This name should not contain a slash ("/"). The
* attribute datatype should be stored in the location indicated by the
* pointer parameters.dtype. The attribute value should be stored as a
* generic Variant::resource in the location indicated by the pointer
* parameters.resource. All datatypes of Datatype should be supported in a
* type-safe way.
*/
virtual void
readAttribute(Writable *, Parameter<Operation::READ_ATT> &) = 0;
/** List all paths/sub-groups inside a group, non-recursively.
*
* The operation should fail if the Writable was not marked written.
* The operation should fail if the Writable is not a group.
* The list of group names should be stored in the location indicated by the
* pointer parameters.paths.
*/
virtual void listPaths(Writable *, Parameter<Operation::LIST_PATHS> &) = 0;
/** List all datasets inside a group, non-recursively.
*
* The operation should fail if the Writable was not marked written.
* The operation should fail if the Writable is not a group.
* The list of dataset names should be stored in the location indicated by
* the pointer parameters.datasets.
*/
virtual void
listDatasets(Writable *, Parameter<Operation::LIST_DATASETS> &) = 0;
/** List all attributes associated with an object.
*
* The operation should fail if the Writable was not marked written.
* The attribute should be associated with the Writable.
* The list of attribute names should be stored in the location indicated by
* the pointer parameters.attributes.
*/
virtual void
listAttributes(Writable *, Parameter<Operation::LIST_ATTS> &) = 0;
/** Treat the current Writable as equivalent to that in the parameter object
*
* Using the default implementation (which copies the abstractFilePath
* into the current writable) should be enough for all backends.
*/
void
keepSynchronous(Writable *, Parameter<Operation::KEEP_SYNCHRONOUS> param);
AbstractIOHandler *m_handler;
}; // AbstractIOHandlerImpl
} // namespace openPMD