LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | Friends | List of all members
lsst::afw::table::SimpleTable Class Reference

Table class that must contain a unique ID field and a celestial coordinate field. More...

#include <Simple.h>

Inheritance diagram for lsst::afw::table::SimpleTable:
lsst::afw::table::BaseTable lsst::daf::base::Citizen lsst::afw::table::SourceTable

Classes

struct  MinimalSchema
 

Public Types

typedef SimpleRecord Record
 
typedef ColumnViewT< SimpleRecordColumnView
 
typedef SortedCatalogT< RecordCatalog
 
typedef SortedCatalogT< Record
const > 
ConstCatalog
 
- Public Types inherited from lsst::afw::table::BaseTable
typedef BaseRecord Record
 The associated record class. More...
 
typedef BaseColumnView ColumnView
 The associated ColumnView class. More...
 
typedef CatalogT< RecordCatalog
 Template of CatalogT used to hold records of the associated type. More...
 
typedef CatalogT< Record const > ConstCatalog
 Template of CatalogT used to hold const records of the associated type. More...
 
- Public Types inherited from lsst::daf::base::Citizen
enum  { magicSentinel = 0xdeadbeef }
 
typedef unsigned long memId
 Type of the block's ID. More...
 
typedef memId(* memNewCallback )(const memId cid)
 A function used to register a callback. More...
 
typedef memId(* memCallback )(const Citizen *ptr)
 

Public Member Functions

boost::shared_ptr< IdFactorygetIdFactory ()
 Return the object that generates IDs for the table (may be null). More...
 
boost::shared_ptr< IdFactory
const > 
getIdFactory () const
 Return the object that generates IDs for the table (may be null). More...
 
void setIdFactory (boost::shared_ptr< IdFactory > f)
 Switch to a new IdFactory – object that generates IDs for the table (may be null). More...
 
boost::shared_ptr< SimpleTableclone () const
 Return a polymorphic deep copy of the table. More...
 
boost::shared_ptr< SimpleRecordmakeRecord ()
 Default-construct an associated record. More...
 
boost::shared_ptr< SimpleRecordcopyRecord (BaseRecord const &other)
 Deep-copy a record, requiring that it have the same schema as this table. More...
 
boost::shared_ptr< SimpleRecordcopyRecord (BaseRecord const &other, SchemaMapper const &mapper)
 Deep-copy a record, requiring that it have the same schema as this table. More...
 
- Public Member Functions inherited from lsst::afw::table::BaseTable
boost::shared_ptr
< daf::base::PropertyList
getMetadata () const
 Return the flexible metadata associated with the table. May be null. More...
 
void setMetadata (boost::shared_ptr< daf::base::PropertyList > const &metadata)
 Set the flexible metadata associated with the table. May be null. More...
 
boost::shared_ptr
< daf::base::PropertyList
popMetadata ()
 Return the metadata and set the internal metadata to a null pointer. More...
 
boost::shared_ptr< BaseTableclone () const
 Return a polymorphic deep copy of the table. More...
 
boost::shared_ptr< BaseRecordmakeRecord ()
 Default-construct an associated record. More...
 
boost::shared_ptr< BaseRecordcopyRecord (BaseRecord const &input)
 Deep-copy a record, requiring that it have the same schema as this table. More...
 
boost::shared_ptr< BaseRecordcopyRecord (BaseRecord const &input, SchemaMapper const &mapper)
 Deep-copy a record, using a mapper to relate two schemas. More...
 
Schema getSchema () const
 Return the table's schema. More...
 
void preallocate (std::size_t nRecords)
 Allocate contiguous space for new records in advance. More...
 
std::size_t getBufferSize () const
 Return the number of additional records space has been already been allocated for. More...
 
virtual ~BaseTable ()
 
- Public Member Functions inherited from lsst::daf::base::Citizen
 Citizen (const std::type_info &)
 
 Citizen (Citizen const &)
 
 ~Citizen ()
 
Citizenoperator= (Citizen const &)
 
std::string repr () const
 Return a string representation of a Citizen. More...
 
void markPersistent (void)
 Mark a Citizen as persistent and not destroyed until process end. More...
 
