2 #ifndef AFW_TABLE_Schema_h_INCLUDED
3 #define AFW_TABLE_Schema_h_INCLUDED
104 template <
typename T>
115 template <
typename F>
117 _impl->findAndApply(_aliases->apply(
name), std::forward<F>(func));
169 template <
typename T>
179 template <
typename T>
192 template <
typename T>
194 bool doReplace =
false) {
199 template <
typename T>
211 template <
typename F>
214 std::for_each(_impl->getItems().begin(), _impl->getItems().end(), visitor);
257 template <typename T>
374 template <
typename T>
385 template <
typename F>
387 _impl->findAndApply(_aliases->apply(
join(_name,
name)), std::forward<F>(func));
401 template <
typename F>
403 _impl->findAndApply(_aliases->apply(_name), std::forward<F>(func));
427 template <
typename T>
429 return _impl->find<T>(_aliases->apply(_name)).
key;
439 template <
typename T>
441 return _impl->find<T>(_aliases->apply(_name)).
field;
table::Key< std::string > name
ItemVariant const * other
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Lifetime-management for memory that goes into FITS memory files.
Mapping class that holds aliases for a Schema.
A class used as a handle to a particular field in a table.
Defines the fields and offsets for a table.
Key< T > addField(std::string const &name, std::string const &doc, std::string const &units="", FieldBase< T > const &base=FieldBase< T >(), bool doReplace=false)
Add a new field to the Schema, and return the associated Key.
int getFlagFieldCount() const
The number of Flag fields.
Schema & operator=(Schema &&other)
Schema()
Construct an empty Schema.
void disconnectAliases()
Sever the connection between this schema and any others with which it shares aliases.
Schema & operator=(Schema const &other)
std::string join(std::string const &a, std::string const &b, std::string const &c, std::string const &d) const
int getNonFlagFieldCount() const
The number of non-Flag fields.
std::string join(std::string const &a, std::string const &b) const
Join strings using the field delimiter appropriate for this Schema.
void setAliasMap(std::shared_ptr< AliasMap > aliases)
Set the alias map.
Key< T > addField(std::string const &name, std::string const &doc, FieldBase< T > const &base, bool doReplace=false)
Add a new field to the Schema, and return the associated Key.
bool operator!=(Schema const &other) const
std::set< std::string > getNames(bool topOnly=false) const
Return a set of field names in the schema.
static Schema fromFitsMetadata(daf::base::PropertyList &header, bool stripMetadata=true)
Construct from reading a FITS header.
Key< T > addField(Field< T > const &field, bool doReplace=false)
Add a new field to the Schema, and return the associated Key.
void forEach(F &&func) const
Apply a functor to each SchemaItem in the Schema.
static Schema readFits(std::string const &filename, int hdu=fits::DEFAULT_HDU)
Construct from reading a FITS file.
SubSchema operator[](std::string const &name) const
Look up a (possibly incomplete) name in the Schema.
int getFieldCount() const
The total number of fields.
std::size_t hash_value() const noexcept
Return a hash of this object.
void findAndApply(std::string const &name, F &&func) const
Find a SchemaItem by name and run a functor on it.
int contains(Schema const &other, int flags=EQUAL_KEYS) const
Test whether the given schema is a subset of this.
int getRecordSize() const
Return the raw size of a record in bytes.
std::string join(std::string const &a, std::string const &b, std::string const &c) const
int compare(Schema const &other, int flags=EQUAL_KEYS) const
Do a detailed equality comparison of two schemas.
void replaceField(Key< T > const &key, Field< T > const &field)
Replace the Field (name/description) for an existing Key.
friend std::ostream & operator<<(std::ostream &os, Schema const &schema)
Stringification.
bool operator==(Schema const &other) const
Equality comparison.
SchemaItem< T > find(std::string const &name) const
Find a SchemaItem in the Schema by name.
ComparisonFlags
Bit flags used when comparing schemas.
@ EQUAL_DOCS
Fields have the same documentation (ordered).
@ IDENTICAL
Everything is the same.
@ EQUAL_NAMES
Fields have the same names (ordered).
@ EQUAL_UNITS
Fields have the same units (ordered).
@ EQUAL_KEYS
Keys have the same types offsets, and sizes.
@ EQUAL_FIELDS
Fields are identical (but aliases may not be).
@ EQUAL_ALIASES
Schemas have identical AliasMaps.
std::shared_ptr< AliasMap > getAliasMap() const
Return the map of aliases.
A proxy type for name lookups in a Schema.
std::string const & getPrefix() const
Return the prefix that defines this SubSchema relative to its parent Schema.
std::string join(std::string const &a, std::string const &b) const
Join strings using the field delimiter appropriate for this Schema.
std::string join(std::string const &a, std::string const &b, std::string const &c) const
void apply(F &&func) const
Run functor on the SchemaItem represented by this SubSchema.
std::string join(std::string const &a, std::string const &b, std::string const &c, std::string const &d) const
SubSchema operator[](std::string const &name) const
Return a nested proxy.
void findAndApply(std::string const &name, F &&func) const
Find a nested SchemaItem by name and run a functor on it.
std::set< std::string > getNames(bool topOnly=false) const
Return a set of nested names that start with the SubSchema's prefix.
SchemaItem< T > find(std::string const &name) const
Find a nested SchemaItem by name.
A private implementation class to hide the messy details of Schema.
Class for storing ordered metadata with comments.
const int DEFAULT_HDU
Specify that the default HDU should be read.
class[[deprecated("Removed with no replacement (but see lsst::afw::image::TransmissionCurve). Will be " "removed after v22.")]] FilterProperty final
Describe the properties of a Filter (e.g.
A base class for image defects.
Field base class default implementation (used for numeric scalars and lsst::geom::Angle).
A description of a field in a table.
A simple pair-like struct for mapping a Field (name and description) with a Key (used for actual data...
A functor-wrapper used in the implementation of Schema::forEach.
size_t operator()(argument_type const &obj) const noexcept