Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+05816baf74,g1ec0fe41b4+f536777771,g1fd858c14a+a9301854fb,g35bb328faa+fcb1d3bbc8,g4af146b050+a5c07d5b1d,g4d2262a081+6e5fcc2a4e,g53246c7159+fcb1d3bbc8,g56a49b3a55+9c12191793,g5a012ec0e7+3632fc3ff3,g60b5630c4e+ded28b650d,g67b6fd64d1+ed4b5058f4,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+7b42cf88bf,g8852436030+e5453db6e6,g89139ef638+ed4b5058f4,g8e3bb8577d+d38d73bdbd,g9125e01d80+fcb1d3bbc8,g94187f82dc+ded28b650d,g989de1cb63+ed4b5058f4,g9d31334357+ded28b650d,g9f33ca652e+50a8019d8c,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+d9fb1f8026,gb58c049af0+f03b321e39,gb665e3612d+2a0c9e9e84,gb89ab40317+ed4b5058f4,gcf25f946ba+e5453db6e6,gd6cbbdb0b4+bb83cc51f8,gdd1046aedd+ded28b650d,gde0f65d7ad+941d412827,ge278dab8ac+d65b3c2b70,ge410e46f29+ed4b5058f4,gf23fb2af72+b7cae620c0,gf5e32f922b+fcb1d3bbc8,gf67bdafdda+ed4b5058f4,w.2025.16
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
_baseColumnView.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#include "pybind11/pybind11.h"
25#include "pybind11/stl.h"
26
27#include "ndarray/pybind11.h"
28
30
31#include "lsst/afw/table/Key.h"
33
34namespace py = pybind11;
35using namespace py::literals;
36
37namespace lsst {
38namespace afw {
39namespace table {
40
41using cpputils::python::WrapperCollection;
42
43namespace {
44
45using PyBaseColumnView = py::class_<BaseColumnView, std::shared_ptr<BaseColumnView>>;
46
47using PyBitsColumn = py::class_<BitsColumn, std::shared_ptr<BitsColumn>>;
48
49template <typename T, typename PyClass>
50static void declareBaseColumnViewOverloads(PyClass &cls) {
51 cls.def("_basicget", [](BaseColumnView & self, Key<T> const &key) -> typename ndarray::Array<T, 1> const {
52 return self[key];
53 });
54};
55
56template <typename U, typename PyClass>
57static void declareBaseColumnViewArrayOverloads(PyClass &cls) {
58 cls.def("_basicget",
59 [](BaseColumnView & self, Key<lsst::afw::table::Array<U>> const &key) ->
60 typename ndarray::Array<U, 2, 1> const { return self[key]; });
61};
62
63// TODO: remove this method and any calls to it on DM-32980.
64template <typename PyClass>
65static void declareBaseColumnViewFlagOverloads(PyClass &cls) {
66 cls.def("_basicget",
67 [](BaseColumnView &self, Key<Flag> const &key) -> ndarray::Array<bool const, 1, 1> const {
68 PyErr_WarnEx(
69 PyExc_FutureWarning,
70 "Flag/bool access via ColumnView objects is deprecated in favor of more complete support "
71 "on Catalog. Will be removed after v26.",
72 2 // stack level
73 );
74 return ndarray::copy(self[key]);
75 });
76};
77
78static void declareBaseColumnView(WrapperCollection &wrappers) {
79 // We can't call this "BaseColumnView" because that's the typedef for "ColumnViewT<BaseRecord>".
80 // This is just a mostly-invisible implementation base class, so we use the same naming convention
81 // we use for those.
82 wrappers.wrapType(PyBaseColumnView(wrappers.module, "_BaseColumnViewBase"), [](auto &mod, auto &cls) {
83 cls.def("getTable", &BaseColumnView::getTable);
84 cls.def_property_readonly("table", &BaseColumnView::getTable);
85 cls.def("getSchema", &BaseColumnView::getSchema);
86 cls.def_property_readonly("schema", &BaseColumnView::getSchema);
87 // _getBits supports a Python version of getBits that accepts None and field names as keys
88 cls.def("_getBits", &BaseColumnView::getBits);
89 cls.def("getAllBits", &BaseColumnView::getAllBits);
90 declareBaseColumnViewOverloads<std::uint8_t>(cls);
91 declareBaseColumnViewOverloads<std::uint16_t>(cls);
92 declareBaseColumnViewOverloads<std::int32_t>(cls);
93 declareBaseColumnViewOverloads<std::int64_t>(cls);
94 declareBaseColumnViewOverloads<float>(cls);
95 declareBaseColumnViewOverloads<double>(cls);
96 declareBaseColumnViewFlagOverloads(cls);
97 // std::string columns are not supported, because numpy string arrays
98 // do not have the same memory model as ours.
99 declareBaseColumnViewArrayOverloads<std::uint8_t>(cls);
100 declareBaseColumnViewArrayOverloads<std::uint16_t>(cls);
101 declareBaseColumnViewArrayOverloads<int>(cls);
102 declareBaseColumnViewArrayOverloads<float>(cls);
103 declareBaseColumnViewArrayOverloads<double>(cls);
104 // lsst::geom::Angle requires custom wrappers, because ndarray doesn't
105 // recognize it natively; we just return a double view
106 // (e.g. radians).
107 cls.def("_basicget", &BaseColumnView::get_radians_array);
108 });
109}
110
111static void declareBitsColumn(WrapperCollection &wrappers) {
112 wrappers.wrapType(PyBitsColumn(wrappers.module, "BitsColumn"), [](auto &mod, auto &cls) {
113 cls.def("getArray", &BitsColumn::getArray);
114 cls.def_property_readonly("array", &BitsColumn::getArray);
115 cls.def("getBit", (BitsColumn::SizeT(BitsColumn::*)(Key<Flag> const &) const) & BitsColumn::getBit,
116 "key"_a);
117 cls.def("getBit", (BitsColumn::SizeT(BitsColumn::*)(std::string const &) const) & BitsColumn::getBit,
118 "name"_a);
119 cls.def("getMask", (BitsColumn::SizeT(BitsColumn::*)(Key<Flag> const &) const) & BitsColumn::getMask,
120 "key"_a);
121 cls.def("getMask", (BitsColumn::SizeT(BitsColumn::*)(std::string const &) const) & BitsColumn::getMask,
122 "name"_a);
123 });
124}
125
126} // namespace
127
129 declareBaseColumnView(wrappers);
130 declareBitsColumn(wrappers);
131}
132
133} // namespace table
134} // namespace afw
135} // namespace lsst
PyType wrapType(PyType cls, ClassWrapperCallback function, bool setModuleName=true)
Add a type (class or enum) wrapper, deferring method and other attribute definitions until finish() i...
Definition python.h:391
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition python.h:448
Column-wise view into a sequence of records that have been allocated contiguously.
A class used as a handle to a particular field in a table.
Definition Key.h:53
A helper class for subdividing pybind11 module across multiple translation units (i....
Definition python.h:242
void wrapBaseColumnView(WrapperCollection &wrappers)