Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+a777afbe81,g07dc498a13+7e3c5f68a2,g12483e3c20+0145ec33cd,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+9f35e23ec3,g35bb328faa+fcb1d3bbc8,g3ad4f90e5c+0145ec33cd,g3bd4b5ce2c+cbf1bea503,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g5477a8d5ce+db04660fe6,g60b5630c4e+0145ec33cd,g623d845a50+0145ec33cd,g6f0c2978f1+3526b51a37,g75b6c65c88+d54b601591,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+4639f750a5,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g919ac25b3e+6220c5324a,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+2d6fa11d35,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+4a428ef779,gb4a253aaf5+0122250889,gb58c049af0+f03b321e39,gc99c83e5f0+76d20ab76d,gcf25f946ba+4639f750a5,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+3d8a3b7e46,ge278dab8ac+932305ba37,gf795337580+03b96afe58,gfba249425e+fcb1d3bbc8,w.2025.08
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
FieldBase.cc
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2
3#include <cstdint>
4#include <limits>
5
6#include "boost/format.hpp"
7#include "boost/preprocessor/seq/for_each.hpp"
8#include "boost/preprocessor/tuple/to_seq.hpp"
9
11#include "lsst/afw/table/Flag.h"
12
13namespace lsst {
14namespace afw {
15namespace table {
16
17namespace {
18
19template <typename T>
20struct TypeTraits;
21
22template <>
23struct TypeTraits<std::uint8_t> {
24 static char const *getName() { return "B"; }
25};
26template <>
27struct TypeTraits<std::uint16_t> {
28 static char const *getName() { return "U"; }
29};
30template <>
31struct TypeTraits<std::int32_t> {
32 static char const *getName() { return "I"; }
33};
34template <>
35struct TypeTraits<std::int64_t> {
36 static char const *getName() { return "L"; }
37};
38template <>
39struct TypeTraits<float> {
40 static char const *getName() { return "F"; }
41};
42template <>
43struct TypeTraits<double> {
44 static char const *getName() { return "D"; }
45};
46template <>
47struct TypeTraits<lsst::geom::Angle> {
48 static char const *getName() { return "Angle"; }
49};
50
51} // namespace
52
53//----- POD scalars -----------------------------------------------------------------------------------------
54
55template <typename T>
57 return TypeTraits<T>::getName();
58}
59
60//----- POD array -------------------------------------------------------------------------------------------
61
62template <typename U>
64 return (boost::format("Array%s") % TypeTraits<U>::getName()).str();
65}
66
67//----- String ----------------------------------------------------------------------------------------------
68
71
73
74std::string FieldBase<std::string>::getValue(Element const *p, ndarray::Manager::Ptr const &m) const {
75 if (isVariableLength()) {
76 // p is a pointer to a std::string; return a copy
77 return std::string(*reinterpret_cast<std::string const *>(p));
78 } else {
79 // p is a char * that is null-terminated only if the string has fewer than _size chars;
80 // return a copy as a std::string
81 Element const *end = p + _size;
82 end = std::find(p, end, 0);
83 return std::string(p, end);
84 }
85}
86
87void FieldBase<std::string>::setValue(Element *p, ndarray::Manager::Ptr const &,
88 std::string const &value) const {
89 if (isVariableLength()) {
90 // p is a pointer to a std::string; replace its contents with a copy of `value`
91 *reinterpret_cast<std::string *>(p) = value;
92 } else {
93 // copy the contents of `value` to p through p + _size, null extra characters, if any
94 if (value.size() > _size) {
95 throw LSST_EXCEPT(
97 (boost::format("String (%d) is too large for field (%d).") % value.size() % _size).str());
98 }
99 std::copy(value.begin(), value.end(), p);
100 std::fill(p + value.size(), p + _size, char(0)); // null extra characters, if any
101 }
102}
103
104//----- Explicit instantiation ------------------------------------------------------------------------------
105
106#define INSTANTIATE_FIELD_BASE(r, data, elem) template struct FieldBase<elem>;
107
110} // namespace table
111} // namespace afw
112} // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
#define INSTANTIATE_FIELD_BASE(r, data, elem)
Definition FieldBase.cc:106
A class representing an angle.
Definition Angle.h:128
Reports attempts to exceed implementation-defined length limits for some classes.
Definition Runtime.h:76
T copy(T... args)
T fill(T... args)
T find(T... args)
BOOST_PP_SEQ_FOR_EACH(INSTANTIATE_COLUMNVIEW_SCALAR, _, BOOST_PP_TUPLE_TO_SEQ(AFW_TABLE_SCALAR_FIELD_TYPE_N, AFW_TABLE_SCALAR_FIELD_TYPE_TUPLE)) BOOST_PP_SEQ_FOR_EACH(INSTANTIATE_COLUMNVIEW_ARRAY
static std::string getTypeString()
Return a string description of the field type.
Definition FieldBase.cc:63
FieldBase(size_t size=0)
Construct a FieldBase with the given size.
Definition FieldBase.h:120
char Element
the type of subfields and array elements
Definition FieldBase.h:227
bool isVariableLength() const noexcept
Return true if the field is variable-length (each record can have a different size array).
Definition FieldBase.h:262
static std::string getTypeString()
Return a string description of the field type.
Definition FieldBase.cc:56
Value getValue(Element const *p, ndarray::Manager::Ptr const &) const
Used to implement BaseRecord::get.
Definition FieldBase.h:81
void setValue(Element *p, ndarray::Manager::Ptr const &, Value v) const
Used to implement BaseRecord::set.
Definition FieldBase.h:84
#define AFW_TABLE_FIELD_TYPE_N
Definition types.h:38
#define AFW_TABLE_FIELD_TYPE_TUPLE
Definition types.h:43