memId getId () const
 Return the Citizen's ID. More...
 

Static Public Member Functions

static boost::shared_ptr
< SimpleTable
make (Schema const &schema, boost::shared_ptr< IdFactory > const &idFactory)
 Construct a new table. More...
 
static boost::shared_ptr
< SimpleTable
make (Schema const &schema)
 Construct a new table. More...
 
static Schema makeMinimalSchema ()
 Return a minimal schema for Simple tables and records. More...
 
static bool checkSchema (Schema const &other)
 Return true if the given schema is a valid SimpleTable schema. More...
 
static Key< RecordIdgetIdKey ()
 Key for the unique ID. More...
 
static CoordKey getCoordKey ()
 Key for the celestial coordinates. More...
 
- Static Public Member Functions inherited from lsst::afw::table::BaseTable
static boost::shared_ptr
< BaseTable
make (Schema const &schema)
 Construct a new table. More...
 
- Static Public Member Functions inherited from lsst::daf::base::Citizen
static bool hasBeenCorrupted ()
 Check all allocated blocks for corruption. More...
 
static memId getNextMemId ()
 Return the memId of the next object to be allocated. More...
 
static int init ()
 Called once when the memory system is being initialised. More...
 
static int census (int, memId startingMemId=0)
 How many active Citizens are there? More...
 
static void census (std::ostream &stream, memId startingMemId=0)
 Print a list of all active Citizens to stream, sorted by ID. More...
 
static const std::vector
< const Citizen * > * 
census ()
 Return a (newly allocated) std::vector of active Citizens sorted by ID. More...
 
static memId setNewCallbackId (memId id)
 Call the NewCallback when block is allocated. More...
 
static memId setDeleteCallbackId (memId id)
 Call the current DeleteCallback when block is deleted. More...
 
static memNewCallback setNewCallback (memNewCallback func)
 Set the NewCallback function. More...
 
static memCallback setDeleteCallback (memCallback func)
 Set the DeleteCallback function. More...
 
static memCallback setCorruptionCallback (memCallback func)
 Set the CorruptionCallback function. More...
 

Protected Member Functions

 SimpleTable (Schema const &schema, boost::shared_ptr< IdFactory > const &idFactory)
 
 SimpleTable (SimpleTable const &other)
 
- Protected Member Functions inherited from lsst::afw::table::BaseTable
template<typename Derived >
boost::shared_ptr< Derived > getSelf ()
 Convenience function for static-casting shared_from_this for use by derived classes. More...
 
template<typename Derived >
boost::shared_ptr< Derived const > getSelf () const
 Convenience function for static-casting shared_from_this for use by derived classes. More...
 
virtual void handleAliasChange (std::string const &alias)
 
virtual boost::shared_ptr
< BaseTable
_clone () const =0
 Clone implementation with noncovariant return types. More...
 
virtual boost::shared_ptr
< BaseRecord
_makeRecord ()=0
 Default-construct an associated record (protected implementation). More...
 
 BaseTable (Schema const &schema)
 Construct from a schema. More...
 
 BaseTable (BaseTable const &other)
 Copy construct. More...
 

Private Member Functions

virtual boost::shared_ptr
< io::FitsWriter
makeFitsWriter (fits::Fits *fitsfile, int flags) const
 

Static Private Member Functions

static MinimalSchemagetMinimalSchema ()
 

Private Attributes

boost::shared_ptr< IdFactory_idFactory
 

Friends

class io::FitsWriter
 

Additional Inherited Members

- Static Public Attributes inherited from lsst::afw::table::BaseTable
static int nRecordsPerBlock
 Number of records in each memory block. More...
 

Detailed Description

Table class that must contain a unique ID field and a celestial coordinate field.

SimpleTable / SimpleRecord are intended to be the base class for records representing astronomical objects. In additional to the minimal schema and the convenience accessors it allows, a SimpleTable may hold an IdFactory object that is used to assign unique IDs to new records.

Definition at line 85 of file Simple.h.

Member Typedef Documentation

Definition at line 90 of file Simple.h.

Definition at line 89 of file Simple.h.

