LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
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/*
25Unlike most pybind11 wrapper classes, which have one .cc file per header file,
26this module wraps both BaseRecord.h and BaseTable.h (as well as CatalogT<BaseRecord> from Catalog.h).
27
28This allows us to define BaseCatalog.Table = clsBaseTable, which is needed to support `cast` in Python,
29and 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
46namespace py = pybind11;
47using namespace pybind11::literals;
48
49namespace lsst {
50namespace afw {
51namespace table {
52
53using utils::python::WrapperCollection;
54
55namespace {
56
57using PyBaseRecord = py::class_<BaseRecord, std::shared_ptr<BaseRecord>>;
58using PyBaseTable = py::class_<BaseTable, std::shared_ptr<BaseTable>>;
59
60template <typename T>
61void 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
68template <typename T>
69void 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
97PyBaseRecord 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
151PyBaseTable 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
174void 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
Field< T >::Value get(Key< T > const &key) const
Return the value of a field for the given key.
Definition: BaseRecord.h:151
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
Definition: BaseRecord.h:164
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)
T Value
the type returned by BaseRecord::get
Definition: FieldBase.h:42