LSSTApplications
19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
|
Go to the documentation of this file.
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;
470 #endif // !AFW_TABLE_Schema_h_INCLUDED
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.
SchemaItem< T > find(std::string const &name) const
Find a nested SchemaItem by name.
Key< T > addField(Field< T > const &field, bool doReplace=false)
Add a new field to the Schema, and return the associated Key.
const int DEFAULT_HDU
Specify that the default HDU should be read.
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
std::string join(std::string const &a, std::string const &b, std::string const &c, std::string const &d) const
int compare(Schema const &other, int flags=EQUAL_KEYS) const
Do a detailed equality comparison of two schemas.
int getRecordSize() const
Return the raw size of a record in bytes.
SubSchema operator[](std::string const &name) const
Return a nested proxy.
A private implementation class to hide the messy details of Schema.
void findAndApply(std::string const &name, F &&func) const
Find a SchemaItem by name and run a functor on it.
std::string join(std::string const &a, std::string const &b) const
Join strings using the field delimiter appropriate for this Schema.
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.
Schema & operator=(Schema const &other)
Class for storing ordered metadata with comments.
ComparisonFlags
Bit flags used when comparing schemas.
Defines the fields and offsets for a table.
std::set< std::string > getNames(bool topOnly=false) const
Return a set of nested names that start with the SubSchema's prefix.
Lifetime-management for memory that goes into FITS memory files.
bool operator!=(Schema const &other) const
void forEach(F &&func) const
Apply a functor to each SchemaItem in the Schema.
@ EQUAL_KEYS
Keys have the same types offsets, and sizes.
bool operator==(Schema const &other) const
Equality comparison.
SchemaItem< T > find(std::string const &name) const
Find a SchemaItem in the Schema by name.
Schema()
Construct an empty Schema.
std::size_t hash_value() const noexcept
Return a hash of this object.
SubSchema operator[](std::string const &name) const
Look up a (possibly incomplete) name in the Schema.
std::set< std::string > getNames(bool topOnly=false) const
Return a set of field names in the schema.
Mapping class that holds aliases for a Schema.
std::string join(std::string const &a, std::string const &b, std::string const &c) const
ItemVariant const * other
static Schema readFits(std::string const &filename, int hdu=fits::DEFAULT_HDU)
Construct from reading a FITS file.
void setAliasMap(std::shared_ptr< AliasMap > aliases)
Set the alias map.
A simple pair-like struct for mapping a Field (name and description) with a Key (used for actual data...
std::string join(std::string const &a, std::string const &b) const
Join strings using the field delimiter appropriate for this Schema.
A class used as a handle to a particular field in a table.
void findAndApply(std::string const &name, F &&func) const
Find a nested SchemaItem by name and run a functor on it.
@ EQUAL_ALIASES
Schemas have identical AliasMaps.
@ EQUAL_DOCS
Fields have the same documentation (ordered).
@ IDENTICAL
Everything is the same.
A base class for image defects.
friend std::ostream & operator<<(std::ostream &os, Schema const &schema)
Stringification.
int getNonFlagFieldCount() const
The number of non-Flag fields.
@ EQUAL_UNITS
Fields have the same units (ordered).
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
Field base class default implementation (used for numeric scalars and lsst::geom::Angle).
int getFieldCount() const
The total number of fields.
A description of a field in a table.
A proxy type for name lookups in a Schema.
static Schema fromFitsMetadata(daf::base::PropertyList &header, bool stripMetadata=true)
Construct from reading a FITS header.
int getFlagFieldCount() const
The number of Flag fields.
size_t operator()(argument_type const &obj) const noexcept
void disconnectAliases()
Sever the connection between this schema and any others with which it shares aliases.
std::string join(std::string const &a, std::string const &b, std::string const &c) const
@ EQUAL_NAMES
Fields have the same names (ordered).
std::shared_ptr< AliasMap > getAliasMap() const
Return the map of aliases.
A functor-wrapper used in the implementation of Schema::forEach.
int contains(Schema const &other, int flags=EQUAL_KEYS) const
Test whether the given schema is a subset of this.
@ EQUAL_FIELDS
Fields are identical (but aliases may not be).
void replaceField(Key< T > const &key, Field< T > const &field)
Replace the Field (name/description) for an existing Key.
std::string const & getPrefix() const
Return the prefix that defines this SubSchema relative to its parent Schema.
Schema & operator=(Schema &&other)