Definition at line 91 of file Simple.h.

Definition at line 88 of file Simple.h.

Constructor & Destructor Documentation

lsst::afw::table::SimpleTable::SimpleTable ( Schema const &  schema,
boost::shared_ptr< IdFactory > const &  idFactory 
)
protected
lsst::afw::table::SimpleTable::SimpleTable ( SimpleTable const &  other)
protected

Member Function Documentation

static bool lsst::afw::table::SimpleTable::checkSchema ( Schema const &  other)
inlinestatic

Return true if the given schema is a valid SimpleTable schema.

This will always be true if the given schema was originally constructed using makeMinimalSchema(), and will rarely be true otherwise.

Definition at line 133 of file Simple.h.

133  {
134  return other.contains(getMinimalSchema().schema);
135  }
static MinimalSchema & getMinimalSchema()
afw::table::Schema schema
Definition: GaussianPsf.cc:41
boost::shared_ptr< SimpleTable > lsst::afw::table::SimpleTable::clone ( void  ) const
inline

Return a polymorphic deep copy of the table.

Derived classes should reimplement by static-casting the output of _clone to a pointer-to-derived to simulate covariant return types.

Cloning a table does not clone its associated records; the new table produced by clone() does not have any associated records.

Definition at line 159 of file Simple.h.

159 { return boost::static_pointer_cast<SimpleTable>(_clone()); }
SimpleTable(Schema const &schema, boost::shared_ptr< IdFactory > const &idFactory)
virtual boost::shared_ptr< BaseTable > _clone() const =0
Clone implementation with noncovariant return types.
boost::shared_ptr< SimpleRecord > lsst::afw::table::SimpleTable::copyRecord ( BaseRecord const &  other)
inline

Deep-copy a record, requiring that it have the same schema as this table.

Regardless of the type or associated table of the input record, the type of the output record will be the type associated with this table and the record instance will be associated with this table.

Allowing derived-class records to be constructed from base-class records could be considered a form of type-slicing, but because we already demand that all records be constructable from nothing but a table, this isn't anything new.

Derived classes should reimplement by static-casting the output of BaseTable::copyRecord to the appropriate BaseRecord subclass.

This is implemented using makeRecord and calling record.assign on the results; override those to change the behavior.

Definition at line 165 of file Simple.h.

165  {
166  return boost::static_pointer_cast<SimpleRecord>(BaseTable::copyRecord(other));
167  }
boost::shared_ptr< BaseRecord > copyRecord(BaseRecord const &input)
Deep-copy a record, requiring that it have the same schema as this table.
boost::shared_ptr< SimpleRecord > lsst::afw::table::SimpleTable::copyRecord ( BaseRecord const &  other,
SchemaMapper const &  mapper 
)
inline

Deep-copy a record, requiring that it have the same schema as this table.

Regardless of the type or associated table of the input record, the type of the output record will be the type associated with this table and the record instance will be associated with this table.

Allowing derived-class records to be constructed from base-class records could be considered a form of type-slicing, but because we already demand that all records be constructable from nothing but a table, this isn't anything new.

Derived classes should reimplement by static-casting the output of BaseTable::copyRecord to the appropriate BaseRecord subclass.

This is implemented using makeRecord and calling record.assign on the results; override those to change the behavior.

Definition at line 170 of file Simple.h.

170  {
171  return boost::static_pointer_cast<SimpleRecord>(BaseTable::copyRecord(other, mapper));
172  }
boost::shared_ptr< BaseRecord > copyRecord(BaseRecord const &input)
Deep-copy a record, requiring that it have the same schema as this table.
static CoordKey lsst::afw::table::SimpleTable::getCoordKey ( )
inlinestatic

Key for the celestial coordinates.

Definition at line 155 of file Simple.h.

155 { return getMinimalSchema().coord; }
static MinimalSchema & getMinimalSchema()
boost::shared_ptr< IdFactory > lsst::afw::table::SimpleTable::getIdFactory ( )
inline

Return the object that generates IDs for the table (may be null).

Definition at line 138 of file Simple.h.

