IODA
py_types.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_types.cpp
8 /// \brief Python bindings - Type system
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 setupTypeSystem(pybind11::module& m) {
23  py::enum_<BasicTypes> eTypes(m, "Types");
24  // Surprisingly, can't set a docstring on an enum.
25  // eTypes.doc() = "Basic types available in the C++/Python interface";
26  eTypes
27  .value("float", BasicTypes::float_,
28  "Platform-defined single precision float: typically sign bit, 8 bits exponent, 23 bits "
29  "mantissa")
30  .value("double", BasicTypes::double_,
31  "Platform-defined double precision float: typically sign bit, 11 bits exponent, 52 bits "
32  "mantissa")
33  .value("ldouble", BasicTypes::ldouble_, "Platform-defined extended-precision float")
34  .value("char", BasicTypes::char_, "C character type")
35  .value("short", BasicTypes::short_, "C short integer type (platform-defined)")
36  .value("ushort", BasicTypes::ushort_, "C unsigned short integer type (platform-defined)")
37  .value("int", BasicTypes::int_, "C integer type (platform-defined)")
38  .value("uint", BasicTypes::uint_, "C unsigned integer type (platform-defined)")
39  .value("lint", BasicTypes::lint_, "C long integer type (platform-defined)")
40  .value("ulint", BasicTypes::ulint_, "C unsigned long integer type (platform-defined)")
41  .value("llint", BasicTypes::llint_, "C long long type (platform-defined)")
42  .value("ullint", BasicTypes::ullint_, "C unsigned long long type (platform-defined)")
43  .value("int16", BasicTypes::int16_, "Integer (-32768 to 32767)")
44  .value("uint16", BasicTypes::uint16_, "Unsigned integer (0 to 65535)")
45  .value("int32", BasicTypes::int32_, "Integer (-2147483648 to 2147483647)")
46  .value("uint32", BasicTypes::uint32_, "Unsigned integer (0 to 4294967295)")
47  .value("int64", BasicTypes::int64_, "Integer (-9223372036854775808 to 9223372036854775807)")
48  .value("uint64", BasicTypes::uint64_, "Unsigned integer (0 to 18446744073709551615)")
49  .value("bool", BasicTypes::bool_, "Boolean (True or False) stored as a byte")
50  .value("str", BasicTypes::str_, "Variable-length UTF-8 string");
51 }
Interfaces for ioda::Group and related classes.
Python bindings - macros.
void setupTypeSystem(pybind11::module &m)
Definition: py_types.cpp:22