LSST Applications g1653933729+a8ce1bb630,g1a997c3884+a8ce1bb630,g1b393d1bc7+82476ad7c1,g28da252d5a+3d3e1c4204,g2bbee38e9b+97aa061eef,g2bc492864f+97aa061eef,g2cdde0e794+3ad5f2bb52,g2f1216ac18+8615c5b65f,g3156d2b45e+07302053f8,g347aa1857d+97aa061eef,g35bb328faa+a8ce1bb630,g3a166c0a6a+97aa061eef,g3e281a1b8c+693a468c5f,g4005a62e65+17cd334064,g414038480c+56e3b84a79,g41af890bb2+e5200c8fd9,g65afce507f+0106b0cffc,g80478fca09+e9b577042c,g82479be7b0+a273c6d073,g858d7b2824+b43ab392d2,g9125e01d80+a8ce1bb630,ga5288a1d22+3199fccd69,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gbb4f38f987+b43ab392d2,gc28159a63d+97aa061eef,gcd3f1c0c93+2e89b03209,gcf0d15dbbd+a0207f3e71,gd35896b8e2+3e8344a67c,gda3e153d99+b43ab392d2,gda6a2b7d83+a0207f3e71,gdaeeff99f8+1711a396fd,ge2409df99d+e6e587e663,ge33fd446bb+b43ab392d2,ge79ae78c31+97aa061eef,gf0baf85859+5daf287408,gf5289d68f6+c4f2338d90,gfda6b12a05+3bcad770a9,w.2024.42
LSST Data Management Base Package
Loading...
Searching...
No Matches
BaseRecord.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2#ifndef AFW_TABLE_BaseRecord_h_INCLUDED
3#define AFW_TABLE_BaseRecord_h_INCLUDED
4
5#include <iosfwd>
6
7#include "lsst/base.h"
12
13namespace lsst {
14namespace afw {
15namespace table {
16
32protected:
33
34 // Protected class whose instances must be passed to the public
35 // constructor, providing more fine-grained access control than a
36 // protected constructor would. In particular, this allows make_shared to
37 // be used.
39 private:
40 friend class BaseTable;
41
42 // A private ctor for this class (and friendship) is necessary to
43 // prevent e.g. BaseRecord({}, ...) calls from code without access
44 // to ConstructionToken.
45 explicit ConstructionToken(int) noexcept {}
46 };
47
48public:
49
58 BaseRecord(ConstructionToken const &, detail::RecordData && data);
59 // No copying
60 BaseRecord(const BaseRecord&) = delete;
61 BaseRecord& operator=(const BaseRecord&) = delete;
62
63 // No moving
66
69
72
75
78
80 Schema getSchema() const { return _table->getSchema(); }
81
83 std::shared_ptr<BaseTable const> getTable() const { return _table; }
84
92 template <typename T>
93 typename Field<T>::Element* getElement(Key<T> const& key) {
94 if (!key.isValid()) {
95 throw LSST_EXCEPT(
97 "Key is not valid (if this is a SourceRecord, make sure slot aliases have been set up).");
98 }
99 return reinterpret_cast<typename Field<T>::Element*>(reinterpret_cast<char*>(_data) +
100 key.getOffset());
101 }
102
110 template <typename T>
111 typename Field<T>::Element const* getElement(Key<T> const& key) const {
112 if (!key.isValid()) {
113 throw LSST_EXCEPT(
115 "Key is not valid (if this is a SourceRecord, make sure slot aliases have been set up).");
116 }
117 return reinterpret_cast<typename Field<T>::Element const*>(reinterpret_cast<char const*>(_data) +
118 key.getOffset());
119 }
120
128 template <typename T>
129 typename Field<T>::Reference operator[](Key<T> const& key) {
130 return key.getReference(getElement(key), _manager);
131 }
132
140 template <typename T>
141 typename Field<T>::ConstReference operator[](Key<T> const& key) const {
142 return key.getConstReference(getElement(key), _manager);
143 }
144
150 template <typename T>
151 typename Field<T>::Value get(Key<T> const& key) const {
152 return key.getValue(getElement(key), _manager);
153 }
154
163 template <typename T, typename U>
164 void set(Key<T> const& key, U const& value) {
165 key.setValue(getElement(key), _manager, value);
166 }
167
171 template <typename T>
172 T get(OutputFunctorKey<T> const& key) const {
173 return key.get(*this);
174 }
175
179 template <typename T, typename U>
180 void set(InputFunctorKey<T> const& key, U const& value) {
181 return key.set(*this, value);
182 }
183
184 template <typename Ref>
186 return key.getReference(*this);
187 }
188
189 template <typename ConstRef>
191 return key.getConstReference(*this);
192 }
193
195 void assign(BaseRecord const& other);
196
198 void assign(BaseRecord const& other, SchemaMapper const& mapper);
199
200 ndarray::Manager::Ptr getManager() const { return _manager; }
201
202 virtual ~BaseRecord() { _table->_destroy(*this); }
203
205 friend std::ostream& operator<<(std::ostream& os, BaseRecord const& record);
206
207protected:
209 virtual void _assign(BaseRecord const& other) {}
210
213 virtual void _stream(std::ostream& os) const;
214
215
216private:
217 friend class BaseTable;
218 friend class BaseColumnView;
219
220 // All these are definitely private, not protected - we don't want derived classes mucking with them.
221 void* _data; // pointer to field data
222 std::shared_ptr<BaseTable> _table; // the associated table
223 ndarray::Manager::Ptr _manager; // shared manager for lifetime of _data (like shared_ptr with no pointer)
224};
225
226template <typename RecordT, typename ...Args>
228 return std::make_shared<RecordT>(BaseRecord::ConstructionToken(0), _makeNewRecordData(),
229 std::forward<Args>(args)...);
230}
231
232
233} // namespace table
234} // namespace afw
235} // namespace lsst
236
237#endif // !AFW_TABLE_BaseRecord_h_INCLUDED
char * data
Definition BaseRecord.cc:61
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
SchemaMapper * mapper
Basic LSST definitions.
Tag types used to declare specialized field types.
Definition misc.h:31
Column-wise view into a sequence of records that have been allocated contiguously.
Base class for all records.
Definition BaseRecord.h:31
Ref operator[](ReferenceFunctorKey< Ref > const &key)
Definition BaseRecord.h:185
Field< T >::Value get(Key< T > const &key) const
Return the value of a field for the given key.
Definition BaseRecord.h:151
Field< T >::Element * getElement(Key< T > const &key)
Return a pointer to the underlying elements of a field (non-const).
Definition BaseRecord.h:93
void assign(BaseRecord const &other)
Copy all field values from other to this, requiring that they have equal schemas.
ConstRef operator[](ConstReferenceFunctorKey< ConstRef > const &key) const
Definition BaseRecord.h:190
std::shared_ptr< BaseTable const > getTable() const
Return the table this record is associated with.
Definition BaseRecord.h:83
BaseRecord & operator=(BaseRecord &&)=delete
Field< T >::Reference operator[](Key< T > const &key)
Return a reference (or reference-like type) to the field's value.
Definition BaseRecord.h:129
BaseRecord & operator=(const BaseRecord &)=delete
BaseRecord(BaseRecord &&)=delete
Field< T >::Element const * getElement(Key< T > const &key) const
Return a pointer to the underlying elements of a field (const).
Definition BaseRecord.h:111
Schema getSchema() const
Return the Schema that holds this record's fields and keys.
Definition BaseRecord.h:80
ndarray::Manager::Ptr getManager() const
Definition BaseRecord.h:200
void set(InputFunctorKey< T > const &key, U const &value)
Set a calculated or aggregate field.
Definition BaseRecord.h:180
BaseRecord(const BaseRecord &)=delete
BaseRecord(ConstructionToken const &, detail::RecordData &&data)
Construct a record with uninitialized data.
void set(Key< T > const &key, U const &value)
Set value of a field for the given key.
Definition BaseRecord.h:164
T get(OutputFunctorKey< T > const &key) const
Compute a calculated or aggregate field.
Definition BaseRecord.h:172
virtual void _assign(BaseRecord const &other)
Called by assign() after transferring fields to allow subclass data members to be copied.
Definition BaseRecord.h:209
friend std::ostream & operator<<(std::ostream &os, BaseRecord const &record)
Write the record's content out, one field on each line.
virtual void _stream(std::ostream &os) const
Called by operator<<.
Field< T >::ConstReference operator[](Key< T > const &key) const
Return a const reference (or const-reference-like type) to the field's value.
Definition BaseRecord.h:141
Base class for all tables.
Definition BaseTable.h:61
std::shared_ptr< RecordT > constructRecord(Args &&... args)
Helper function that must be used by all _makeRecord overrides to actually construct records.
Definition BaseRecord.h:227
Defines the fields and offsets for a table.
Definition Schema.h:51
A mapping between the keys of two Schemas, used to copy data between them.
Reports errors in the logical structure of the program.
Definition Runtime.h:46
const T & ConstReference
the type returned by BaseRecord::operator[] (const)
Definition FieldBase.h:44
T & Reference
the type returned by BaseRecord::operator[] (non-const)
Definition FieldBase.h:43
T Value
the type returned by BaseRecord::get
Definition FieldBase.h:42
typename FieldBase< T >::Element Element
Type used to store field data in the table (a field may have multiple elements).
Definition Field.h:26
Helper struct that contains the information passed from BaseTable to BaseRecord at construction.
Definition BaseTable.h:32