[2820] | 1 | #ifndef FITSINOUTFILE_H
|
---|
| 2 | #define FITSINOUTFILE_H
|
---|
| 3 |
|
---|
| 4 | #include "machdefs.h"
|
---|
| 5 | #include "pexceptions.h"
|
---|
| 6 | #include "dvlist.h"
|
---|
| 7 | #include "FitsIO/fitsio.h"
|
---|
| 8 | #include <complex>
|
---|
| 9 |
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | namespace SOPHYA {
|
---|
| 13 |
|
---|
| 14 | class FitsInOutFile;
|
---|
| 15 | //class FitsInStream;
|
---|
| 16 | //class FitsOutStream;
|
---|
| 17 |
|
---|
| 18 | /*!
|
---|
| 19 | \ingroup FitsIOServer
|
---|
| 20 | \brief Exception class used by FITS file wrapper classes in FitsIOserver module
|
---|
| 21 | */
|
---|
| 22 | class FitsIOException : public IOExc {
|
---|
| 23 | public:
|
---|
| 24 | explicit FitsIOException(const char * m) : IOExc(m) {}
|
---|
| 25 | explicit FitsIOException(const string& m) : IOExc(m) {}
|
---|
| 26 | };
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | /*!
|
---|
| 30 | \ingroup FitsIOServer
|
---|
| 31 | \brief for converting c/c++ types to FITS data types
|
---|
| 32 | */
|
---|
| 33 | class FitsTypes {
|
---|
| 34 | public:
|
---|
| 35 | // Conversion de type en constante de type image FITS (XXX_IMG)
|
---|
| 36 | static int ImageType(uint_1 d) { return BYTE_IMG; }
|
---|
| 37 | static int ImageType(int_2 d) { return SHORT_IMG; }
|
---|
| 38 | static int ImageType(int_4 d) { return LONG_IMG; }
|
---|
| 39 | static int ImageType(r_4 d) { return FLOAT_IMG; }
|
---|
| 40 | static int ImageType(r_8 d) { return DOUBLE_IMG; }
|
---|
| 41 |
|
---|
| 42 | // Conversion de type en constante datatype FITS
|
---|
| 43 | static int DataType(uint_1 d) { return TBYTE; }
|
---|
| 44 | static int DataType(int_2 d) { return TSHORT; }
|
---|
| 45 | static int DataType(uint_2 d) { return TUSHORT; }
|
---|
| 46 |
|
---|
| 47 | static int DataType(const int_4 d)
|
---|
| 48 | { return (sizeof(long)==4) ? TLONG: TINT; }
|
---|
| 49 | static int DataType(const uint_4 d)
|
---|
| 50 | { return (sizeof(long)==4) ? TULONG: TUINT; }
|
---|
| 51 |
|
---|
| 52 | #ifdef TLONGLONG
|
---|
| 53 | static int DataType(int_8 d) { return TLONGLONG; }
|
---|
| 54 | #else
|
---|
| 55 | static int DataType(int_8 d)
|
---|
| 56 | { throw FitsIOException("FitsDataTypes: Unsupported data type int_8"); }
|
---|
| 57 | #endif
|
---|
| 58 |
|
---|
| 59 | static int DataType(r_4 d) { return TFLOAT; }
|
---|
| 60 | static int DataType(r_8 d) { return TDOUBLE; }
|
---|
| 61 |
|
---|
| 62 | static int DataType(complex<r_4> d) { return TCOMPLEX; }
|
---|
| 63 | static int DataType(complex<r_8> d) { return TDBLCOMPLEX; }
|
---|
| 64 |
|
---|
| 65 | // Conversion entre type FITS et chaine - exemple TFLOAT -> r_4
|
---|
| 66 | static string ImageTypeToTypeString(int ityp);
|
---|
| 67 | static string DataTypeToTypeString(int ityp);
|
---|
| 68 | };
|
---|
| 69 |
|
---|
| 70 | /*!
|
---|
| 71 | \ingroup FitsIOServer
|
---|
| 72 | \brief Wrapper class for cfitsio library functions
|
---|
| 73 | */
|
---|
| 74 | class FitsInOutFile {
|
---|
| 75 | public :
|
---|
| 76 | //! File access mode (ReadOnly, ReadWrite, Create)
|
---|
| 77 | enum FitsIOMode { Fits_RO, Fits_RW, Fits_Create };
|
---|
| 78 |
|
---|
| 79 | FitsInOutFile();
|
---|
| 80 | FitsInOutFile(string const & name, FitsIOMode mode);
|
---|
| 81 | FitsInOutFile(const char* name, FitsIOMode mode);
|
---|
| 82 | virtual ~FitsInOutFile();
|
---|
| 83 |
|
---|
| 84 |
|
---|
| 85 | void Open(const char* name, FitsIOMode mode);
|
---|
| 86 | void Close();
|
---|
| 87 |
|
---|
| 88 | inline fitsfile* FitsPtr() const { return fptr_; }
|
---|
| 89 | static float cfitsioVersion();
|
---|
| 90 |
|
---|
| 91 | //---- Header manipulation methods
|
---|
| 92 | //! Return total number of HDU's in file
|
---|
| 93 | int NbHDUs() const;
|
---|
| 94 | //! Return current HDU number - starting from 1 , not zero
|
---|
| 95 | int CurrentHDU() const;
|
---|
| 96 | //! Return current HDU Type as IMAGE_HDU or BINARY_TBL or ASCII_TBL
|
---|
| 97 | int CurrentHDUType() const;
|
---|
| 98 | //! Return current HDU Type as a string IMAGE_HDU or BINARY_TBL or ASCII_TBL
|
---|
| 99 | string CurrentHDUTypeStr() const;
|
---|
| 100 |
|
---|
| 101 | //! Move to HDU specified by hdnum - Returns the newly opened HDU type
|
---|
| 102 | int MoveAbsToHDU(int hdunum);
|
---|
| 103 | //! Move to HDU specified by relhdu , relative to the current HDU - Returns the newly opened HDU type
|
---|
| 104 | int MoveRelToHDU(int relhdu);
|
---|
| 105 | //! Move to the next HDU specified by relhdu. Returns the newly opened HDU type (<0 at EOF)
|
---|
| 106 | int MoveToNextHDU();
|
---|
| 107 |
|
---|
| 108 | //---- IMAGE_HDU manipulation methods
|
---|
| 109 | //! Creates a new HDU of type image (see fits_create_img)
|
---|
| 110 | void CreateImageHDU(int bitpix, int naxis, long* naxes);
|
---|
| 111 | //! Get information about the current image HDU. - return the image type TBYTE,TINT ...
|
---|
| 112 | int GetImageHDUInfo(int& naxis, long* naxes) const;
|
---|
| 113 |
|
---|
| 114 | //---- BINARY_TBL or ASCII_TBL
|
---|
| 115 | //! Return number of rows in a table HDU
|
---|
| 116 | long GetNbRows() const;
|
---|
| 117 | //! Return number of columns in a table HDU
|
---|
| 118 | int GetNbCols() const;
|
---|
| 119 | //! Creation of a new table - tbltyp = BINARY_TBL or ASCII_TBL
|
---|
| 120 | void CreateTable(int tbltyp, const char * extname, int ncols,
|
---|
| 121 | char * colnames[], char * tform[],
|
---|
| 122 | char * tunit[], long ininr=0);
|
---|
| 123 | //! Creation of a new table - tbltyp = BINARY_TBL or ASCII_TBL
|
---|
| 124 | void CreateTable(int tbltyp, const string & extname,
|
---|
| 125 | const vector<string> & colnames,
|
---|
| 126 | const vector<string> & tform,
|
---|
| 127 | const vector<string> & tunit,
|
---|
| 128 | long ininr=0);
|
---|
| 129 | //! Return number of columns, names, types and repeat count
|
---|
| 130 | long GetColInfo(vector<string> & colnames,
|
---|
| 131 | vector<int> & coltypes,
|
---|
| 132 | vector<long> & repcnt,
|
---|
| 133 | vector<long> & width);
|
---|
| 134 |
|
---|
| 135 | //! Defines the extension name for the next table creation
|
---|
| 136 | inline void SetNextExtensionName(string const & extname)
|
---|
| 137 | { next_extname_ = extname; }
|
---|
| 138 | //! Defines the extension name for the next table creation
|
---|
| 139 | inline void SetNextExtensionName(const char * extname)
|
---|
| 140 | { next_extname_ = extname; }
|
---|
| 141 | //! Return the default extension name
|
---|
| 142 | inline string NextExtensionName() const
|
---|
| 143 | { return next_extname_; }
|
---|
| 144 |
|
---|
| 145 | //! Defines default table type for created tables as BINARY_TBL
|
---|
| 146 | inline void SetDef_BinTable() { def_tbltype = BINARY_TBL; }
|
---|
| 147 | //! Defines default table type for created tables as ASCII_TBL
|
---|
| 148 | inline void SetDef_AscTable() { def_tbltype = ASCII_TBL; }
|
---|
| 149 | //! Return default table type
|
---|
| 150 | inline int GetDef_TableType() { return def_tbltype; }
|
---|
| 151 |
|
---|
| 152 | //! Insert (add) a new column
|
---|
| 153 | void InsertColumn(int numcol, const char* colname, const char* fmt);
|
---|
| 154 | //! Insert (add) a new column
|
---|
| 155 | inline void InsertColumn(int numcol, const string& colname, const char* fmt)
|
---|
| 156 | { InsertColumn(numcol, colname.c_str(), fmt); }
|
---|
| 157 |
|
---|
| 158 |
|
---|
| 159 | // Manipulation des informations de l'entete
|
---|
| 160 | //! Returns a given keyword value
|
---|
| 161 | string KeyValue(string const & key);
|
---|
| 162 | //! Read header records and appends the information to dvl
|
---|
| 163 | int GetHeaderRecords(DVList& dvl);
|
---|
| 164 | //! Appends a keyword to FITS header
|
---|
| 165 | void WriteKey(const char * kname, MuTyV const & val,
|
---|
| 166 | const char *comm=NULL);
|
---|
| 167 | inline void WriteKey(string const & kname, MuTyV const & val, string const & comm)
|
---|
| 168 | { WriteKey(kname.c_str(), val, comm.c_str()); }
|
---|
| 169 | //! Write dvl information to fits header
|
---|
| 170 | int WriteHeaderRecords(DVList & dvl);
|
---|
| 171 |
|
---|
| 172 | //! Prints information about the fits file on standard output stream (cout)
|
---|
| 173 | inline void Print(int lev=0) const { Print(cout, lev); }
|
---|
| 174 | //! Prints information about the fits file on stream os
|
---|
| 175 | virtual void Print(ostream& os, int lev=0) const;
|
---|
| 176 |
|
---|
| 177 | protected:
|
---|
| 178 | fitsfile *fptr_; // pointer to the FITS file, defined in fitsio.h
|
---|
| 179 | string fname_; // File name as passed to creator
|
---|
| 180 | FitsIOMode mode_;
|
---|
| 181 |
|
---|
| 182 | // Default extension name
|
---|
| 183 | string next_extname_;
|
---|
| 184 | // Default table type
|
---|
| 185 | int def_tbltype;
|
---|
| 186 | };
|
---|
| 187 |
|
---|
| 188 | /*! Prints FITS file information on stream \b s ( fio.Print(s) ) */
|
---|
| 189 |
|
---|
| 190 | inline ostream& operator << (ostream& s, FitsInOutFile const & fio)
|
---|
| 191 | { fio.Print(s); return(s); }
|
---|
| 192 |
|
---|
| 193 | } // Fin du namespace
|
---|
| 194 |
|
---|
| 195 | #endif
|
---|