LSSTApplications  18.1.0
LSSTDataManagementBasePackage
propertySet.cc
Go to the documentation of this file.
1 #include "pybind11/pybind11.h"
2 #include "pybind11/stl.h"
3 
4 #include <string>
5 #include <typeinfo>
6 
10 
11 namespace py = pybind11;
12 using namespace pybind11::literals;
13 
14 namespace lsst {
15 namespace daf {
16 namespace base {
17 namespace {
18 
19 template <typename T, typename C>
20 void declareAccessors(C& cls, std::string const& name) {
21  const std::string getName = "get" + name;
22  cls.def(getName.c_str(), (T (PropertySet::*)(std::string const&) const) & PropertySet::get<T>, "name"_a);
23  cls.def(getName.c_str(), (T (PropertySet::*)(std::string const&, T const&) const) & PropertySet::get<T>,
24  "name"_a, "defaultValue"_a);
25 
26  const std::string getArrayName = "getArray" + name;
27  cls.def(getArrayName.c_str(),
28  (std::vector<T> (PropertySet::*)(std::string const&) const) & PropertySet::getArray<T>, "name"_a);
29 
30  const std::string setName = "set" + name;
31  cls.def(setName.c_str(), (void (PropertySet::*)(std::string const&, T const&)) & PropertySet::set<T>,
32  "name"_a, "value"_a);
33  cls.def(setName.c_str(),
34  (void (PropertySet::*)(std::string const&, std::vector<T> const&)) & PropertySet::set<T>,
35  "name"_a, "value"_a);
36 
37  const std::string addName = "add" + name;
38  cls.def(addName.c_str(), (void (PropertySet::*)(std::string const&, T const&)) & PropertySet::add<T>,
39  "name"_a, "value"_a);
40  cls.def(addName.c_str(),
41  (void (PropertySet::*)(std::string const&, std::vector<T> const&)) & PropertySet::add<T>,
42  "name"_a, "value"_a);
43 
44  const std::string typeName = "TYPE_" + name;
45  cls.attr(typeName.c_str()) = py::cast(PropertySet::typeOfT<T>(), py::return_value_policy::reference);
46 }
47 
48 } // <anonymous>
49 
51  py::module::import("lsst.daf.base.persistable");
52 
53  py::class_<std::type_info>(mod, "TypeInfo")
54  .def("__eq__",
55  [](std::type_info const& self, std::type_info const& other) { return self == other; })
56  .def("__ne__",
57  [](std::type_info const& self, std::type_info const& other) { return self != other; })
58  .def("name", &std::type_info::name)
59  .def("__hash__", &std::type_info::hash_code);
60 
61  py::class_<PropertySet, std::shared_ptr<PropertySet>, Citizen> cls(mod, "PropertySet");
62 
63  cls.def(py::init<bool>(), "flat"_a = false);
64 
65  cls.def("deepCopy", &PropertySet::deepCopy);
66  cls.def("nameCount", &PropertySet::nameCount, "topLevelOnly"_a = true);
67  cls.def("names", &PropertySet::names, "topLevelOnly"_a = true);
68  cls.def("paramNames", &PropertySet::paramNames, "topLevelOnly"_a = true);
69  cls.def("propertySetNames", &PropertySet::propertySetNames, "topLevelOnly"_a = true);
70  cls.def("exists", &PropertySet::exists);
71  cls.def("isArray", &PropertySet::isArray);
72  cls.def("isUndefined", &PropertySet::isUndefined);
73  cls.def("isPropertySetPtr", &PropertySet::isPropertySetPtr);
74  cls.def("valueCount", &PropertySet::valueCount);
75  cls.def("typeOf", &PropertySet::typeOf, py::return_value_policy::reference);
76  cls.def("toString", &PropertySet::toString, "topLevelOnly"_a = false, "indent"_a = "");
77  cls.def("copy", &PropertySet::copy, "dest"_a, "source"_a, "name"_a, "asScalar"_a=false);
78  cls.def("combine", &PropertySet::combine);
79  cls.def("remove", &PropertySet::remove);
80  cls.def("getAsBool", &PropertySet::getAsBool);
81  cls.def("getAsInt", &PropertySet::getAsInt);
82  cls.def("getAsInt64", &PropertySet::getAsInt64);
83  cls.def("getAsUInt64", &PropertySet::getAsUInt64);
84  cls.def("getAsDouble", &PropertySet::getAsDouble);
85  cls.def("getAsString", &PropertySet::getAsString);
86  cls.def("getAsPropertySetPtr", &PropertySet::getAsPropertySetPtr);
87  cls.def("getAsPersistablePtr", &PropertySet::getAsPersistablePtr);
88 
89  declareAccessors<bool>(cls, "Bool");
90  declareAccessors<short>(cls, "Short");
91  declareAccessors<int>(cls, "Int");
92  declareAccessors<long>(cls, "Long");
93  declareAccessors<long long>(cls, "LongLong");
94  declareAccessors<unsigned long long>(cls, "UnsignedLongLong");
95  declareAccessors<float>(cls, "Float");
96  declareAccessors<double>(cls, "Double");
97  declareAccessors<nullptr_t>(cls, "Undef");
98  declareAccessors<std::string>(cls, "String");
99  declareAccessors<DateTime>(cls, "DateTime");
100  declareAccessors<std::shared_ptr<PropertySet>>(cls, "PropertySet");
101 }
102 
103 } // base
104 } // daf
105 } // lsst
T hash_code(T... args)
PYBIND11_MODULE(propertySet, mod)
Definition: propertySet.cc:50
STL class.
A base class for image defects.
Interface for DateTime class.
STL class.
T name(T... args)
T c_str(T... args)
ItemVariant const * other
Definition: Schema.cc:56
Citizen is a class that should be among all LSST classes base classes, and handles basic memory manag...
Definition: Citizen.h:55