LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
_base.cc
Go to the documentation of this file.
1 /*
2  * This file is part of afw.
3  *
4  * Developed for the LSST Data Management System.
5  * This product includes software developed by the LSST Project
6  * (https://www.lsst.org).
7  * See the COPYRIGHT file at the top-level directory of this distribution
8  * for details of code ownership.
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
24 /*
25 Unlike most pybind11 wrapper classes, which have one .cc file per header file,
26 this module wraps both BaseRecord.h and BaseTable.h (as well as CatalogT<BaseRecord> from Catalog.h).
27 
28 This allows us to define BaseCatalog.Table = clsBaseTable, which is needed to support `cast` in Python,
29 and makes wrapping Base catalogs more similar to all other types of catalog.
30 */
31 
32 #include "pybind11/pybind11.h"
33 
34 #include "ndarray/pybind11.h"
35 
36 #include "lsst/utils/python.h"
37 
38 #include "lsst/afw/table/Flag.h"
45 
46 namespace py = pybind11;
47 using namespace pybind11::literals;
48 
49 namespace lsst {
50 namespace afw {
51 namespace table {
52 
53 using utils::python::WrapperCollection;
54 
55 namespace {
56 
57 using PyBaseRecord = py::class_<BaseRecord, std::shared_ptr<BaseRecord>>;
58 using PyBaseTable = py::class_<BaseTable, std::shared_ptr<BaseTable>>;
59 
60 template <typename T>
61 void declareBaseRecordOverloads(PyBaseRecord &cls, std::string const &suffix) {
62  using Getter = typename Field<T>::Value (BaseRecord::*)(const Key<T> &) const;
63  using Setter = void (BaseRecord::*)(const Key<T> &, const typename Field<T>::Value &);
64  cls.def(("get" + suffix).c_str(), (Getter)&BaseRecord::get);
65  cls.def(("set" + suffix).c_str(), (Setter)&BaseRecord::set);
66 }
67 
68 template <typename T>
69 void declareBaseRecordArrayOverloads(PyBaseRecord &cls, std::string const &suffix) {
70  auto getter = [](BaseRecord &self, Key<Array<T>> const &key) -> ndarray::Array<T, 1, 1> {
71  return self[key];
72  };
73  auto setter = [](BaseRecord &self, Key<Array<T>> const &key, py::object const &value) {
74  if (key.getSize() == 0) {
75  // Variable-length array field: do a shallow copy, which requires a non-const
76  // contiguous array.
77  self.set(key, py::cast<ndarray::Array<T, 1, 1>>(value));
78  } else {
79  // Fixed-length array field: do a deep copy, which can work with a const
80  // noncontiguous array. But we need to check the size first, since the
81  // penalty for getting that wrong is assert->abort.
82  auto v = py::cast<ndarray::Array<T const, 1, 0>>(value);
83  ndarray::ArrayRef<T, 1, 1> ref = self[key];
84  if (v.size() != ref.size()) {
85  throw LSST_EXCEPT(
86  pex::exceptions::LengthError,
87  (boost::format("Array sizes do not agree: %s != %s") % v.size() % ref.size()).str());
88  }
89  ref = v;
90  }
91  return;
92  };
93  cls.def(("get" + suffix).c_str(), getter);
94  cls.def(("set" + suffix).c_str(), setter);
95 }
96 
97 PyBaseRecord declareBaseRecord(WrapperCollection &wrappers) {
98  return wrappers.wrapType(PyBaseRecord(wrappers.module, "BaseRecord"), [](auto &mod, auto &cls) {
99  utils::python::addSharedPtrEquality<BaseRecord>(cls);
100  cls.def("assign", (void (BaseRecord::*)(BaseRecord const &)) & BaseRecord::assign);
101  cls.def("assign",
102  (void (BaseRecord::*)(BaseRecord const &, SchemaMapper const &)) & BaseRecord::assign);
103  cls.def("getSchema", &BaseRecord::getSchema);
104  cls.def("getTable", &BaseRecord::getTable);
105  cls.def_property_readonly("schema", &BaseRecord::getSchema);
106  cls.def_property_readonly("table", &BaseRecord::getTable);
107 
108  declareBaseRecordOverloads<double>(cls, "D");
109  declareBaseRecordOverloads<float>(cls, "F");
110  declareBaseRecordOverloads<lsst::afw::table::Flag>(cls, "Flag");
111  declareBaseRecordOverloads<std::uint8_t>(cls, "B");
112  declareBaseRecordOverloads<std::uint16_t>(cls, "U");
113  declareBaseRecordOverloads<std::int32_t>(cls, "I");
114  declareBaseRecordOverloads<std::int64_t>(cls, "L");
115  declareBaseRecordOverloads<std::string>(cls, "String");
116  declareBaseRecordOverloads<lsst::geom::Angle>(cls, "Angle");
117  declareBaseRecordArrayOverloads<std::uint8_t>(cls, "ArrayB");
118  declareBaseRecordArrayOverloads<std::uint16_t>(cls, "ArrayU");
119  declareBaseRecordArrayOverloads<int>(cls, "ArrayI");
120  declareBaseRecordArrayOverloads<float>(cls, "ArrayF");
121  declareBaseRecordArrayOverloads<double>(cls, "ArrayD");
122  utils::python::addOutputOp(cls, "__str__"); // __repr__ is defined in baseContinued.py
123 
124  // These are master getters and setters that can take either strings, Keys, or
125  // FunctorKeys, and dispatch to key.get.
126  auto getter = [](py::object const &self, py::object key) -> py::object {
127  py::object schema = self.attr("schema");
128  if (py::isinstance<py::str>(key) || py::isinstance<py::bytes>(key)) {
129  key = schema.attr("find")(key).attr("key");
130  }
131  return key.attr("get")(self);
132  };
133  auto setter = [](py::object const &self, py::object key, py::object const &value) -> void {
134  py::object schema = self.attr("schema");
135  if (py::isinstance<py::str>(key) || py::isinstance<py::bytes>(key)) {
136  key = schema.attr("find")(key).attr("key");
137  }
138  key.attr("set")(self, value);
139  };
140 
141  // The distinction between get/set and operator[] is meaningful in C++, because "record[k] = v"
142  // operates by returning an object that can be assigned to.
143  // But there's no meaningful difference between get/set and __getitem__/__setitem__.
144  cls.def("get", getter);
145  cls.def("__getitem__", getter);
146  cls.def("set", setter);
147  cls.def("__setitem__", setter);
148  });
149 }
150 
151 PyBaseTable declareBaseTable(WrapperCollection &wrappers) {
152  return wrappers.wrapType(PyBaseTable(wrappers.module, "BaseTable"), [](auto &mod, auto &cls) {
153  utils::python::addSharedPtrEquality<BaseTable>(cls);
154  cls.def_static("make", &BaseTable::make);
155  cls.def("getMetadata", &BaseTable::getMetadata);
156  cls.def("setMetadata", &BaseTable::setMetadata, "metadata"_a);
157  cls.def("popMetadata", &BaseTable::popMetadata);
158  cls.def("makeRecord", &BaseTable::makeRecord);
159  cls.def("copyRecord",
160  (std::shared_ptr<BaseRecord>(BaseTable::*)(BaseRecord const &)) & BaseTable::copyRecord);
161  cls.def("copyRecord",
162  (std::shared_ptr<BaseRecord>(BaseTable::*)(BaseRecord const &, SchemaMapper const &)) &
163  BaseTable::copyRecord);
164  cls.def("getSchema", &BaseTable::getSchema);
165  cls.def_property_readonly("schema", &BaseTable::getSchema);
166  cls.def("getBufferSize", &BaseTable::getBufferSize);
167  cls.def("clone", &BaseTable::clone);
168  cls.def("preallocate", &BaseTable::preallocate);
169  });
170 }
171 
172 } // namespace
173 
174 void wrapBase(WrapperCollection &wrappers) {
175  wrappers.addSignatureDependency("lsst.daf.base");
176 
177  auto clsBaseTable = declareBaseTable(wrappers);
178  auto clsBaseRecord = declareBaseRecord(wrappers);
179  auto clsBaseCatalog = table::python::declareCatalog<BaseRecord>(wrappers, "Base");
180  auto clsBaseColumnView = table::python::declareColumnView<BaseRecord>(wrappers, "Base");
181 
182  clsBaseRecord.attr("Table") = clsBaseTable;
183  clsBaseRecord.attr("ColumnView") = clsBaseColumnView;
184  clsBaseRecord.attr("Catalog") = clsBaseCatalog;
185  clsBaseTable.attr("Record") = clsBaseRecord;
186  clsBaseTable.attr("ColumnView") = clsBaseColumnView;
187  clsBaseTable.attr("Catalog") = clsBaseCatalog;
188  clsBaseCatalog.attr("Record") = clsBaseRecord;
189  clsBaseCatalog.attr("Table") = clsBaseTable;
190  clsBaseCatalog.attr("ColumnView") = clsBaseColumnView;
191 }
192 
193 } // namespace table
194 } // namespace afw
195 } // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
daf::base::PropertySet * set
Definition: fits.cc:912
void wrapBase(WrapperCollection &wrappers)
Definition: _base.cc:174
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
A base class for image defects.
T ref(T... args)