138 { return _idFactory; }
boost::shared_ptr< IdFactory > _idFactory
Definition: Simple.h:199
boost::shared_ptr< IdFactory const> lsst::afw::table::SimpleTable::getIdFactory ( ) const
inline

Return the object that generates IDs for the table (may be null).

Definition at line 141 of file Simple.h.

141 { return _idFactory; }
boost::shared_ptr< IdFactory > _idFactory
Definition: Simple.h:199
static Key<RecordId> lsst::afw::table::SimpleTable::getIdKey ( )
inlinestatic

Key for the unique ID.

Get keys for standard fields shared by all references.

These keys are used to implement getters and setters on SimpleRecord.

Definition at line 153 of file Simple.h.

153 { return getMinimalSchema().id; }
static MinimalSchema & getMinimalSchema()
static MinimalSchema& lsst::afw::table::SimpleTable::getMinimalSchema ( )
staticprivate
static boost::shared_ptr< SimpleTable > lsst::afw::table::SimpleTable::make ( Schema const &  schema,
boost::shared_ptr< IdFactory > const &  idFactory 
)
static

Construct a new table.

Parameters
[in]schemaSchema that defines the fields, offsets, and record size for the table.
[in]idFactoryFactory class to generate record IDs when they are not explicitly given. If null, record IDs will default to zero.

Note that not passing an IdFactory at all will call the other override of make(), which will set the ID factory to IdFactory::makeSimple().

static boost::shared_ptr< SimpleTable > lsst::afw::table::SimpleTable::make ( Schema const &  schema)
inlinestatic

Construct a new table.

Parameters
[in]schemaSchema that defines the fields, offsets, and record size for the table.

This overload sets the ID factory to IdFactory::makeSimple().

Definition at line 112 of file Simple.h.

112 { return make(schema, IdFactory::makeSimple()); }
afw::table::Schema schema
Definition: GaussianPsf.cc:41
static boost::shared_ptr< IdFactory > makeSimple()
Return a simple IdFactory that simply counts from 1.
static boost::shared_ptr< SimpleTable > make(Schema const &schema, boost::shared_ptr< IdFactory > const &idFactory)
Construct a new table.
virtual boost::shared_ptr< io::FitsWriter > lsst::afw::table::SimpleTable::makeFitsWriter ( fits::Fits fitsfile,
int  flags 
) const
privatevirtual

Reimplemented from lsst::afw::table::BaseTable.

Reimplemented in lsst::afw::table::SourceTable.

static Schema lsst::afw::table::SimpleTable::makeMinimalSchema ( )
inlinestatic

Return a minimal schema for Simple tables and records.

The returned schema can and generally should be modified further, but many operations on SimpleRecords will assume that at least the fields provided by this routine are present.

Definition at line 121 of file Simple.h.

121  {
122  Schema r = getMinimalSchema().schema;
123  r.disconnectAliases();
124  return r;
125  }
static MinimalSchema & getMinimalSchema()
void disconnectAliases()
Sever the connection between this schema and any others with which it shares aliases.
boost::shared_ptr< SimpleRecord > lsst::afw::table::SimpleTable::makeRecord ( )
inline

Default-construct an associated record.

Derived classes should reimplement by static-casting the output of _makeRecord to the appropriate BaseRecord subclass to simulate covariant return types.

Definition at line 162 of file Simple.h.

162 { return boost::static_pointer_cast<SimpleRecord>(_makeRecord()); }
virtual boost::shared_ptr< BaseRecord > _makeRecord()=0
Default-construct an associated record (protected implementation).
void lsst::afw::table::SimpleTable::setIdFactory ( boost::shared_ptr< IdFactory f)
inline

Switch to a new IdFactory – object that generates IDs for the table (may be null).

Definition at line 144 of file Simple.h.

144 { _idFactory = f; }
boost::shared_ptr< IdFactory > _idFactory
Definition: Simple.h:199

Friends And Related Function Documentation

friend class io::FitsWriter
friend

Definition at line 194 of file Simple.h.

Member Data Documentation

boost::shared_ptr< IdFactory > lsst::afw::table::SimpleTable::_idFactory
private

Definition at line 199 of file Simple.h.


The documentation for this class was generated from the following file: