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
}
Group.h
Interfaces for ioda::Group and related classes.
macros.h
Python bindings - macros.
ioda
Definition:
FileFormat.cc:11
ioda::BasicTypes::ullint_
@ ullint_
ioda::BasicTypes::uint16_
@ uint16_
ioda::BasicTypes::short_
@ short_
ioda::BasicTypes::lint_
@ lint_
ioda::BasicTypes::int32_
@ int32_
ioda::BasicTypes::bool_
@ bool_
ioda::BasicTypes::uint64_
@ uint64_
ioda::BasicTypes::char_
@ char_
ioda::BasicTypes::int16_
@ int16_
ioda::BasicTypes::uint32_
@ uint32_
ioda::BasicTypes::str_
@ str_
ioda::BasicTypes::double_
@ double_
ioda::BasicTypes::ushort_
@ ushort_
ioda::BasicTypes::llint_
@ llint_
ioda::BasicTypes::uint_
@ uint_
ioda::BasicTypes::ldouble_
@ ldouble_
ioda::BasicTypes::int_
@ int_
ioda::BasicTypes::int64_
@ int64_
ioda::BasicTypes::ulint_
@ ulint_
ioda::BasicTypes::float_
@ float_
setupTypeSystem
void setupTypeSystem(pybind11::module &m)
Definition:
py_types.cpp:22
mpas-bundle
ioda
src
engines
ioda
python
py_types.cpp
Generated on Wed Sep 8 2021 16:47:03 for IODA by
1.9.1