10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
25 namespace py = pybind11;
30 auto mEngines = m.def_submodule(
"Engines");
31 mEngines.doc() =
"Backend endinges that power Groups, Variables and Attributes";
33 py::enum_<BackendCreateModes> bcm(mEngines,
"BackendCreateModes");
38 py::enum_<BackendOpenModes> bco(mEngines,
"BackendOpenModes");
44 auto mEnginesHH = mEngines.def_submodule(
"HH");
45 mEnginesHH.doc() =
"HDF5 engines (powered by HDFforHumans)";
47 py::enum_<ioda::Engines::HH::HDF5_Version> hver(mEnginesHH,
"HDF5_Version");
65 py::arg(
"name") =
"", py::arg(
"mode"), py::arg(
"flush_on_close") =
false,
66 py::arg(
"increment_len_bytes") = 1000000,
69 auto mEnginesObsStore = mEngines.def_submodule(
"ObsStore");
70 mEnginesObsStore.doc() =
"Default in-memory engine. MPI capable.";
72 "Create a new ObsStore-backed group.");
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Group and related classes.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.
IODA_DL HDF5_Version_Range defaultVersionRange()
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
IODA_DL std::string genUniqueName()
Convenience function to generate a random file name.
IODA_DL Group createMemoryFile(const std::string &filename, BackendCreateModes mode, bool flush_on_close=false, size_t increment_len_bytes=1000000, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by the HDF5 in-memory-store.
@ Earliest
Use the earliest possible HDF5 format for storing objects.
@ V18
Use the latest HDF5 v1.8 format for storing objects.
@ V110
Use the latest HDF5 v1.10 format for storing objects.
@ Latest
Use the latest possible HDF5 format for storing objects.
@ V112
Use the latest HDF5 v1.12 format for storing objects.
IODA_DL Group createRootGroup()
Create a ioda::Group backed by an OsbStore Group object.
@ Fail_If_Exists
If the file already exists, fail with an error.
@ Truncate_If_Exists
If the file already exists, overwrite it.
@ Read_Write
Open the file in read-write mode.
@ Read_Only
Open the file in read-only mode.
Python bindings - macros.
The backends that implement the ioda-engines functionality.
void setupEngines(pybind11::module &m)