-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathDataset.cpp
More file actions
105 lines (100 loc) · 4.08 KB
/
Dataset.cpp
File metadata and controls
105 lines (100 loc) · 4.08 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
/* Copyright 2018-2025 Axel Huebl, Franz Poeschel, Junmin Gu
*
* 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/Dataset.hpp"
#include "openPMD/binding/python/Common.hpp"
#include "openPMD/binding/python/Numpy.hpp"
#include "openPMD/binding/python/auxiliary.hpp"
#include <string>
#include <utility>
void init_Dataset(py::module &m)
{
auto pyDataset =
py::class_<Dataset>(m, "Dataset")
.def(py::init<Extent>(), py::arg("extent"))
.def(
py::init<Datatype, Extent, std::string>(),
py::arg("dtype"),
py::arg("extent"),
py::arg("options") = "{}")
.def(
py::init([](py::object dt, Extent e, std::string options) {
auto const d = dtype_from_numpy(std::move(dt));
return new Dataset{d, std::move(e), std::move(options)};
}),
py::arg("dtype"),
py::arg("extent"),
py::arg("options") = "{}")
.def(
py::init([](Datatype dt, Extent e, py::object const &options) {
auto resolved_options = ::auxiliary::json_dumps(options);
return new Dataset{
dt, std::move(e), std::move(resolved_options)};
}),
py::arg("dtype"),
py::arg("extent"),
py::arg("options"))
.def(
py::init([](py::object const &dt,
Extent e,
py::object const &options) {
auto const d = dtype_from_numpy(dt);
auto resolved_options = ::auxiliary::json_dumps(options);
return new Dataset{
d, std::move(e), std::move(resolved_options)};
}),
py::arg("dtype"),
py::arg("extent"),
py::arg("options"))
.def(
"__repr__",
[](const Dataset &d) {
std::stringstream stream;
stream << "<openPMD.Dataset of type '" << d.dtype
<< "' and with extent ";
if (d.extent.empty())
{
stream << "[]>";
}
else
{
auto begin = d.extent.begin();
stream << '[' << *begin++;
for (; begin != d.extent.end(); ++begin)
{
stream << ", " << *begin;
}
stream << "]>";
}
return stream.str();
})
.def_property_readonly(
"joined_dimension",
py::overload_cast<>(&Dataset::joinedDimension, py::const_))
.def_readonly("extent", &Dataset::extent)
.def("extend", &Dataset::extend)
.def_readonly("rank", &Dataset::rank)
.def_property_readonly(
"dtype",
[](const Dataset &d) { return dtype_to_numpy(d.dtype); })
.def_readwrite("options", &Dataset::options);
pyDataset.attr("JOINED_DIMENSION") =
py::int_(uint64_t(Dataset::JOINED_DIMENSION));
}