LSSTApplications  18.1.0
LSSTDataManagementBasePackage
propertyList.cc
Go to the documentation of this file.
1 #include "pybind11/pybind11.h"
2 #include "pybind11/stl.h"
3 
7 
8 namespace py = pybind11;
9 using namespace pybind11::literals;
10 
11 namespace lsst {
12 namespace daf {
13 namespace base {
14 namespace {
15 
16 template <typename T, typename C>
17 void declareAccessors(C& cls, std::string const& name) {
18  const std::string getName = "get" + name;
19  cls.def(getName.c_str(), (T (PropertyList::*)(std::string const&) const) & PropertyList::get<T>,
20  "name"_a);
21  cls.def(getName.c_str(), (T (PropertyList::*)(std::string const&, T const&) const) & PropertyList::get<T>,
22  "name"_a, "defaultValue"_a);
23 
24  // Warning: __len__ is ambiguous so do not attempt to define it. It could return
25  // the number of unique names or the number of entries (e.g. as returned by toList,
26  // a pure Python method). C++ begin and end iterate over unique names, but users often
27  // view PropertyList as a representation of a FITS header. When in doubt, refuse to guess.
28 
29  const std::string getArrayName = "getArray" + name;
30  cls.def(getArrayName.c_str(),
31  (std::vector<T> (PropertyList::*)(std::string const&) const) & PropertyList::getArray<T>,
32  "name"_a);
33 
34  const std::string setName = "set" + name;
35  cls.def(setName.c_str(), (void (PropertyList::*)(std::string const&, T const&)) & PropertyList::set<T>);
36  cls.def(setName.c_str(),
37  (void (PropertyList::*)(std::string const&, std::vector<T> const&)) & PropertyList::set<T>);
38  cls.def(setName.c_str(), (void (PropertyList::*)(std::string const&, T const&, std::string const&)) &
39  PropertyList::set<T>);
40  cls.def(setName.c_str(),
41  (void (PropertyList::*)(std::string const&, std::vector<T> const&, std::string const&)) &
42  PropertyList::set<T>);
43 
44  const std::string addName = "add" + name;
45  cls.def(addName.c_str(), (void (PropertyList::*)(std::string const&, T const&)) & PropertyList::add<T>);
46  cls.def(addName.c_str(),
47  (void (PropertyList::*)(std::string const&, std::vector<T> const&)) & PropertyList::add<T>);
48  cls.def(addName.c_str(), (void (PropertyList::*)(std::string const&, T const&, std::string const&)) &
49  PropertyList::add<T>);
50  cls.def(addName.c_str(),
51  (void (PropertyList::*)(std::string const&, std::vector<T> const&, std::string const&)) &
52  PropertyList::add<T>);
53 
54  const std::string typeName = "TYPE_" + name;
55  cls.attr(typeName.c_str()) = py::cast(typeid(T), py::return_value_policy::reference);
56 }
57 
58 } // <anonymous>
59 
61  py::module::import("lsst.daf.base.persistable");
62 
63  py::class_<PropertyList, std::shared_ptr<PropertyList>, PropertySet, Citizen> cls(mod, "PropertyList");
64 
65  cls.def(py::init<>());
66 
67  cls.def("getComment", &PropertyList::getComment);
68  cls.def("getOrderedNames", &PropertyList::getOrderedNames);
69  cls.def("deepCopy",
70  [](PropertyList const& self) { return std::static_pointer_cast<PropertySet>(self.deepCopy()); });
71  declareAccessors<bool>(cls, "Bool");
72  declareAccessors<short>(cls, "Short");
73  declareAccessors<int>(cls, "Int");
74  declareAccessors<long>(cls, "Long");
75  declareAccessors<long long>(cls, "LongLong");
76  declareAccessors<float>(cls, "Float");
77  declareAccessors<double>(cls, "Double");
78  declareAccessors<nullptr_t>(cls, "Undef");
79  declareAccessors<std::string>(cls, "String");
80  declareAccessors<DateTime>(cls, "DateTime");
81 
82  cls.def("setPropertySet",
83  (void (PropertyList::*)(std::string const&, PropertySet::Ptr const&)) & PropertyList::set);
84 }
85 
86 } // base
87 } // daf
88 } // lsst
PYBIND11_MODULE(propertyList, mod)
Definition: propertyList.cc:60
Class for storing ordered metadata with comments.
Definition: PropertyList.h:68
daf::base::PropertySet * set
Definition: fits.cc:884
STL class.
A base class for image defects.
T static_pointer_cast(T... args)
Interface for DateTime class.
STL class.
Class for storing generic metadata.
Definition: PropertySet.h:68
T c_str(T... args)
Citizen is a class that should be among all LSST classes base classes, and handles basic memory manag...
Definition: Citizen.h:55