-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKeyword.h
333 lines (221 loc) · 8.78 KB
/
Keyword.h
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
// Astrophysics Science Division,
// NASA/ Goddard Space Flight Center
// HEASARC
// http://heasarc.gsfc.nasa.gov
// e-mail: [email protected]
//
// Original author: Ben Dorman
#ifndef KEYWORD_H
#define KEYWORD_H 1
#include "CCfits.h"
// using namespace CCfits;
#ifdef _MSC_VER
#include "MSconfig.h"
#endif
// FitsError
#include "FitsError.h"
namespace CCfits {
class HDU;
} // namespace CCfits
namespace CCfits {
/*! \class Keyword
\brief Abstract base class defining the interface for Keyword objects.
Keyword object creation is normally performed inside FITS constructors or
FITS::read, HDU::readKey, and HDU::addKey functions. Output is performed
in HDU::addKey functions and Keyword::setValue.
Keywords consists of a name, a value and a comment field. Concrete templated
subclasses, KeyData<T>, have a data member that holds the value of keyword.
Typically, the mandatory keywords for a given HDU type are not stored as
object of type Keyword, but as intrinsic data types. The Keyword hierarchy
is used to store user-supplied information.
*/
/*! \fn Keyword::Keyword(const Keyword &right);
\brief copy constructor
*/
/*! \fn Keyword::Keyword (const String &keyname, ValueType keytype, HDU* p, const String &comment = "", bool isLongStr = false);
\brief Keyword constructor.
This is the common behavior of Keywords of any type. Constructor is protected
as the class is abstract.
*/
/* \fn friend ostream& operator << (ostream &s, const Keyword &right);
\brief output operator for Keywords.
*/
/*! \fn virtual Keyword::~Keyword();
\brief virtual destructor
*/
/*! \fn Keyword & Keyword::operator=(const Keyword &right);
\brief assignment operator
*/
/*! \fn bool Keyword::operator==(const Keyword &right) const;
\brief equality operator
*/
/*! \fn bool Keyword::operator!=(const Keyword &right) const;
\brief inequality operator
*/
/*! \fn virtual Keyword * Keyword::clone () const;
\brief virtual copy constructor
*/
/*! \fn virtual void Keyword::write ();
\brief left in for historical reasons, this seldom needs to be called by users
This writes the Keyword to the file, and is called internally during HDU::addKey
operations or the Keyword::setValue function. It shouldn't normally need to be
called explicitly.
*/
/*! \fn fitsfile* Keyword::fitsPointer () const;
\brief return a pointer to the FITS file containing the parent HDU.
*/
/*! \fn const HDU* Keyword::parent () const;
\brief return a pointer to parent HDU.
*/
/*! \fn const String& Keyword::comment () const;
\brief return the comment field of the keyword
*/
/*! \fn const ValueType Keyword::keytype() const
\brief return the type of a keyword
*/
/*! \fn void Keyword::keytype(ValueType)
\brief set keyword type.
*/
/*! \fn const String& Keyword::name() const
\brief return the name of a keyword
*/
/*! \fn template <typename T> T& Keyword::value(T& val) const
\brief get the keyword value
\param val (T) Will be filled with the keyword value, and is also the function return value.
<b>Allowed T types:</b> CCfits stores keyword values of type U in a templated subclass of
Keyword, <b>KeyData\<U\></b>. Normally U is set when reading the Keyword in from the file,
and is limited to types int, double, string, bool, and complex<float>.
(The exception is when the user has created and added a new Keyword using an
HDU::addKey function, in which case they might have specified other types for U.)
To avoid compilation errors, the user should generally try to provide a <i>val</i>
of type T = type U, though there is some flexibility here as the following conversions
are handled:
<TABLE BORDER=0>
<tr><td><b>T</b> (to val)</td><td><b>U</b> (from Keyword obj)</td></tr>
<tr><td>float</td><td>double (will lose precision), float, int, integer string</td></tr>
<tr><td>double</td><td>double, float, int, integer string</td></tr>
<tr><td>int</td><td>int, integer string</td></tr>
<tr><td>string</td><td>double, float, int, string</td></tr>
</TABLE>
More conversions may be added in the future as the need arises.
*/
/*! \fn template <typename T> void Keyword::setValue(const T& newValue)
\brief modify the value of an existing Keyword and write it to the file
\param newValue (T) New value for the Keyword
<b>Allowed T types:</b> This must copy <i>newValue</i> to a data member of type U in the
Keyword subclass <b>KeyData\<U\></b> (see description for Keyword::value (T& val) for more
details). To avoid compilation errors, it is generally best to provide a <i>newValue</i>
of type T = type U, though the following type conversions will also be handled:
<TABLE BORDER=0>
<tr><td><b>T</b> (from newValue)</td><td><b>U</b> (to Keyword obj)</td></tr>
<tr><td>float</td><td>double, float</td></tr>
<tr><td>double</td><td>double, float (will lose precision)</td></tr>
<tr><td>int</td><td>double, float, int, integer string</td></tr>
</TABLE>
*/
class Keyword
{
public:
class WrongKeywordValueType : public FitsException //## Inherits: <unnamed>%39B0221700E2
{
public:
WrongKeywordValueType (const String& diag, bool silent = true);
protected:
private:
private: //## implementation
};
virtual ~Keyword();
Keyword & operator=(const Keyword &right);
bool operator==(const Keyword &right) const;
bool operator!=(const Keyword &right) const;
virtual std::ostream & put (std::ostream &s) const = 0;
virtual Keyword * clone () const = 0;
virtual void write ();
fitsfile* fitsPointer () const;
// CAUTION: This is declared public only to allow HDU addKey functions the ability to set their
// class as the Keyword's parent, and to avoid making entire HDU a friend class. (Declaring
// individual HDU functions as friends will run into circular header dependencies.) Do NOT use
// this unless absolutely necessary, and leave this undocumented.
void setParent (HDU* parent);
ValueType keytype () const;
const String& comment () const;
const String& name () const;
bool isLongStr () const;
public:
// Additional Public Declarations
template <typename T>
T& value(T& val) const;
template <typename T>
void setValue(const T& newValue);
protected:
Keyword(const Keyword &right);
Keyword (const String &keyname,
ValueType keytype,
HDU* p,
const String &comment = "",
bool isLongStr = false);
virtual void copy (const Keyword& right);
virtual bool compare (const Keyword &right) const;
void keytype (ValueType value);
const HDU* parent () const;
// Additional Protected Declarations
private:
// Additional Private Declarations
private: //## implementation
// Data Members for Class Attributes
ValueType m_keytype;
// Data Members for Associations
HDU* m_parent;
String m_comment;
String m_name;
bool m_isLongStr;
// Additional Implementation Declarations
friend std::ostream &operator << (std::ostream &s, const Keyword &right);
};
#ifndef SPEC_TEMPLATE_IMP_DEFECT
#ifndef SPEC_TEMPLATE_DECL_DEFECT
template <> float& Keyword::value(float& val) const;
template <> double& Keyword::value(double& val) const;
template <> int& Keyword::value(int& val) const;
template <> String& Keyword::value(String& val) const;
template <> void Keyword::setValue(const float& newValue);
template <> void Keyword::setValue(const double& newValue);
template <> void Keyword::setValue(const int& newValue);
#endif
#endif
inline std::ostream& operator << (std::ostream &s, const Keyword &right)
{
return right.put(s);
}
// Class CCfits::Keyword::WrongKeywordValueType
// Class CCfits::Keyword
inline void Keyword::setParent (HDU* parent)
{
m_parent = parent;
}
inline ValueType Keyword::keytype () const
{
return m_keytype;
}
inline void Keyword::keytype (ValueType value)
{
m_keytype = value;
}
inline const HDU* Keyword::parent () const
{
return m_parent;
}
inline const String& Keyword::comment () const
{
return m_comment;
}
inline const String& Keyword::name () const
{
return m_name;
}
inline bool Keyword::isLongStr () const
{
return m_isLongStr;
}
} // namespace CCfits
#endif