IODA
py_selections.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_attributes.cpp
8 /// \brief Python bindings - 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 /// \todo Finish!
23 void setupSelections(pybind11::module& m) {
24  /*
25  py::enum_<SelectionOperator>(m, "Selection Operator")
26  .value("SET", SelectionOperator::SET)
27  .value("OR", SelectionOperator::OR)
28  .value("AND", SelectionOperator::AND)
29  .value("XOR", SelectionOperator::XOR)
30  .value("NOT_B", SelectionOperator::NOT_B)
31  .value("NOT_A", SelectionOperator::NOT_A)
32  .value("APPEND", SelectionOperator::APPEND)
33  .value("PREPEND", SelectionOperator::PREPEND)
34  ;
35  py::enum_<SelectionState>(m, "Selection State")
36  .value("ALL", SelectionState::ALL)
37  .value("NONE", SelectionState::NONE)
38  ;
39  py::class_<Selection::SingleSelection>(m, "SingleSelection")
40  .def_readwrite("op_", &Selection::SingleSelection::op_)
41  .def_readwrite("start_", &Selection::SingleSelection::start_)
42  .def_readwrite("count_", &Selection::SingleSelection::count_)
43  .def_readwrite("stride_", &Selection::SingleSelection::stride_)
44  .def_readwrite("block_", &Selection::SingleSelection::block_)
45  .def_readwrite("points_", &Selection::SingleSelection::points_)
46  ;
47  */
48  py::class_<Selection> sel(m, "Selection");
49  sel.doc() = "Selections of data in variables";
50  sel
51  /*
52  .def_readwrite("default_", &Selection::default_)
53  .def_readwrite("actions_", &Selection::actions_)
54  .def_readwrite("offset_", &Selection::offset_)
55  .def_readwrite("extent", &Selection::extent_)
56  */
57  .def_readonly_static("all", &Selection::all)
58  .def_readonly_static("none", &Selection::none);
59 }
Interfaces for ioda::Group and related classes.
static IODA_DL const Selection none
Definition: Selection.h:132
static IODA_DL const Selection all
Definition: Selection.h:131
Python bindings - macros.
void setupSelections(pybind11::module &m)