-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTable.cxx
588 lines (486 loc) · 16.8 KB
/
Table.cxx
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
// Astrophysics Science Division,
// NASA/ Goddard Space Flight Center
// HEASARC
// http://heasarc.gsfc.nasa.gov
// e-mail: [email protected]
//
// Original author: Ben Dorman
// Column
#include "Column.h"
// ColumnCreator
#include "ColumnCreator.h"
// Table
#include "Table.h"
// FITS
#include "FITS.h"
#include <algorithm>
#include <sstream>
#include <utility>
namespace CCfits {
// Class CCfits::Table::NoSuchColumn
Table::NoSuchColumn::NoSuchColumn (const String& name, bool silent)
: FitsException("Fits Error: cannot find column named: ",silent)
{
addToMessage(name);
if (!silent || FITS::verboseMode() ) std::cerr << name << '\n';
}
Table::NoSuchColumn::NoSuchColumn (int index, bool silent)
: FitsException("Fits Error: no column numbered: ",silent)
{
std::ostringstream oss;
oss << index;
addToMessage(oss.str());
if (!silent || FITS::verboseMode() ) std::cerr << index << '\n';
}
// Class CCfits::Table::InvalidColumnSpecification
Table::InvalidColumnSpecification::InvalidColumnSpecification (const String& msg, bool silent)
: FitsException("Fits Error: illegal column specification ",silent)
{
addToMessage(msg);
if (!silent || FITS::verboseMode() ) std::cerr << msg << '\n';
}
// Class CCfits::Table
Table::Table(const Table &right)
: ExtHDU(right),
m_numCols(right.m_numCols),
m_column()
{
// deep-copy the right hand side data.
copyData(right);
}
Table::Table (FITS* p, HduType xtype, const String &hduName, int rows,
const std::vector<String>& columnName,
const std::vector<String>& columnFmt,
const std::vector<String>& columnUnit, int version)
: ExtHDU(p, xtype, hduName, 8, 2, std::vector<long>(2), version),
m_numCols(columnName.size()),
m_column()
{
int status=0;
// remember this is the writing constructor so user must specify
// what kind of extension this is.
int tblType = xtype;
naxes(1) = rows;
const size_t n(columnName.size());
//FITSUtil::auto_array_ptr<char*> pCname(new char*[n]);
//FITSUtil::auto_array_ptr<char*> pCformat(new char*[n]);
//FITSUtil::auto_array_ptr<char*> pCunit(new char*[n]);
char** cname = new char*[n];
char** cformat = new char*[n];
char** cunit = new char*[n];
char nullString[] = {'\0'};
for (size_t i = 0; i < n; ++i)
{
cname[i] = const_cast<char*>(columnName[i].c_str());
cformat[i] = const_cast<char*>(columnFmt[i].c_str());
if (i < columnUnit.size())
cunit[i] = const_cast<char*>(columnUnit[i].c_str());
else
cunit[i] = nullString;
}
fits_create_tbl(fitsPointer(), tblType, rows , m_numCols, cname,
cformat, cunit, const_cast<char*>(hduName.c_str()), &status);
if (!status && version > 1)
{
char extver[] = "EXTVER";
fits_write_key(fitsPointer(), Tint, extver, &version, 0, &status);
}
if (status)
{
delete [] cname;
delete [] cformat;
delete [] cunit;
throw FitsError(status);
}
delete[] cname;
delete[] cformat;
delete[] cunit;
}
Table::Table (FITS* p, int version, const String & groupName)
: ExtHDU(p, BinaryTbl, "GROUPING", 8, 2, std::vector<long>(2), version),
m_column()
{
// +++ I think there are too many other variables I'd like to pass in, so I want a new constructor.
// ie: if we want to tailor later and allow GT_ID_REF, etc
// I may update this constructor to pass in that variable now, and just have a default = GT_ID_ALL_URI
int status=0;
// create the grouping table
if ( fits_create_group(fitsPointer(), const_cast<char*>(groupName.c_str()), GT_ID_ALL_URI, &status) ) throw FitsError(status, false);
// now move to the new extension
// +++ no, I can't do this until addExtension() in addGroupTable()
// +++ the GRPNAME keyword is already there. Do I need to add it to the object members?
// +++ same with EXTVER (m_version was updated in the ExtHDU ctor)
// should I use HDU::readAllKeys ()? (in addGroupTable()?)
// // +++ or use Keyword& HDU::addKey(const String& name, T value, const String& comment) ?
// try {
// addKey("GRPNAME", groupName, "");
// } catch (...) {
// std::cout << "caught addKey" << std::endl;
// }
//
// // update the m_numCols data member
// try {
// if ( fits_get_num_cols (fitsPointer(), &m_numCols, &status) ) throw FitsError(status, false);
// } catch (...) {
// std::cout << "caught third status" << std::endl;
// }
}
Table::Table (FITS* p, HduType xtype, const String &hduName, int version)
: ExtHDU(p,xtype,hduName,version), m_numCols(0), m_column()
{
getVersion();
}
Table::Table (FITS* p, HduType xtype, int number)
: ExtHDU(p,xtype,number),
m_numCols(0),
m_column()
{
getVersion();
}
Table::~Table()
{
// destroy existing data (garbage collection for heap objects).
clearData();
}
void Table::initRead ()
{
int ncols=0;
int i=0;
int status=0;
status = fits_get_num_cols(fitsPointer(), &ncols, &status);
if (status != 0) throw FitsError(status);
std::vector<String> colName(ncols,"");
std::vector<String> colFmt(ncols,"");
std::vector<String> colUnit(ncols,"");
ColumnCreator create(this);
// virtual
readTableHeader(ncols, colName, colFmt, colUnit);
for(i=0; i<m_numCols; i++)
{
Column* newCol = create.getColumn(i+1, colName[i], colFmt[i],colUnit[i]);
m_column.insert(std::make_pair(colName[i], newCol));
newCol->setLimits(newCol->type());
}
}
std::ostream & Table::put (std::ostream &s) const
{
s << "FITS Table:: " << " Name: " << name() << " BITPIX "<< bitpix() << "\n";
s << " Number of Rows (NAXIS2) " << axis(1) << "\n";
s << " HISTORY: " << history() << '\n';
s << " COMMENTS: " << comment() << '\n';
s << " HDU number: " << index() + 1 << " No. of Columns: " << numCols() ;
if ( version() ) s << " Version " << version();
s << "\nNumber of keywords read: " << keyWord().size() << "\n";
for (std::map<String,Keyword*>::const_iterator ki = keyWord().begin();
ki != keyWord().end(); ki++)
{
s << *((*ki).second) << std::endl;
}
std::vector<Column*> __tmp;
ColMap::const_iterator ciEnd(m_column.end());
ColMap::const_iterator ci(m_column.begin());
while (ci != ciEnd)
{
__tmp.push_back((*ci).second);
++ci;
}
std::sort(__tmp.begin(),__tmp.end(),FITSUtil::ComparePtrIndex<Column>());
for (std::vector<Column*>::iterator lci = __tmp.begin(); lci != __tmp.end(); ++lci)
{
s << **lci << std::flush;
}
return s;
}
void Table::init (bool readFlag, const std::vector<String>& keys)
{
// read and defined the columns from the header.
initRead();
// read data or keys if any are requested.
if (readFlag || keys.size() > 0) readData(readFlag,keys);
}
void Table::clearData ()
{
// obliterate current contents, then remove pointers from the map.
for (ColMap::const_iterator col = m_column.begin();
col != m_column.end(); col++)
{
delete (*col).second;
}
m_column.clear();
}
void Table::copyData (const Table& right)
{
// ensure deep copy. clone() calls the copy constructor for Column.
// Column has 'deep copy' because all its data members that need
// to be copied (i.e. not the pointer to the fits file) are allocated
// on the stack by being Container types.
ColMap newColumnContainer;
try
{
for (ColMap::const_iterator col = right.m_column.begin();
col != right.m_column.end(); col++)
{
Column* colCopy = (*col).second->clone();
colCopy->setParent(this);
newColumnContainer.insert(std::make_pair(col->first, colCopy));
}
m_column = newColumnContainer;
}
catch (...) { throw; }
}
Column& Table::column (const String& colName, bool caseSensitive) const
{
// For backwards compatibility with older m_column implementation as
// a map (not a multimap), just return the first key that matches.
bool isFound = false;
ColMap::const_iterator key = m_column.begin();
if (caseSensitive)
{
key = m_column.find(colName);
isFound = (key != m_column.end());
}
else
{
const string lcColName = FITSUtil::lowerCase(colName);
while (!isFound && key != m_column.end())
{
isFound = (lcColName == FITSUtil::lowerCase(key->first));
if (!isFound)
++key;
}
}
if ( !isFound ) throw NoSuchColumn(colName);
return *(key->second);
}
Column& Table::column (int colIndex) const
{
ColMap::const_iterator key;
for ( key = m_column.begin(); key != m_column.end(); key++)
{
if ( ((*key).second)->index() == colIndex) break;
}
if ( key == m_column.end() ) throw NoSuchColumn(colIndex);
return *((*key).second);
}
void Table::updateRows ()
{
long numrows(0);
int status(0);
if (fits_get_num_rows(fitsPointer(),&numrows,&status) ) throw FitsError(status);
long oldrows = naxes(1);
naxes(1,numrows);
// If the number of rows has changed, it could be due to
// a write operation into a single column. Therefore other
// previously read columns will no longer be up-to-date,
// as seen by their m_data buffers not matching the new
// nRows in table.
// If we got here from Table's insertRows or deleteRows,
// every column WILL have had it's m_data storage updated.
if (oldrows != numrows)
{
ColMap::iterator itCol = m_column.begin();
ColMap::iterator itColEnd = m_column.end();
while (itCol != itColEnd)
{
const long curStorage =
static_cast<long>(itCol->second->getStoredDataSize());
if (curStorage != numrows)
itCol->second->isRead(false);
++itCol;
}
}
}
void Table::setColumn (const String& colname, Column* value)
{
m_column.insert(std::make_pair(colname, value));
}
void Table::deleteColumn (const String& columnName)
{
std::pair<ColMap::iterator,ColMap::iterator> itRange = m_column.equal_range(columnName);
if (itRange.first == itRange.second)
throw NoSuchColumn(columnName);
ColMap::iterator itCol = itRange.first;
while (itCol != itRange.second)
{
// Don't assume if multiple cols share columnName that
// equal_range returns them sorted by col idx.
// Note that both fits_delete_col and reindex() are O(N)
// where N = total number of columns in table.
Column* doomed = itCol->second;
int status=0;
if (fits_delete_col(fitsPointer(), doomed->index(), &status))
throw FitsError(status);
m_column.erase(itCol++);
reindex(doomed->index(), false);
delete doomed;
}
updateRows();
}
void Table::insertRows (long first, long number)
{
int status(0);
if (fits_insert_rows(fitsPointer(),first,number,&status)) throw FitsError(status);
// cfitsio's semantics are that rows are insert after row first,
// while vector's insert semantic is to insert before the initial.
ColMap::iterator ci = m_column.begin();
ColMap::iterator ciEnd = m_column.end();
while (ci != ciEnd)
{
((*ci).second)->insertRows(first,number);
++ci;
}
updateRows();
}
void Table::deleteRows (long first, long number)
{
// this should only be able to throw the FitsError exception and
// should not leak resources as per the standard library guarantee for vector.
makeThisCurrent();
int status(0);
// cfitsio will reject invalid values of first, number. (e.g. first <= 0).
if (fits_delete_rows(fitsPointer(),first,number,&status)) throw FitsError(status);
ColMap::iterator ci = m_column.begin();
ColMap::iterator ciEnd = m_column.end();
while (ci != ciEnd)
{
((*ci).second)->deleteRows(first,number);
++ci;
}
updateRows();
}
void Table::deleteRows (const std::vector<long>& rowList)
{
int status(0);
makeThisCurrent();
FITSUtil::CVarray<long> convert;
FITSUtil::auto_array_ptr<long> pDoomedRows(convert(rowList));
long* doomedRows = pDoomedRows.get();
if (fits_delete_rowlist(fitsPointer(),doomedRows,rowList.size(),&status))
throw FitsError(status);
ColMap::iterator ci = m_column.begin();
ColMap::iterator ciEnd = m_column.end();
const size_t N(rowList.size());
while (ci != ciEnd)
{
for (size_t j = 0; j < N; ++j)
{
((*ci).second)->deleteRows(rowList[j],1);
}
++ci;
}
updateRows();
}
void Table::reindex (int startNum, bool isInsert)
{
// If isInsert, assume this is called PRIOR to insertion into
// column container.
// If !isInsert, assume this is called AFTER deletion.
makeThisCurrent();
ColMap::iterator itCol = m_column.begin();
ColMap::iterator itColEnd = m_column.end();
while (itCol != itColEnd)
{
Column* col = itCol->second;
int oldIdx = col->index();
if (isInsert)
{
if (oldIdx >= startNum)
col->index(oldIdx+1);
}
else
{
if (oldIdx > startNum)
col->index(oldIdx-1);
}
++itCol;
}
}
long Table::getRowsize () const
{
int status = 0;
long rowSize = 0;
if (fits_get_rowsize(fitsPointer(), &rowSize, &status))
throw FitsError(status);
return rowSize;
}
void Table::copyColumn(const Column& inColumn, int colIndx, bool insertNewCol)
{
int status=0;
fitsfile *infptr = inColumn.parent()->fitsPointer();
const int inHduNum = inColumn.parent()->index();
makeThisCurrent();
// fits_copy_col will prevent copying from Binary to AsciiTable,
// so don't need to explicitly check for that here.
if (fitsPointer() == infptr && inColumn.parent() != this)
{
// Can't give the same fitsfile pointer for in/out in fits_copy_col.
fitsfile *tmpfptr=0;
FITSUtil::auto_array_ptr<char> pFileName(new char[FLEN_FILENAME]);
if (fits_file_name(infptr, pFileName.get(),&status))
throw FitsError(status);
if (fits_open_file(&tmpfptr,pFileName.get(), 1, &status))
throw FitsError(status);
if (fits_movabs_hdu(tmpfptr, index()+1, 0, &status))
{
fits_close_file(tmpfptr,&status);
throw FitsError(status);
}
if (fits_movabs_hdu(infptr, inHduNum+1, 0, &status))
{
fits_close_file(tmpfptr,&status);
throw FitsError(status);
}
if (fits_copy_col(infptr, tmpfptr, inColumn.index(), colIndx, (int)insertNewCol, &status))
{
fits_close_file(tmpfptr,&status);
throw FitsError(status);
}
fits_close_file(tmpfptr,&status);
}
else
{
inColumn.parent()->makeThisCurrent();
if (fits_copy_col(infptr,fitsPointer(), inColumn.index(), colIndx, (int)insertNewCol,&status))
throw FitsError(status);
}
if (insertNewCol)
{
Column* colCopy = inColumn.clone();
colCopy->setParent(this);
colCopy->index(colIndx);
// Not going to assume we can reuse inColumn's m_data array.
// For one thing, it might not even have the same number of rows
// as this table. It's safest just to force a read-from-disk
// next time a read operation is called.
colCopy->resetRead();
reindex(colIndx, true);
column().insert(std::make_pair(colCopy->name(), colCopy));
}
else
{
// Can assume the write to existing column succeeded, else
// bad status would have thrown above.
ColMap::iterator itCol = column().begin();
ColMap::iterator itColEnd = column().end();
bool isFound=false;
while (!isFound && itCol != itColEnd)
{
if (itCol->second->index() == colIndx)
isFound = true;
else
++itCol;
}
if (itCol != itColEnd)
{
// For a non-inserted column copy, the various column keywords
// (ie. TSCALn, TTYPEn,...) of the destination column ARE NOT
// replaced with the incoming copy values. Therefore DON'T
// replace CCfits Column object with a clone of the input.
// Simply reset isRead flag to false. m_data array will be
// properly refilled upon next read operation.
itCol->second->resetRead();
}
}
}
// Additional Declarations
} // namespace CCfits