-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathRecordComponent.cpp
567 lines (526 loc) · 17 KB
/
RecordComponent.cpp
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
/* Copyright 2017-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/>.
*/
#include "openPMD/RecordComponent.hpp"
#include "openPMD/Dataset.hpp"
#include "openPMD/DatatypeHelpers.hpp"
#include "openPMD/Error.hpp"
#include "openPMD/IO/Format.hpp"
#include "openPMD/Series.hpp"
#include "openPMD/auxiliary/Memory.hpp"
#include "openPMD/backend/Attributable.hpp"
#include "openPMD/backend/BaseRecord.hpp"
#include <algorithm>
#include <climits>
#include <complex>
#include <iostream>
#include <sstream>
#include <stdexcept>
namespace openPMD
{
namespace internal
{
RecordComponentData::RecordComponentData() = default;
auto RecordComponentData::push_chunk(IOTask &&task) -> void
{
Attributable a;
a.setData(std::shared_ptr<AttributableData>{this, [](auto const &) {}});
// this check can be too costly in some setups
#if 0
if (a.containingIteration().closed())
{
throw error::WrongAPIUsage(
"Cannot write/read chunks to/from closed Iterations.");
}
#endif
a.setDirtyRecursive(true);
m_chunks.push(std::move(task));
}
} // namespace internal
RecordComponent::RecordComponent() : BaseRecordComponent(NoInit())
{
setData(std::make_shared<Data_t>());
}
RecordComponent::RecordComponent(NoInit) : BaseRecordComponent(NoInit())
{}
RecordComponent::RecordComponent(BaseRecord<RecordComponent> const &baseRecord)
: BaseRecordComponent(NoInit())
{
setData(baseRecord.m_recordComponentData);
}
// We need to instantiate this somewhere otherwise there might be linker issues
// despite this thing actually being constepxr
constexpr char const *const RecordComponent::SCALAR;
RecordComponent &RecordComponent::setUnitSI(double usi)
{
setAttribute("unitSI", usi);
return *this;
}
RecordComponent &RecordComponent::resetDataset(Dataset d)
{
auto &rc = get();
if (written())
{
if (!rc.m_dataset.has_value())
{
throw error::Internal(
"Internal control flow error: Written record component must "
"have defined datatype and extent.");
}
if (d.dtype == Datatype::UNDEFINED)
{
d.dtype = rc.m_dataset.value().dtype;
}
else if (d.dtype != rc.m_dataset.value().dtype)
{
throw std::runtime_error(
"Cannot change the datatype of a dataset.");
}
rc.m_hasBeenExtended = true;
}
if (d.dtype == Datatype::UNDEFINED)
{
throw error::WrongAPIUsage(
"[RecordComponent] Must set specific datatype.");
}
// if( d.extent.empty() )
// throw std::runtime_error("Dataset extent must be at least 1D.");
if (d.empty())
return makeEmpty(std::move(d));
rc.m_isEmpty = false;
if (written())
{
rc.m_dataset.value().extend(std::move(d.extent));
}
else
{
rc.m_dataset = std::move(d);
}
setDirty(true);
return *this;
}
uint8_t RecordComponent::getDimensionality() const
{
auto &rc = get();
if (rc.m_dataset.has_value())
{
return rc.m_dataset.value().rank;
}
else
{
return 1;
}
}
Extent RecordComponent::getExtent() const
{
auto &rc = get();
if (rc.m_dataset.has_value())
{
return rc.m_dataset.value().extent;
}
else
{
return {1};
}
}
namespace detail
{
struct MakeEmpty
{
template <typename T>
static RecordComponent &call(RecordComponent &rc, uint8_t dimensions)
{
return rc.makeEmpty<T>(dimensions);
}
template <unsigned int N>
static RecordComponent &call(RecordComponent &, uint8_t)
{
throw std::runtime_error(
"RecordComponent::makeEmpty: Unknown datatype.");
}
};
} // namespace detail
RecordComponent &RecordComponent::makeEmpty(Datatype dt, uint8_t dimensions)
{
return switchType<detail::MakeEmpty>(dt, *this, dimensions);
}
RecordComponent &RecordComponent::makeEmpty(Dataset d)
{
auto &rc = get();
if (written())
{
if (!rc.m_dataset.has_value())
{
throw error::Internal(
"Internal control flow error: Written record component must "
"have defined datatype and extent.");
}
if (!constant())
{
throw std::runtime_error(
"An empty record component's extent can only be changed"
" in case it has been initialized as an empty or constant"
" record component.");
}
if (d.dtype == Datatype::UNDEFINED)
{
d.dtype = rc.m_dataset.value().dtype;
}
else if (d.dtype != rc.m_dataset.value().dtype)
{
throw std::runtime_error(
"Cannot change the datatype of a dataset.");
}
rc.m_dataset.value().extend(std::move(d.extent));
rc.m_hasBeenExtended = true;
}
else
{
rc.m_dataset = std::move(d);
}
if (rc.m_dataset.value().extent.size() == 0)
throw std::runtime_error("Dataset extent must be at least 1D.");
rc.m_isEmpty = true;
setDirty(true);
if (!written())
{
switchType<detail::DefaultValue<RecordComponent> >(
rc.m_dataset.value().dtype, *this);
}
return *this;
}
bool RecordComponent::empty() const
{
return get().m_isEmpty;
}
void RecordComponent::flush(
std::string const &name, internal::FlushParams const &flushParams)
{
auto &rc = get();
if (flushParams.flushLevel == FlushLevel::SkeletonOnly)
{
rc.m_name = name;
return;
}
if (access::readOnly(IOHandler()->m_frontendAccess))
{
while (!rc.m_chunks.empty())
{
IOHandler()->enqueue(rc.m_chunks.front());
rc.m_chunks.pop();
}
}
else
{
/*
* This catches when a user forgets to use resetDataset.
*/
if (!rc.m_dataset.has_value())
{
// The check for !written() is technically not needed, just
// defensive programming against internal bugs that go on us.
if (!written() && rc.m_chunks.empty())
{
// No data written yet, just accessed the object so far without
// doing anything
// Just do nothing and skip this record component.
return;
}
else
{
throw error::WrongAPIUsage(
"[RecordComponent] Must specify dataset type and extent "
"before flushing (see RecordComponent::resetDataset()).");
}
}
if (!containsAttribute("unitSI"))
{
setUnitSI(1);
}
if (!written())
{
if (constant())
{
bool isVBased = retrieveSeries().iterationEncoding() ==
IterationEncoding::variableBased;
Parameter<Operation::CREATE_PATH> pCreate;
pCreate.path = name;
IOHandler()->enqueue(IOTask(this, pCreate));
Parameter<Operation::WRITE_ATT> aWrite;
aWrite.name = "value";
aWrite.dtype = rc.m_constantValue.dtype;
aWrite.resource = rc.m_constantValue.getResource();
if (isVBased)
{
aWrite.changesOverSteps = Parameter<
Operation::WRITE_ATT>::ChangesOverSteps::IfPossible;
}
IOHandler()->enqueue(IOTask(this, aWrite));
aWrite.name = "shape";
Attribute a(getExtent());
aWrite.dtype = a.dtype;
aWrite.resource = a.getResource();
if (isVBased)
{
aWrite.changesOverSteps = Parameter<
Operation::WRITE_ATT>::ChangesOverSteps::IfPossible;
}
IOHandler()->enqueue(IOTask(this, aWrite));
}
else
{
Parameter<Operation::CREATE_DATASET> dCreate;
dCreate.name = name;
dCreate.extent = getExtent();
dCreate.dtype = getDatatype();
dCreate.options = rc.m_dataset.value().options;
dCreate.joinedDimension = joinedDimension();
IOHandler()->enqueue(IOTask(this, dCreate));
}
}
if (rc.m_hasBeenExtended)
{
if (constant())
{
bool isVBased = retrieveSeries().iterationEncoding() ==
IterationEncoding::variableBased;
Parameter<Operation::WRITE_ATT> aWrite;
aWrite.name = "shape";
Attribute a(getExtent());
aWrite.dtype = a.dtype;
aWrite.resource = a.getResource();
if (isVBased)
{
aWrite.changesOverSteps = Parameter<
Operation::WRITE_ATT>::ChangesOverSteps::IfPossible;
}
IOHandler()->enqueue(IOTask(this, aWrite));
}
else
{
Parameter<Operation::EXTEND_DATASET> pExtend;
pExtend.extent = rc.m_dataset.value().extent;
IOHandler()->enqueue(IOTask(this, std::move(pExtend)));
rc.m_hasBeenExtended = false;
}
}
while (!rc.m_chunks.empty())
{
IOHandler()->enqueue(rc.m_chunks.front());
rc.m_chunks.pop();
}
flushAttributes(flushParams);
}
if (flushParams.flushLevel != FlushLevel::SkeletonOnly)
{
setDirty(false);
}
}
void RecordComponent::read(bool require_unit_si)
{
readBase(require_unit_si);
}
namespace
{
struct MakeConstant
{
template <typename T>
static void call(RecordComponent rc, Attribute const &attr)
{
rc.makeConstant(attr.get<T>());
}
template <unsigned n, typename... Args>
static void call(Args &&...)
{
throw error::ReadError(
error::AffectedObject::Attribute,
error::Reason::UnexpectedContent,
{},
"Undefined constant datatype.");
}
};
} // namespace
void RecordComponent::readBase(bool require_unit_si)
{
using DT = Datatype;
// auto & rc = get();
Parameter<Operation::READ_ATT> aRead;
if (constant() && !empty())
{
aRead.name = "value";
IOHandler()->enqueue(IOTask(this, aRead));
IOHandler()->flush(internal::defaultFlushParams);
Attribute a(*aRead.resource);
DT dtype = *aRead.dtype;
setWritten(false, Attributable::EnqueueAsynchronously::No);
switchNonVectorType<MakeConstant>(dtype, *this, a);
setWritten(true, Attributable::EnqueueAsynchronously::No);
aRead.name = "shape";
IOHandler()->enqueue(IOTask(this, aRead));
IOHandler()->flush(internal::defaultFlushParams);
a = Attribute(*aRead.resource);
Extent e;
// uint64_t check
if (auto val = a.getOptional<std::vector<uint64_t> >(); val.has_value())
for (auto const &shape : val.value())
e.push_back(shape);
else
{
std::ostringstream oss;
oss << "Unexpected datatype (" << *aRead.dtype
<< ") for attribute 'shape' (" << determineDatatype<uint64_t>()
<< " aka uint64_t)";
throw error::ReadError(
error::AffectedObject::Attribute,
error::Reason::UnexpectedContent,
{},
oss.str());
}
setWritten(false, Attributable::EnqueueAsynchronously::No);
resetDataset(Dataset(dtype, e));
setWritten(true, Attributable::EnqueueAsynchronously::No);
}
readAttributes(ReadMode::FullyReread);
if (require_unit_si)
{
if (!containsAttribute("unitSI"))
{
throw error::ReadError(
error::AffectedObject::Attribute,
error::Reason::NotFound,
{},
"Attribute unitSI required for record components, not found in "
"'" +
myPath().openPMDPath() + "'.");
}
if (!getAttribute("unitSI").getOptional<double>().has_value())
{
throw error::ReadError(
error::AffectedObject::Attribute,
error::Reason::UnexpectedContent,
{},
"Unexpected Attribute datatype for 'unitSI' (expected double, "
"found " +
datatypeToString(Attribute(*aRead.resource).dtype) +
") in '" + myPath().openPMDPath() + "'.");
}
}
}
void RecordComponent::storeChunk(
auxiliary::WriteBuffer buffer, Datatype dtype, Offset o, Extent e)
{
verifyChunk(dtype, o, e);
Parameter<Operation::WRITE_DATASET> dWrite;
dWrite.offset = std::move(o);
dWrite.extent = std::move(e);
dWrite.dtype = dtype;
/* std::static_pointer_cast correctly reference-counts the pointer */
dWrite.data = std::move(buffer);
auto &rc = get();
rc.push_chunk(IOTask(this, std::move(dWrite)));
}
void RecordComponent::verifyChunk(
Datatype dtype, Offset const &o, Extent const &e) const
{
if (constant())
throw std::runtime_error(
"Chunks cannot be written for a constant RecordComponent.");
if (empty())
throw std::runtime_error(
"Chunks cannot be written for an empty RecordComponent.");
if (dtype != getDatatype())
{
std::ostringstream oss;
oss << "Datatypes of chunk data (" << dtype
<< ") and record component (" << getDatatype() << ") do not match.";
throw std::runtime_error(oss.str());
}
uint8_t dim = getDimensionality();
Extent dse = getExtent();
if (auto jd = joinedDimension(); jd.has_value())
{
if (o.size() != 0)
{
std::ostringstream oss;
oss << "Joined array: Must specify an empty offset (given: "
<< "offset=" << o.size() << "D, "
<< "extent=" << e.size() << "D).";
throw std::runtime_error(oss.str());
}
if (e.size() != dim)
{
std::ostringstream oss;
oss << "Joined array: Dimensionalities of chunk extent and dataset "
"extent must be equivalent (given: "
<< "offset=" << o.size() << "D, "
<< "extent=" << e.size() << "D).";
throw std::runtime_error(oss.str());
}
for (size_t i = 0; i < dim; ++i)
{
if (i != jd.value() && e[i] != dse[i])
{
throw std::runtime_error(
"Joined array: Chunk extent on non-joined dimensions must "
"be equivalent to dataset extents (Dimension on index " +
std::to_string(i) + ". DS: " + std::to_string(dse[i]) +
" - Chunk: " + std::to_string(o[i] + e[i]) + ")");
}
}
}
else
{
if (e.size() != dim || o.size() != dim)
{
std::ostringstream oss;
oss << "Dimensionality of chunk ("
<< "offset=" << o.size() << "D, "
<< "extent=" << e.size() << "D) "
<< "and record component (" << int(dim) << "D) "
<< "do not match.";
throw std::runtime_error(oss.str());
}
for (uint8_t i = 0; i < dim; ++i)
if (dse[i] < o[i] + e[i])
throw std::runtime_error(
"Chunk does not reside inside dataset (Dimension on "
"index " +
std::to_string(i) + ". DS: " + std::to_string(dse[i]) +
" - Chunk: " + std::to_string(o[i] + e[i]) + ")");
}
}
namespace
{
struct LoadChunkVariant
{
template <typename T>
static RecordComponent::shared_ptr_dataset_types
call(RecordComponent &rc, Offset o, Extent e)
{
return rc.loadChunk<T>(std::move(o), std::move(e));
}
};
} // namespace
auto RecordComponent::loadChunkVariant(Offset o, Extent e)
-> shared_ptr_dataset_types
{
return visit<LoadChunkVariant>(std::move(o), std::move(e));
}
} // namespace openPMD