LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
propertyList.cc
Go to the documentation of this file.
1 #include <cstddef>
2 #include "pybind11/pybind11.h"
3 #include "pybind11/stl.h"
4 
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 } // namespace
59 
60 PYBIND11_MODULE(propertyList, mod) {
61  py::module::import("lsst.daf.base.persistable");
62 
63  py::class_<PropertyList, std::shared_ptr<PropertyList>, PropertySet> 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<std::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
table::Key< std::string > name
Definition: Amplifier.cc:116
Interface for DateTime class.
T c_str(T... args)
Class for storing ordered metadata with comments.
Definition: PropertyList.h:68
Class for storing generic metadata.
Definition: PropertySet.h:66
daf::base::PropertySet * set
Definition: fits.cc:912
std::string const & getName() const noexcept
Return a filter's name.
Definition: Filter.h:78
PYBIND11_MODULE(propertyList, mod)
Definition: propertyList.cc:60
A base class for image defects.