/usr/include/CCfits/Table.h is in libccfits-dev 2.4+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | // Astrophysics Science Division,
// NASA/ Goddard Space Flight Center
// HEASARC
// http://heasarc.gsfc.nasa.gov
// e-mail: ccfits@legacy.gsfc.nasa.gov
//
// Original author: Ben Dorman
#ifndef TABLE_H
#define TABLE_H 1
// ExtHDU
#include "ExtHDU.h"
// FitsError
#include "FitsError.h"
namespace CCfits {
class Column;
} // namespace CCfits
#ifdef _MSC_VER
#include "MSconfig.h" // for truncation warning
#endif
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef SSTREAM_DEFECT
#include <strstream>
#else
#include <sstream>
#endif
namespace CCfits {
/*! \class Table
Table is the abstract common interface to Binary and Ascii Table HDUs.
Table is a subclass of ExtHDU that contains an associative array of
Column objects. It implements methods for reading and writing columns
*/
/*! \class Table::NoSuchColumn
@ingroup FITSexcept
@brief Exception to be thrown on a failure to retrieve a column specified either by name
or index number.
When a Table object is created, the header is read and a column object
created for each column defined. Thus id this exception is thrown
the column requested does not exist in the HDU (note that the column
can easily exist and not contain any data since the user controls whether
the column will be read when the FITS object is instantiated).
It is expected that the index number calls will be primarily internal.
The underlying implementation makes lookup by name more efficient.
The exception has two variants, which take either an integer or a string
as parameter. These are used according to the accessor that threw them,
either by name or index.
*/
/*! \fn Table::NoSuchColumn::NoSuchColumn (const String& name, bool silent = true);
\brief Exception ctor for exception thrown if the requested column (specified by name) is not present
Message: Fits Error: cannot find Column named: <i>name</i> is printed.
\param name the requested column name
\param silent if true, print message whether FITS::verboseMode is set or not.
*/
/*! \fn Table::NoSuchColumn::NoSuchColumn (int index, bool silent = true);
\brief Exception ctor for exception thrown if the requested column (specified by name) is not present
Message: Fits Error: column not present - Column number <i>index</i> is printed.
\param index the requested column number
\param silent if true, print message whether FITS::verboseMode is set or not.
*/
/*! \fn void Table::init (bool readFlag = false, const std::vector<String>& keys = std::vector<String>());
"Late Constructor." wrap-up of calls needed to construct a table. Reads header information
and sets up the array of column objects in the table.
Protected function, provided to allow the implementation of extensions of the library.
*/
/*! \fn virtual Table::~Table();
\brief destructor
*/
/*! \fn virtual Table::Table(const Table& right);
\brief copy constructor
*/
/*! \fn Column& Table::column (const string& colName, bool caseSensitive = true) const;
\brief return a reference to the column of name colName.
If the <i>caseSensitive</i> parameter is set to false, the search will
be case-insensitive.
\exceptions Table::NoSuchColumn passes colName to the diagnostic message
printed when the exception is thrown
*/
/*! \fn Column& Table::column (int colIndex) const;
\brief return a reference to the column identified by colIndex
Throws NoSuchColumn if the index
is out of range -index must satisfy (1 <= index <= numCols() ).
N.B. the column number is assigned as 1-based, as in FORTRAN rather
than 0-based as in C.
\exception Table::NoSuchColumn passes colIndex to the diagnostic message
printed when the exception is thrown
*/
/*! \fn void Table::deleteRows (long first, long number=1);
\brief delete a range of rows in a table.
In both this and the overloaded version which allows a selection of
rows to be deleted, the cfitsio library is called first to perform the
operation on the disk file, and then the FITS object is updated.
\param first the start row of the range
\param number the number of rows to delete; defaults to 1.
\exception FitsError thrown if the cfitsio call fails to return
without error.
*/
/*! \fn void Table::deleteRows (const std::vector<long>& rowlist);
\brief delete a set of rows in the table specified by an input array.
\param rowlist The vector of row numbers to be deleted.
\exception FitsError thrown if the underlying cfitsio call fails to return
without error.
*/
/*! \fn void Table::insertRows (long first, long number);
\brief insert empty rows into the table
\param first the start row of the range
\param number the number of rows to insert.
\exception FitsError thrown if the underlying cfitsio call fails to return
without error.
*/
/*! \fn long Table::rows () const;
\brief return the number of rows in the table (NAXIS2).
*/
/*! \fn void Table::updateRows ();
\brief update the number of rows in the table
Called to force the Table to reset its internal "rows" attribute.
public, but is called when needed internally.
*/
/*! \fn Table::Table (FITSBase* p, HduType xtype, const String &hduName, int rows, const std::vector<String>& columnName, const std::vector<String>& columnFmt, const std::vector<String>& columnUnit = std::vector<String>(), int version = 1);
\brief Constructor to be used for creating new HDUs.
\param p The FITS file in which to place the new HDU
\param xtype An HduType enumerator defined in CCfits.h for type of table (AsciiTbl or BinaryTbl)
\param hduName The name of this HDU extension
\param rows The number of rows in the new HDU (the value of the NAXIS2 keyword).
\param columnName a vector of names for the columns.
\param columnFmt the format strings for the columns
\param columnUnit the units for the columns.
\param version a version number
*/
/*! \fn Table::Table (FITSBase* p, HduType xtype, const String &hduName = String(""), int version = 1);
\brief Constructor to be called by operations that read Table specified by hduName and version.
*/
/*! \fn Table::Table (FITSBase* p, HduType xtype, int number);
\brief Table constructor for getting Tables by number.
Necessary since EXTNAME is a reserved not required keyword, and users may thus read
FITS files without an extension name. Since an HDU is completely specified
by extension number, this is part of the public interface.
*/
/*! \fn const map<string,Column*>& Table::column () const;
\brief return a reference to the array containing the columns.
This public version might be used to query the size of the column container
in a routine that manipulates column table data.
*/
/*! \fn map<string,Column*>& Table::column ();
\brief return a reference to the array containing the columns.
To be used in the implementation of subclasses.
*/
/*! \fn void Table::rows (long value);
\brief set the number of rows in the Table.
*/
/*! \fn int Table::numCols () const;
\brief return the number of Columns in the Table (the TFIELDS keyword).
*/
/*! \fn void Table::numCols (int value);
\brief set the number of Columns in the Table
*/
/*! \fn void Table::setColumn (const String& colname, Column *value);
\brief set the column with name colname to the input value.
*/
class Table : public ExtHDU //## Inherits: <unnamed>%3804A126EB10
{
public:
class NoSuchColumn : public FitsException //## Inherits: <unnamed>%397CB0970174
{
public:
NoSuchColumn (const String& name, bool silent = true);
NoSuchColumn (int index, bool silent = true);
protected:
private:
private: //## implementation
};
class InvalidColumnSpecification : public FitsException //## Inherits: <unnamed>%3B1E52D703B0
{
public:
InvalidColumnSpecification (const String& msg, bool silent = true);
protected:
private:
private: //## implementation
};
Table(const Table &right);
virtual ~Table();
// ! return reference to a column given by column name.
virtual Column& column (const String& colName, bool caseSensitive = true) const;
virtual Column& column (int colIndex // ! return reference to a column given by a column index number
) const;
virtual long rows () const;
void updateRows ();
void rows (long numRows);
virtual void deleteColumn (const String& columnName);
// Insert one or more blank rows into a FITS column.
void insertRows (long first, long number = 1);
void deleteRows (long first, long number = 1);
void deleteRows (const std::vector<long>& rowList);
virtual long getRowsize () const;
virtual int numCols () const;
virtual const std::map<string, Column*>& column () const;
virtual std::map<string, Column*>& column ();
public:
// Additional Public Declarations
protected:
Table (FITSBase* p, HduType xtype, const String &hduName, int rows, // ! Number of rows in table at creation, to be used to initialize NAXIS2
const std::vector<String>& columnName, const std::vector<String>& columnFmt, const std::vector<String>& columnUnit = std::vector<String>(), int version = 1);
// To be called by reading operations.
Table (FITSBase* p, HduType xtype, const String &hduName = String(""), int version = 1);
// ExtHDU constructor for getting ExtHDUs by number.
// Necessary since EXTNAME is a reserved not required
// keyword.
Table (FITSBase* p, HduType xtype, int number);
virtual std::ostream & put (std::ostream &s) const;
void column (int columnNum, Column *value);
void init (bool readFlag = false, const std::vector<String>& keys = std::vector<String>());
virtual void setColumn (const String& colname, Column* value);
void reindex ();
void numCols (int value);
// Additional Protected Declarations
private:
virtual void initRead ();
virtual void readTableHeader (int ncols, std::vector<String>& colName, std::vector<String>& colFmt, std::vector<String>& colUnit) = 0;
// deep erasure , to be called by assignment and dtors.
void clearData ();
void copyData (const Table& right);
// Additional Private Declarations
private: //## implementation
// Data Members for Class Attributes
int m_numCols;
// Data Members for Associations
std::map<string, Column*> m_column;
// Additional Implementation Declarations
friend class Column;
};
// Class CCfits::Table::NoSuchColumn
// Class CCfits::Table::InvalidColumnSpecification
// Class CCfits::Table
inline long Table::rows () const
{
return axis(1);
}
inline void Table::rows (long numRows)
{
naxes(1) = numRows;
}
inline int Table::numCols () const
{
return m_numCols;
}
inline const std::map<string, Column*>& Table::column () const
{
return m_column;
}
inline void Table::numCols (int value)
{
m_numCols = value;
}
inline std::map<string, Column*>& Table::column ()
{
return m_column;
}
} // namespace CCfits
#endif
|