IODA
py_engines.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /// \file py_engines.cpp
8 /// \brief Python bindings for the ioda / ioda-engines library.
9 
10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
13 
14 #include <iostream>
15 #include <sstream>
16 
17 #include "./macros.h"
18 #include "ioda/Engines/HH.h"
19 #include "ioda/Engines/ObsStore.h"
20 #include "ioda/Group.h"
21 #include "ioda/Layout.h"
23 #include "ioda/ObsGroup.h"
24 
25 namespace py = pybind11;
26 using namespace ioda;
27 
28 void setupEngines(pybind11::module& m) {
29  using namespace ioda::Engines;
30  auto mEngines = m.def_submodule("Engines");
31  mEngines.doc() = "Backend endinges that power Groups, Variables and Attributes";
32 
33  py::enum_<BackendCreateModes> bcm(mEngines, "BackendCreateModes");
34  // bcm.doc() = "File creation modes"; // Can't set
35  bcm.value("Truncate_If_Exists", BackendCreateModes::Truncate_If_Exists)
36  .value("Fail_If_Exists", BackendCreateModes::Fail_If_Exists);
37 
38  py::enum_<BackendOpenModes> bco(mEngines, "BackendOpenModes");
39  // bco.doc() = "File opening modes"; // Can't set
40  bco.value("Read_Only", BackendOpenModes::Read_Only)
41  .value("Read_Write", BackendOpenModes::Read_Write);
42 
43  // Engine creators go here
44  auto mEnginesHH = mEngines.def_submodule("HH");
45  mEnginesHH.doc() = "HDF5 engines (powered by HDFforHumans)";
46 
47  py::enum_<ioda::Engines::HH::HDF5_Version> hver(mEnginesHH, "HDF5_Version");
48  hver.value("Earliest", ioda::Engines::HH::HDF5_Version::Earliest)
53 
54  mEnginesHH.def("genUniqueName", ioda::Engines::HH::genUniqueName, "Generates a unique id.");
55  mEnginesHH.def(
56  "createFile", ioda::Engines::HH::createFile, "Creates a new HDF5 file.", py::arg("name"),
57  py::arg("mode"),
58  py::arg("compat_range") = ioda::Engines::HH::defaultVersionRange());
59  mEnginesHH.def(
60  "openFile", ioda::Engines::HH::openFile, "Opens an existing HDF5 file.", py::arg("name"),
61  py::arg("mode"),
62  py::arg("compat_range") = ioda::Engines::HH::defaultVersionRange());
63  mEnginesHH.def(
64  "createMemoryFile", ioda::Engines::HH::createMemoryFile, "Creates a ioda file in memory.",
65  py::arg("name") = "", py::arg("mode"), py::arg("flush_on_close") = false,
66  py::arg("increment_len_bytes") = 1000000,
67  py::arg("compat_range") = ioda::Engines::HH::defaultVersionRange());
68 
69  auto mEnginesObsStore = mEngines.def_submodule("ObsStore");
70  mEnginesObsStore.doc() = "Default in-memory engine. MPI capable.";
71  mEnginesObsStore.def("createRootGroup", ioda::Engines::ObsStore::createRootGroup,
72  "Create a new ObsStore-backed group.");
73 }
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Group and related classes.
HDF5 engine.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
ObsStore engine.
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:120
IODA_DL HDF5_Version_Range defaultVersionRange()
Definition: HH.cpp:77
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:147
IODA_DL std::string genUniqueName()
Convenience function to generate a random file name.
Definition: HH.cpp:50
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.
Definition: HH.cpp:86
@ 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.
Definition: ObsStore.cpp:24
@ 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.
Definition: Capabilities.h:21
void setupEngines(pybind11::module &m)
Definition: py_engines.cpp:28