IODA
py_has_attributes.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_has_attributes.cpp
8 /// \brief Python bindings - Has_Attributes
9 
10 #include <pybind11/pybind11.h>
11 #include <pybind11/stl.h>
12 
13 #include <iostream>
14 #include <sstream>
15 
16 #include "./macros.h"
17 #include "ioda/Group.h"
18 
19 namespace py = pybind11;
20 using namespace ioda;
21 
22 void setupHasAttributes(pybind11::module& m) {
23  py::class_<Has_Attributes> hatt(m, "Has_Attributes");
24  hatt.doc() = "Container for this object's attributes";
25  hatt.def("list", &Has_Attributes::list, "The names of all attributes")
26  .def("exists", &Has_Attributes::exists, "Does an attribute exist with the specified name?",
27  py::arg("name"))
28  .def("remove", &Has_Attributes::remove, "Remove an attribute", py::arg("name"))
29  .def("rename", &Has_Attributes::rename, "Rename an attribute", py::arg("oldname"),
30  py::arg("newname"))
31  .def("open", &Has_Attributes::open, "Open an attribute", py::arg("name"))
32  .def("create", &Has_Attributes::_create_py, "Create an attribute", py::arg("name"),
33  py::arg("dtype"), py::arg("dims") = std::vector<Dimensions_t>{1})
34  // CLASS_TEMPLATE_FUNCTION_PATTERN(create, create, Has_Attributes,
35  // CREATE_CLASS_TEMPLATE_FUNCTION_T) Convenience functions, add and read
36  //.def("read", &Has_Attributes::read)
37  .def("__repr__",
38  [](const Has_Attributes& ha) {
39  std::ostringstream out;
40  auto names = ha.list();
41  out << "<ioda.Has_Attributes: [ ";
42  for (const auto& s : names) out << s << " ";
43  out << "]>";
44 
45  return out.str();
46  })
47  .def("__str__",
48  [](const Has_Attributes& ha) {
49  std::ostringstream out;
50  auto names = ha.list();
51  out << "<ioda.Has_Attributes: [ ";
52  for (const auto& s : names) out << s << " ";
53  out << "]>";
54 
55  return out.str();
56  })
57 
58  ;
59 }
60 
61 /// \todo AttributeCreator store needs python bindings.
62 /// Either add in the necessary inheritance structures or clone the function bindings.
63 void setupAttCreator(pybind11::module& m) {
64  py::class_<Attribute_Creator_Store> acs(m, "Attribute_Creator_Store");
65  acs.doc() = "Parameters involved in creating new attributes";
66 }
Interfaces for ioda::Group and related classes.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual void rename(const std::string &oldName, const std::string &newName)
Rename an Attribute.
Attribute _create_py(const std::string &attrname, BasicTypes dataType, const std::vector< Dimensions_t > &dimensions={1})
Python compatability function.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
Python bindings - macros.
void setupHasAttributes(pybind11::module &m)
void setupAttCreator(pybind11::module &m)