GammaLib  2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GFitsTableShortCol.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  * GFitsTableShortCol.cpp - FITS table short integer column class *
3  * ----------------------------------------------------------------------- *
4  * copyright (C) 2010-2021 by Juergen Knoedlseder *
5  * ----------------------------------------------------------------------- *
6  * *
7  * This program is free software: you can redistribute it and/or modify *
8  * it under the terms of the GNU General Public License as published by *
9  * the Free Software Foundation, either version 3 of the License, or *
10  * (at your option) any later version. *
11  * *
12  * This program is distributed in the hope that it will be useful, *
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15  * GNU General Public License for more details. *
16  * *
17  * You should have received a copy of the GNU General Public License *
18  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19  * *
20  ***************************************************************************/
21 /**
22  * @file GFitsTableShortCol.cpp
23  * @brief FITS table short integer column class implementation
24  * @author Juergen Knoedlseder
25  */
26 
27 /* __ Includes ___________________________________________________________ */
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31 #include <string>
32 #include "GException.hpp"
33 #include "GTools.hpp"
34 #include "GFitsCfitsio.hpp"
35 #include "GFitsTableShortCol.hpp"
36 
37 /* __ Method name definitions ____________________________________________ */
38 #define G_INSERT "GFitsTableShortCol::insert(int&, int&)"
39 #define G_REMOVE "GFitsTableShortCol::remove(int&, int&)"
40 
41 /* __ Macros _____________________________________________________________ */
42 
43 /* __ Coding definitions _________________________________________________ */
44 
45 /* __ Debug definitions __________________________________________________ */
46 
47 
48 /*==========================================================================
49  = =
50  = Constructors/destructors =
51  = =
52  ==========================================================================*/
53 
54 /***********************************************************************//**
55  * @brief Constructor
56  ***************************************************************************/
58 {
59  // Initialise class members for clean destruction
60  init_members();
61 
62  // Return
63  return;
64 }
65 
66 
67 /***********************************************************************//**
68  * @brief Constructor
69  *
70  * @param[in] name Name of column.
71  * @param[in] nrows Number of rows in column.
72  * @param[in] size Number of elements in column (negative for variable-length).
73  ***************************************************************************/
75  const int& nrows,
76  const int& size) :
77  GFitsTableCol(name, nrows, size, 2)
78 {
79  // Initialise class members for clean destruction
80  init_members();
81 
82  // Return
83  return;
84 }
85 
86 
87 /***********************************************************************//**
88  * @brief Copy constructor
89  *
90  * @param[in] column Table column.
91  ***************************************************************************/
93  GFitsTableCol(column)
94 {
95  // Initialise class members for clean destruction
96  init_members();
97 
98  // Copy members
99  copy_members(column);
100 
101  // Return
102  return;
103 }
104 
105 
106 /***********************************************************************//**
107  * @brief Destructor
108  ***************************************************************************/
110 {
111  // Free members
112  free_members();
113 
114  // Return
115  return;
116 }
117 
118 
119 /*==========================================================================
120  = =
121  = Operators =
122  = =
123  ==========================================================================*/
124 
125 /***********************************************************************//**
126  * @brief Assignment operator
127  *
128  * @param[in] column Table column.
129  * @return Table column.
130  ***************************************************************************/
132 {
133  // Execute only if object is not identical
134  if (this != &column) {
135 
136  // Copy base class members
137  this->GFitsTableCol::operator=(column);
138 
139  // Free members
140  free_members();
141 
142  // Initialise private members for clean destruction
143  init_members();
144 
145  // Copy members
146  copy_members(column);
147 
148  } // endif: object was not identical
149 
150  // Return this object
151  return *this;
152 }
153 
154 
155 /***********************************************************************//**
156  * @brief Column data access operator
157  *
158  * @param[in] row Row of column to access.
159  * @param[in] inx Vector index in column row to access.
160  *
161  * Provides access to data in a column.
162  ***************************************************************************/
163 short& GFitsTableShortCol::operator()(const int& row, const int& inx)
164 {
165  // If data are not available then load them now
166  if (m_data == NULL) fetch_data();
167 
168  // Return data bin
169  return m_data[offset(row, inx)];
170 }
171 
172 
173 /***********************************************************************//**
174  * @brief Column data access operator (const variant)
175  *
176  * @param[in] row Row of column to access.
177  * @param[in] inx Vector index in column row to access.
178  *
179  * Provides access to data in a column.
180  ***************************************************************************/
181 const short& GFitsTableShortCol::operator()(const int& row, const int& inx) const
182 {
183  // If data are not available then load them now
184  if (m_data == NULL) fetch_data();
185 
186  // Return data bin
187  return m_data[offset(row, inx)];
188 }
189 
190 
191 /*==========================================================================
192  = =
193  = Public methods =
194  = =
195  ==========================================================================*/
196 
197 /***********************************************************************//**
198  * @brief Clear instance
199  *
200  * This method properly resets the object to an initial state.
201  ***************************************************************************/
203 {
204  // Free class members (base and derived classes, derived class first)
205  free_members();
207 
208  // Initialise members
210  init_members();
211 
212  // Return
213  return;
214 }
215 
216 
217 /***********************************************************************//**
218  * @brief Clone column
219  ***************************************************************************/
221 {
222  return new GFitsTableShortCol(*this);
223 }
224 
225 
226 /***********************************************************************//**
227  * @brief Get string value
228  *
229  * @param[in] row Table row.
230  * @param[in] inx Table column vector index.
231  *
232  * Returns value of specified row and vector index as string.
233  ***************************************************************************/
234 std::string GFitsTableShortCol::string(const int& row, const int& inx) const
235 {
236  // If data are not available then load them now
237  if (m_data == NULL) fetch_data();
238 
239  // Return value
240  return (gammalib::str(m_data[offset(row,inx)]));
241 }
242 
243 
244 /***********************************************************************//**
245  * @brief Get double precision value
246  *
247  * @param[in] row Table row.
248  * @param[in] inx Table column vector index.
249  *
250  * Returns value of specified row and vector index as double precision.
251  ***************************************************************************/
252 double GFitsTableShortCol::real(const int& row, const int& inx) const
253 {
254  // If data are not available then load them now
255  if (m_data == NULL) fetch_data();
256 
257  // Convert short into double
258  double value = (double)m_data[offset(row,inx)];
259 
260  // Return value
261  return value;
262 }
263 
264 
265 /***********************************************************************//**
266  * @brief Get integer value
267  *
268  * @param[in] row Table row.
269  * @param[in] inx Table column vector index.
270  *
271  * Returns value of specified row and vector index as integer.
272  ***************************************************************************/
273 int GFitsTableShortCol::integer(const int& row, const int& inx) const
274 {
275  // If data are not available then load them now
276  if (m_data == NULL) fetch_data();
277 
278  // Convert short into int
279  int value = (int)m_data[offset(row,inx)];
280 
281  // Return value
282  return value;
283 }
284 
285 
286 /***********************************************************************//**
287  * @brief Insert rows in column
288  *
289  * @param[in] row Row after which rows should be inserted (0=first row).
290  * @param[in] nrows Number of rows to be inserted.
291  *
292  * @exception GException::out_of_range
293  * Specified row is invalid.
294  *
295  * Inserts rows into a FITS table. This implies that all columns will be
296  * loaded into memory.
297  ***************************************************************************/
298 void GFitsTableShortCol::insert(const int& row, const int& nrows)
299 {
300  // Make sure that row is valid
301  if (row < 0 || row > m_length) {
302  throw GException::out_of_range(G_INSERT, "FITS table row number",
303  row, m_length+1);
304  }
305 
306  // Continue only if there are rows to be inserted
307  if (nrows > 0) {
308 
309  // If we have no rows yet then simply set the length to the
310  // number of rows to be inserted
311  if (m_length == 0) {
312  m_length = nrows;
314  alloc_data();
315  init_data();
316  }
317 
318  // ... otherwise fetch data, allocate new data and copy over
319  // the existing items
320  else {
321 
322  // If data are not available then load them now
323  if (m_data == NULL) fetch_data();
324 
325  // Compute new column length
326  int length = m_length + nrows;
327 
328  // Calculate size of new memory
329  m_size = m_number * length;
330 
331  // Allocate new data to hold the column
332  short* new_data = new short[m_size];
333 
334  // Compute the number of elements before the insertion point,
335  // the number of elements that get inserted, and the total
336  // number of elements after the insertion point
337  int n_before = m_number * row;
338  int n_insert = m_number * nrows;
339  int n_after = m_number * (m_length - row);
340 
341  // Copy and initialise data
342  short* src = m_data;
343  short* dst = new_data;
344  for (int i = 0; i < n_before; ++i) {
345  *dst++ = *src++;
346  }
347  for (int i = 0; i < n_insert; ++i) {
348  *dst++ = 0;
349  }
350  for (int i = 0; i < n_after; ++i) {
351  *dst++ = *src++;
352  }
353 
354  // Free old data
355  if (m_data != NULL) delete [] m_data;
356 
357  // Set pointer to new data and store length
358  m_data = new_data;
359  m_length = length;
360 
361  } // endelse: there were already data
362 
363  } // endfor: there were rows to be inserted
364 
365  // Return
366  return;
367 }
368 
369 
370 /***********************************************************************//**
371  * @brief Remove rows from column
372  *
373  * @param[in] row Row after which rows should be removed (0=first row).
374  * @param[in] nrows Number of rows to be removed.
375  *
376  * @exception GException::out_of_range
377  * Specified row is invalid.
378  * Invalid number of rows specified.
379  *
380  * This method removes rows from a FITS table. This implies that the column
381  * will be loaded into memory.
382  ***************************************************************************/
383 void GFitsTableShortCol::remove(const int& row, const int& nrows)
384 {
385  // Make sure that row is valid
386  if (row < 0 || row >= m_length) {
387  throw GException::out_of_range(G_REMOVE, "FITS table row number",
388  row, m_length);
389 
390  }
391 
392  // Make sure that we don't remove beyond the limit
393  if (nrows < 0 || nrows > m_length-row) {
394  throw GException::out_of_range(G_REMOVE, "Number of FITS table rows",
395  nrows, m_length-row+1);
396  }
397 
398  // Continue only if there are rows to be removed
399  if (nrows > 0) {
400 
401  // If data are not available then load them now
402  if (m_data == NULL) fetch_data();
403 
404  // Compute new column length
405  int length = m_length - nrows;
406 
407  // Calculate size of new memory
408  m_size = m_number * length;
409 
410  // If we have rows remaining then allocate new data to hold
411  // the column
412  if (m_size > 0) {
413 
414  // Allocate new data to hold the column
415  short* new_data = new short[m_size];
416 
417  // Compute the number of elements before the removal point,
418  // the number of elements that get removed, and the total
419  // number of elements after the removal point
420  int n_before = m_number * row;
421  int n_remove = m_number * nrows;
422  int n_after = m_number * (length - row);
423 
424  // Copy data
425  short* src = m_data;
426  short* dst = new_data;
427  for (int i = 0; i < n_before; ++i) {
428  *dst++ = *src++;
429  }
430  src += n_remove;
431  for (int i = 0; i < n_after; ++i) {
432  *dst++ = *src++;
433  }
434 
435  // Free old data
436  if (m_data != NULL) delete [] m_data;
437 
438  // Set pointer to new data and store length
439  m_data = new_data;
440  m_length = length;
441 
442  } // endif: there are still elements after removal
443 
444  // ... otherwise just remove all data
445  else {
446 
447  // Free old data
448  if (m_data != NULL) delete [] m_data;
449 
450  // Set pointer to new data and store length
451  m_data = NULL;
452  m_length = length;
453  }
454 
455  } // endfor: there were rows to be removed
456 
457  // Return
458  return;
459 }
460 
461 
462 /***********************************************************************//**
463  * @brief Set nul value
464  *
465  * @param[in] value Nul value.
466  *
467  * @todo To correctly reflect the nul value in the data, the column should
468  * be reloaded. However, the column may have been changed, so in principle
469  * saving is needed. However, we may not want to store the data, hence saving
470  * is also not desired. We thus have to develop a method to update the
471  * column information for a new nul value in place ...
472  ***************************************************************************/
473 void GFitsTableShortCol::nulval(const short* value)
474 {
475  // Allocate nul value
476  alloc_nulval(value);
477 
478  // Update column
479 // if (m_data != NULL) {
480 // save();
481 // load();
482 // }
483 
484  // Return
485  return;
486 }
487 
488 
489 /*==========================================================================
490  = =
491  = Private methods =
492  = =
493  ==========================================================================*/
494 
495 /***********************************************************************//**
496  * @brief Initialise class members
497  ***************************************************************************/
499 {
500  // Initialise members
501  m_type = __TSHORT;
502  m_data = NULL;
503  m_nulval = NULL;
504 
505  // Return
506  return;
507 }
508 
509 
510 /***********************************************************************//**
511  * @brief Copy class members
512  *
513  * @param[in] column Column.
514  *
515  * Sets the content of the vector column by copying from another column.
516  * If the code is compiled with the small memory option, and if the source
517  * column has not yet been loaded, then we only load the column temporarily
518  * for copying purposes and release it again once copying is finished.
519  ***************************************************************************/
521 {
522  // Fetch data if necessary
523  bool not_loaded = (!column.is_loaded());
524  if (not_loaded) {
525  column.fetch_data();
526  }
527 
528  // Copy attributes
529  m_type = column.m_type;
530  m_size = column.m_size;
531  m_varlen = column.m_varlen;
532  m_rowstart = column.m_rowstart;
533 
534  // Copy column data
535  if (column.m_data != NULL && m_size > 0) {
536  alloc_data();
537  for (int i = 0; i < m_size; ++i) {
538  m_data[i] = column.m_data[i];
539  }
540  }
541 
542  // Copy NULL value
543  alloc_nulval(column.m_nulval);
544 
545  // Small memory option: release column if it was fetch above
546  #if defined(G_SMALL_MEMORY)
547  if (not_loaded) {
548  const_cast<GFitsTableShortCol*>(&column)->release_data();
549  }
550  #endif
551 
552  // Return
553  return;
554 }
555 
556 
557 /***********************************************************************//**
558  * @brief Delete class members
559  ***************************************************************************/
561 {
562  // Free memory
563  if (m_data != NULL) delete [] m_data;
564  if (m_nulval != NULL) delete m_nulval;
565 
566  // Mark memory as freed
567  m_data = NULL;
568  m_nulval = NULL;
569 
570  // Reset load flag
571  m_size = 0;
572 
573  // Return
574  return;
575 }
576 
577 
578 /***********************************************************************//**
579  * @brief Returns format string of ASCII table
580  ***************************************************************************/
581 std::string GFitsTableShortCol::ascii_format(void) const
582 {
583  // Initialize format string
584  std::string format;
585 
586  // Set type code
587  format.append("I6");
588 
589  // Set width
590  //format.append(gammalib::str(m_width));
591 
592  // Return format
593  return format;
594 }
595 
596 
597 /***********************************************************************//**
598  * @brief Allocates column data
599  ***************************************************************************/
601 {
602  // Free any existing memory
603  if (m_data != NULL) delete [] m_data;
604 
605  // Mark pointer as free
606  m_data = NULL;
607 
608  // Allocate new data
609  if (m_size > 0) {
610  m_data = new short[m_size];
611  }
612 
613  // Return
614  return;
615 }
616 
617 
618 /***********************************************************************//**
619  * @brief Fetch column data
620  ***************************************************************************/
622 {
623  // Load column (circumvent const correctness)
624  const_cast<GFitsTableShortCol*>(this)->load_column();
625 
626  // Return
627  return;
628 }
629 
630 
631 /***********************************************************************//**
632  * @brief Resize column data
633  *
634  * @param[in] index Start index.
635  * @param[in] number Number of elements to add/remove.
636  *
637  * Adds or removes elements from specified index on. Adding is done if
638  * @p number is a positive number, removing if @p number is negative.
639  * Note that the method does not change the validity of the arguments.
640  * This needs to be done by the client.
641  ***************************************************************************/
642 void GFitsTableShortCol::resize_data(const int& index, const int& number)
643 {
644  // Continue only if number of elements is not zero
645  if (number != 0) {
646 
647  // If data are not available then load them now
648  if (m_data == NULL) fetch_data();
649 
650  // If elements should be removed then do not allocate new memory
651  // but just move elements forward and change the logical size of
652  // memory. Only if all elements should be removed the memory is
653  // released.
654  if (number < 0) {
655  int left = index - number;
656  short* dst = m_data + index;
657  short* src = m_data + left;
658  int num = m_size - left;
659  for (int i = 0; i < num; ++i) {
660  *dst++ = *src++;
661  }
662  m_size += number;
663  if (m_size < 1) {
664  release_data();
665  }
666  }
667 
668  // If elements should be added then allocate new memory, copy over
669  // the old data and initialise the new elements
670  else {
671  int left = m_size - index;
672  m_size += number;
673  short* new_data = new short[m_size];
674  short* dst = new_data;
675  short* src = m_data;
676  for (int i = 0; i < index; ++i) {
677  *dst++ = *src++;
678  }
679  for (int i = 0; i < number; ++i) {
680  *dst++ = 0;
681  }
682  for (int i = 0; i < left; ++i) {
683  *dst++ = *src++;
684  }
685  if (m_data != NULL) delete [] m_data;
686  m_data = new_data;
687  }
688 
689  } // endif: number was non-zero
690 
691  // Return
692  return;
693 }
694 
695 
696 /***********************************************************************//**
697  * @brief Release column data
698  ***************************************************************************/
700 {
701  // Free any existing memory
702  if (m_data != NULL) delete [] m_data;
703 
704  // Mark pointer as free and reset loaded vector size
705  m_data = NULL;
706  m_size = 0;
707 
708  // Return
709  return;
710 }
711 
712 
713 /***********************************************************************//**
714  * @brief Allocates null value
715  *
716  * @param[in] value Nul value.
717  ***************************************************************************/
718 void GFitsTableShortCol::alloc_nulval(const short* value)
719 {
720  // Free any existing memory
721  if (m_nulval != NULL) delete m_nulval;
722 
723  // Mark pointer as free
724  m_nulval = NULL;
725 
726  // If we have valid value, allocate and set nul value
727  if (value != NULL) {
728  m_nulval = new short;
729  *m_nulval = *value;
730  }
731 
732  // Return
733  return;
734 }
735 
736 
737 /***********************************************************************//**
738  * @brief Initialise column data
739  ***************************************************************************/
741 {
742  // Initialise data if they exist
743  if (m_data != NULL) {
744  for (int i = 0; i < m_size; ++i) {
745  m_data[i] = 0;
746  }
747  }
748 
749  // Return
750  return;
751 }
virtual ~GFitsTableShortCol(void)
Destructor.
int m_type
Column type.
std::string number(const std::string &noun, const int &number)
Convert singular noun into number noun.
Definition: GTools.cpp:1167
int m_number
Number of elements in column.
virtual bool is_loaded(void) const
Checks if column has been loaded.
virtual double real(const int &row, const int &col=0) const
Get double precision value.
void free_members(void)
Delete class members.
GFitsTableCol & operator=(const GFitsTableCol &column)
Assignment operator.
int m_varlen
Maximum number of elements in variable-length.
Gammalib tools definition.
void copy_members(const GFitsTableShortCol &column)
Copy class members.
GFitsTableShortCol & operator=(const GFitsTableShortCol &column)
Assignment operator.
virtual void load_column(void)
Load table column from FITS file.
virtual void clear(void)
Clear instance.
virtual std::string string(const int &row, const int &col=0) const
Get string value.
virtual void init_data(void)
Initialise column data.
const int & number(void) const
Returns number of elements in column.
void init_members(void)
Initialise class members.
#define __TSHORT
CFITSIO interface header.
Abstract interface for FITS table column.
std::vector< int > m_rowstart
Start index of each row.
std::string left(const std::string &s, const int &n, const char &c= ' ')
Left justify string to achieve a length of n characters.
Definition: GTools.cpp:1070
void init_members(void)
Initialise class members.
#define G_INSERT
virtual std::string ascii_format(void) const
Returns format string of ASCII table.
int m_length
Length of column (number of rows)
virtual void remove(const int &row, const int &nrows)
Remove rows from column.
int m_size
Size of allocated data area (0 if not loaded)
virtual int integer(const int &row, const int &col=0) const
Get integer value.
virtual void alloc_data(void)
Allocates column data.
void free_members(void)
Delete class members.
short & operator()(const int &row, const int &inx=0)
Column data access operator.
virtual int offset(const int &row, const int &inx) const
Compute offset of column element in memory.
virtual void insert(const int &row, const int &nrows)
Insert rows in column.
Exception handler interface definition.
short * m_nulval
NULL value.
#define G_REMOVE
FITS table short integer column class interface definition.
short * m_data
Data vector.
FITS table short integer column.
virtual GFitsTableShortCol * clone(void) const
Clone column.
GFitsTableShortCol(void)
Constructor.
short * nulval(void)
Returns pointer to nul value.
const int & nrows(void) const
Returns number of rows in column.
virtual void fetch_data(void) const
Fetch column data.
virtual void resize_data(const int &index, const int &number)
Resize column data.
virtual void release_data(void)
Release column data.
void alloc_nulval(const short *value)
Allocates null value.
std::string str(const unsigned short int &value)
Convert unsigned short integer value into string.
Definition: GTools.cpp:489