Newer
Older
* fitskey.c
*
* Functions related to the management of FITS table columns ("keys").
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*
* This file part of: AstrOmatic FITS/LDAC library
*
* Copyright: (C) 1995-2020 IAP/CNRS/SorbonneU
* License: GNU General Public License
* AstrOmatic software is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* AstrOmatic software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with AstrOmatic software.
* If not, see <http://www.gnu.org/licenses/>.
* Last modified: 11/02/2020
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "fitscat_defs.h"
#include "fitscat.h"
/****** add_key ****************************************************************
PROTO int add_key(keystruct *key, tabstruct *tab, int pos)
PURPOSE Copy a key from one table to another.
INPUT Pointer to the key,
Pointer to the table,
Pointer to the destination table,
Position (1= first, <=0 = at the end)
OUTPUT RETURN_OK if everything went as expected, and RETURN_ERROR otherwise.
NOTES A preexisting key in the destination table yields a RETURN_ERROR.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 26/03/96
***/
int add_key(keystruct *key, tabstruct *tab, int pos)
{
/*Check if a similar key doesn't already exist in the dest. cat */
if (name_to_key(tab, key->name))
return RETURN_ERROR;
/*Update links (portion of code similar to that of copy_key below) */
if ((key->nextkey = pos_to_key(tab, pos)))
{
(key->prevkey = key->nextkey->prevkey)->nextkey = key;
key->nextkey->prevkey = key;
/*--the first place has a special meaning*/
if (pos==1)
tab->key = key;
}
else
/*There was no no key before*/
tab->key = key->nextkey = key->prevkey = key;
tab->nkey++;
return RETURN_OK;
}
/****** blank_keys *************************************************************
PROTO int blank_keys(tabstruct *tab)
PURPOSE Put the array pointers from all keys in a table to NULL.
INPUT Pointer to the table.
OUTPUT RETURN_OK if keys were found, and RETURN_ERROR otherwise.
Notes: -.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 25/04/97
***/
int blank_keys(tabstruct *tab)
{
keystruct *key;
int k;
if (!(key = tab->key))
return RETURN_ERROR;
for (k=tab->nkey; k--;)
{
key->ptr = NULL;
key = key->nextkey;
}
return RETURN_OK;
}
/****** copy_key ***************************************************************
PROTO int copy_key(tabstruct *tabin, char *keyname, tabstruct *tabout, int pos)
PURPOSE Copy a key from one table to another.
INPUT Pointer to the original table,
Name of the key,
Pointer to the destination table,
Position (1= first, <=0 = at the end)
OUTPUT RETURN_OK if everything went as expected, and RETURN_ERROR otherwise.
NOTES A preexisting key in the destination table yields a RETURN_ERROR,
the ptr member is NOT COPIED.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 19/08/96
***/
int copy_key(tabstruct *tabin, char *keyname, tabstruct *tabout, int pos)
{
keystruct *keyin, *keyout;
/*Convert the key name to a pointer*/
if (!(keyin = name_to_key(tabin, keyname)))
return RETURN_ERROR;
/*Check if a similar key doesn't already exist in the dest. cat */
if (name_to_key(tabout, keyname))
return RETURN_ERROR;
tabout->nkey++;
/*First, allocate memory and copy data */
QCALLOC(keyout, keystruct, 1);
*keyout = *keyin;
keyout->ptr = NULL;
if (keyin->naxis)
QMEMCPY(keyin->naxisn, keyout->naxisn, int, keyin->naxis);
/*Then, update the links */
if ((keyout->nextkey = pos_to_key(tabout, pos)))
{
(keyout->prevkey = keyout->nextkey->prevkey)->nextkey = keyout;
keyout->nextkey->prevkey = keyout;
/*--the first place has a special meaning*/
if (pos==1)
tabout->key = keyout;
}
else
/*There was no no key before*/
tabout->key = keyout->nextkey = keyout->prevkey = keyout;
return RETURN_OK;
}
/****** free_key ***************************************************************
PROTO void free_key(keystruct *key)
PURPOSE Free memory associated to a key ptr.
INPUT Pointer to the key.
OUTPUT -.
NOTES -.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 19/08/96
***/
void free_key(keystruct *key)
{
free(key->naxisn);
free(key->ptr);
free(key);
return;
}
/****** new_key ****************************************************************
PROTO keystruct *new_key(char *keyname)
PURPOSE Create a new key.
INPUT Name of the key.
OUTPUT A pointer to the new keystruct.
NOTES This function is only provided as a counterpart to new_tab() and
new_cat(): in order to be usable, other key parameters MUST be
handled by the user.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 26/03/96
***/
keystruct *new_key(char *keyname)
{
keystruct *key;
QCALLOC(key, keystruct, 1);
strcpy(key->name, keyname);
return key;
}
/****** read_key ***************************************************************
PROTO keystruct *read_key(tabstruct *tab, char *keyname)
PURPOSE Read one simple column from a FITS binary table.
INPUT pointer to the table,
name of the key,
OUTPUT A pointer to the relevant key, or NULL if the desired key is not
found in the table.
NOTES If key->ptr is not NULL, the function doesn't do anything.
AUTHOR E. Bertin (IAP)
E.R. Deul (Sterrewacht Leiden) (Added open_cat error checking)
VERSION 11/02/2020
***/
keystruct *read_key(tabstruct *tab, char *keyname)
{
catstruct *cat;
keystruct *key;
char *buf, *ptr, *fptr,*fptr0;
unsigned short ashort = 1;
int i,j, larray,narray,size,
esize, bswapflag;
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
if (!(key = name_to_key(tab, keyname)))
return NULL;
/*If ptr is not NULL, there is already something loaded there: let's free mem */
QFREE(key->ptr);
/*!! It is not necessarily the original table */
tab = key->tab;
cat = tab->cat;
/*We are expecting a 2D binary-table, and nothing else*/
if ((tab->naxis != 2)
|| (tab->bitpix!=8)
|| (tab->tfields == 0)
|| strncmp(tab->xtension, "BINTABLE", 8))
error(EXIT_FAILURE, "*Error*: No binary table in ", cat->filename);
/*Size and number of lines in the binary table*/
larray = tab->naxisn[0];
narray = tab->naxisn[1];
/*Positioning to the first element*/
if (open_cat(cat, READ_ONLY) == RETURN_ERROR)
error(EXIT_FAILURE, "*Error*: opening catalog ",cat->filename);
QFSEEK(cat->file, tab->bodypos , SEEK_SET, cat->filename);
/*allocate memory for the buffer where we put one line of data*/
QMALLOC(buf, char, larray);
fptr0 = buf+key->pos;
size = key->nbytes;
/*allocate memory for the array*/
QMALLOC(ptr, char, size*narray);
key->ptr = ptr;
bswapflag = *((char *)&ashort); // Byte-swapping flag
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
/*read line by line*/
for (i=narray; i--;)
{
QFREAD(buf, larray, cat->file, cat->filename);
fptr = fptr0;
if (bswapflag)
{
esize = t_size[key->ttype];
swapbytes(fptr0, esize, size/esize);
}
for (j = size; j--;)
*(ptr++) = *(fptr++);
}
free(buf);
return key;
}
/****** read_keys **************************************************************
PURPOSE Read several columns from a FITS binary table.
INPUT pointer to the table,
pointer to an array of char *,
pointer to an array of keystruct * (memory must have been allocated),
number of keys to read,
an optional mask pointer.
OUTPUT -.
NOTES The array of pointers pointed by keys is filled with pointers
to the relevant keys (a NULL means NO key with such name was found).
A NULL keys pointer can be given (no info returned of course).
A NULL keynames pointer means read ALL keys belonging to the table.
A NULL mask pointer means NO selection for reading.
AUTHOR E. Bertin (IAP)
VERSION 11/02/2020
***/
void read_keys(tabstruct *tab, char **keynames, keystruct **keys, int nkeys,
BYTE *mask)
{
catstruct *cat;
keystruct *key, **ckeys;
BYTE *mask2;
char *buf, *ptr, *fptr;
unsigned short ashort = 1;
int i,j,k,n, larray,narray, nb, kflag = 0, size,
esize, bswapflag;
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
/*!! It is not necessarily the original table */
tab = tab->key->tab;
cat = tab->cat;
/*We are expecting a 2D binary-table, and nothing else*/
if ((tab->naxis != 2)
|| (tab->bitpix!=8)
|| (tab->tfields == 0)
|| strncmp(tab->xtension, "BINTABLE", 8))
error(EXIT_FAILURE, "*Error*: No binary table in ", cat->filename);
/*Size and number of lines in the binary table*/
larray = tab->naxisn[0];
narray = tab->naxisn[1];
nb = 0;
if ((mask2 = mask))
{
for (i=narray; i--;)
if (*(mask2++))
nb++;
}
if (!keynames)
nkeys = tab->nkey;
/*Allocate memory to store the list of keys to be read */
if (!keys)
{
QMALLOC(keys, keystruct *, nkeys);
kflag = 1;
}
/*allocate memory for the arrays*/
ckeys = keys;
if (keynames)
for (i=nkeys; i--;)
{
if ((key = name_to_key(tab, *(keynames++))))
{
QFREE(key->ptr);
if (nb)
key->nobj = nb;
else
nb=key->nobj;
QMALLOC(key->ptr, char, key->nbytes*nb);
*(ckeys++) = key;
}
else
*(ckeys++) = NULL;
}
else
{
key = tab->key;
for (i=nkeys; i--;)
{
QFREE(key->ptr);
if (nb)
key->nobj = nb;
else
nb=key->nobj;
QMALLOC(key->ptr, char, key->nbytes*nb);
*(ckeys++) = key;
key = key->nextkey;
}
}
/*allocate memory for the buffer where we put one line of data*/
QMALLOC(buf, char, larray);
/*Positioning to the first element*/
open_cat(cat, READ_ONLY);
QFSEEK(cat->file, tab->bodypos , SEEK_SET, cat->filename);
/*read line by line*/
bswapflag = *((char *)&ashort); // Byte-swapping flag
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
589
590
591
592
593
n = 0;
mask2 = mask;
for (i=narray; i--;)
{
QFREAD(buf, larray, cat->file, cat->filename);
if (!mask || *(mask2++))
{
ckeys = keys;
for (j=nkeys; j--;)
if ((key = *(ckeys++)))
{
fptr = buf+key->pos;
ptr = (char *)key->ptr+n*(size=key->nbytes);
if (bswapflag)
{
esize = t_size[key->ttype];
swapbytes(fptr, esize, size/esize);
}
for (k = size; k--;)
*(ptr++) = *(fptr++);
}
n++;
}
}
free(buf);
if (kflag)
free(keys);
return;
}
/****** remove_key *************************************************************
PROTO int remove_key(tabstruct *tab, char *keyname)
PURPOSE Remove a key from a table.
INPUT Pointer to the table,
Name of the key.
OUTPUT RETURN_OK if everything went as expected, and RETURN_ERROR otherwise.
NOTES If keyname = "", the last key from the list is removed.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 15/01/97
***/
int remove_key(tabstruct *tab, char *keyname)
{
keystruct *key, *prevkey, *nextkey;
if (!keyname || !tab->nkey || !tab->key)
return RETURN_ERROR;
if (keyname[0])
{
/*--Convert the key name to a pointer*/
if (!(key = name_to_key(tab, keyname)))
return RETURN_ERROR;
}
else
key = tab->key->prevkey;
prevkey = key->prevkey;
/*Free memory*/
nextkey = key->nextkey;
if (tab->key==key)
tab->key = nextkey;
free_key(key);
if (--tab->nkey)
{
/*--update the links of neighbours*/
nextkey->prevkey = prevkey;
prevkey->nextkey = nextkey;
}
else
tab->key = NULL;
return RETURN_OK;
}
/****** remove_keys ************************************************************
PROTO int remove_keys(tabstruct *tab)
PURPOSE Remove all keys from a table.
INPUT Pointer to the table.
OUTPUT RETURN_OK if keys were found, and RETURN_ERROR otherwise.
NOTES -.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 13/03/99
***/
int remove_keys(tabstruct *tab)
{
int k;
if (!tab->key)
return RETURN_ERROR;
for (k=tab->nkey; k--;)
remove_key(tab, "");
return RETURN_OK;
}
/****** name_to_key ************************************************************
PROTO keystruct *name_to_key(tabstruct *tab, char *keyname)
PURPOSE Name search of a key in a table.
INPUT Pointer to the table,
Key name.
OUTPUT The key pointer if the name was matched, and NULL otherwise.
NOTES -.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 25/04/97
***/
keystruct *name_to_key(tabstruct *tab, char *keyname)
{
keystruct *key;
int i;
if (!(key=tab->key))
return NULL;
for (i=tab->nkey; strcmp(keyname, key->name) && i--; key=key->nextkey);
return i<0? NULL:key;
}
/****** keys_list **************************************************************
PROTO char **keys_list(catstruct *tab, int *n)
PURPOSE List all keys in a table.
INPUT Pointer to the table,
Pointer to the number of names in that list.
OUTPUT A list of all key names.
NOTES -.
AUTHOR E.R. Deul (Leiden observatory)
VERSION ??/??/96
***/
char **keys_list(tabstruct *tab, int *n)
{
keystruct *key;
int i;
char **names;
QCALLOC(names, char *, tab->nkey);
key = tab->key;
for (i=0; i<tab->nkey; i++) {
QCALLOC(names[i], char, MAXCHARS);
strcpy(names[i],key->name);
key = key->nextkey;
}
*n = tab->nkey;
return names;
}
/****** pos_to_key *************************************************************
PROTO keystruct *pos_to_key(tabstruct *tab, int pos)
PURPOSE Position search of a key in a table.
INPUT Pointer to the table,
Position of the key.
OUTPUT The key pointer if a key exists at the given position, and the
pointer to the first key otherwise.
NOTES pos = 0 or 1 means the first key.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 20/03/96
***/
keystruct *pos_to_key(tabstruct *tab, int pos)
{
keystruct *key;
int i;
if (!(key=tab->key))
return NULL;
if ((pos--)==1)
return tab->key;
for (i=0; i!=pos && i<tab->nkey; i++, key=key->nextkey);
return i<tab->nkey?key:tab->key;
}
/****** show_keys **************************************************************
PROTO void show_keys(tabstruct *tab, char **keynames,
keystruct **keys, int nkeys,
BYTE *mask, FILE *stream,
int strflag, int banflag, int leadflag,
output_type o_type)
PURPOSE Convert a binary table to an ASCII file.
INPUT pointer to the table,
pointer to an array of char *,
pointer to an array of keystruct * (memory must have been allocated),
number of keys to read,
an optional mask pointer,
a stream,
a flag to indicate if arrays should be displayed (0=NO),
a flag to indicate if a banner with keynames should be added (0=NO).
a flag to indicate if a leading row number should be added (0=NO).
the output type
OUTPUT -.
NOTES This is approximately the same code as for read_keys.
The array of pointers pointed by keys is filled with pointers
to the relevant keys (a NULL means NO key with such name was found).
A NULL keys pointer can be given (no info returned of course).
A NULL keynames pointer means read ALL keys belonging to the table.
A NULL mask pointer means NO selection for reading.
AUTHOR E. Bertin (IAP)
VERSION 11/02/2020
***/
void show_keys(tabstruct *tab, char **keynames, keystruct **keys, int nkeys,
BYTE *mask, FILE *stream,
int strflag, int banflag, int leadflag, output_type o_type)
{
catstruct *cat;
keystruct *key, **ckeys;
BYTE *mask2;
char *buf, *rfield, *ptr;
unsigned short ashort = 1;
int *key_col,
i,j,k,n,c, larray,narray, nb, kflag, maxnbytes, nelem,
esize, bswapflag;
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
typedef struct structreq_keyname
{
char oldname[80]; /* Name of the original pipeline key */
char newname[80]; /* Name of the skycat required key */
} req_keynamestruct;
req_keynamestruct objectmap[] =
{
{"SeqNr", "id"},
{"Ra", "ra"},
{"Dec", "dec"},
{"MAG_ISO", "Mag"},
{"", ""}
};
req_keynamestruct *map;
char skycathead[] = "QueryResult\n\n"
"# Config entry for original catalog server:\n"
"serv_type: catalog\n"
"long_name: ldactoskycat catalog\n"
"short_name: ldactoaskycat\n"
"symbol: id circle %4.1f\n"
"search_cols: mag {Brightest (min)} {Faintest (max)}\n"
"# End config entry\n\n";
char *t, skycattail[] = "";
/* !! It is not necessarily the original table */
if (tab->key)
tab = tab->key->tab;
cat = tab->cat;
/* We are expecting a 2D binary-table, and nothing else */
if ((tab->naxis != 2)
|| (tab->bitpix!=8)
|| (tab->tfields == 0)
|| strncmp(tab->xtension, "BINTABLE", 8))
error(EXIT_FAILURE, "*Error*: Not a binary table in ", cat->filename);
/* Size and number of lines in the binary table */
larray = tab->naxisn[0];
narray = tab->naxisn[1];
nb = 0;
if ((mask2 = mask))
{
for (i=narray; i--;)
if (*(mask2++))
nb++;
}
if (!keynames)
nkeys = tab->nkey;
QCALLOC(key_col, int, nkeys);
if (keynames) {
for (i=0;i<nkeys;i++)
if ((t=strchr(keynames[i], ')'))!=NULL) {
*t='\0';
t=strchr(keynames[i], '(');
*t='\0';
key_col[i] = atoi(++t);
}
}
/* Allocate memory to store the list of keys to be read */
kflag = 0;
if (!keys)
{
QMALLOC(keys, keystruct *, nkeys);
kflag = 1;
}
n=1;
switch (o_type) {
case SHOW_ASCII:
if (leadflag)
fprintf(stream, "# %3d %-15.15s %.47s\n", n++,
"(row_pos)", "running row");
break;
case SHOW_SKYCAT:
fprintf(stream, skycathead, 6.0);
break;
}
/* Allocate memory for the arrays */
maxnbytes = 0;
ckeys = keys;
if (keynames)
for (i=nkeys; i--;)
{
if ((key = name_to_key(tab, *(keynames++))))
{
for (map=objectmap; map->oldname[0]&&o_type == SHOW_SKYCAT; map++) {
if (strcmp(key->name, map->oldname) == 0) {
strcpy(key->name, map->newname);
}
}
*(ckeys++) = key;
switch (o_type) {
case SHOW_ASCII:
if (banflag)
{
if (*key->unit)
fprintf(stream, "# %3d %-15.15s %-47.47s [%s]\n",
n, key->name,key->comment, key->unit);
else
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
n, key->name,key->comment);
n += key->nbytes/t_size[key->ttype];
}
break;
case SHOW_SKYCAT:
if (key->nbytes/t_size[key->ttype] > 1)
for (j=0;j<key->nbytes/t_size[key->ttype];j++)
fprintf(stream, "%s(%d)\t", key->name,j+1);
else
fprintf(stream, "%s\t", key->name);
break;
}
if (key->nbytes>maxnbytes)
maxnbytes = key->nbytes;
}
else
*(ckeys++) = NULL;
}
else
{
key = tab->key;
for (i=nkeys; i--; key = key->nextkey)
if (strflag || key->naxis==0)
{
for (map=objectmap; map->oldname[0]&&o_type == SHOW_SKYCAT; map++) {
if (strcmp(key->name, map->oldname) == 0) {
strcpy(key->name, map->newname);
}
}
*(ckeys++) = key;
switch (o_type) {
case SHOW_ASCII:
if (banflag)
{
if (*key->unit)
fprintf(stream, "# %3d %-15.15s %-47.47s [%s]\n",
n, key->name,key->comment, key->unit);
else
n, key->name,key->comment);
n += key->nbytes/t_size[key->ttype];
}
break;
case SHOW_SKYCAT:
if (key->nbytes/t_size[key->ttype] > 1)
for (j=0;j<key->nbytes/t_size[key->ttype];j++)
fprintf(stream, "%s(%d)\t", key->name,j+1);
else
fprintf(stream, "%s\t", key->name);
break;
}
if (key->nbytes>maxnbytes)
maxnbytes = key->nbytes;
}
else
{
switch (o_type) {
case SHOW_ASCII:
if (*key->unit)
fprintf(stream, "# %-15.15s %-47.47s [%s]\n",
key->name,key->comment, key->unit);
else
key->name,key->comment);
break;
case SHOW_SKYCAT:
break;
}
*(ckeys++) = NULL;
}
}
if (o_type == SHOW_SKYCAT)
fprintf(stream, "\n------------------\n");
/* Allocate memory for the buffer where we put one line of data */
QMALLOC(buf, char, larray);
/* Allocate memory for the buffer where we put one element */
QMALLOC(rfield, char, maxnbytes);
/* Positioning to the first element */
open_cat(cat, READ_ONLY);
QFSEEK(cat->file, tab->bodypos , SEEK_SET, cat->filename);
/*read line by line*/
bswapflag = *((char *)&ashort); // Byte-swapping flag
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
n = 0;
mask2 = mask;
for (i=narray; i--;)
{
QFREAD(buf, larray, cat->file, cat->filename);
if (!mask || *(mask2++))
{
ckeys = keys;
if (leadflag)
{
fprintf(stream, "%d", ++n);
if (nkeys)
putc(' ', stream);
}
for (k=0; k<nkeys; k++)
{
if ((key = *(ckeys++)) && (strflag || key->naxis==0))
{
ptr = memcpy(rfield, buf+key->pos, key->nbytes);
esize = t_size[key->ttype];
nelem = key->nbytes/esize;
if (bswapflag)
swapbytes(ptr, esize, nelem);
switch(key->ttype)
{
case T_SHORT:
for (j = 0; j<nelem; j++, ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
fprintf(stream, *key->printf?key->printf:"%d",
*(short *)ptr);
if (j < nelem-1) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
break;
case T_LONG:
for (j = 0; j<nelem; j++,ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
fprintf(stream, *key->printf?key->printf:"%d",
*(int *)ptr);
if (j < nelem-1) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
break;
case T_LONGLONG:
for (j = 0; j<nelem; j++,ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
#ifdef HAVE_LONG_LONG_INT
fprintf(stream, *key->printf?key->printf:"%lld",
Emmanuel Bertin
committed
*(SLONGLONG *)ptr);
#else
fprintf(stream, *key->printf?key->printf:"%d",
*(int *)ptr);
#endif
if (j < nelem-1) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
break;
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
case T_FLOAT:
for (j = 0; j<nelem; j++,ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
fprintf(stream, *key->printf?key->printf:"%g",
*(float *)ptr);
if (j < nelem-1) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
break;
case T_DOUBLE:
for (j = 0; j<nelem; j++,ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
fprintf(stream, *key->printf?key->printf:"%f",
*(double *)ptr);
if (j < nelem-1) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
break;
case T_BYTE:
if (key->htype==H_BOOL)
for (j = 0; j<nelem; j++,ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
if (*(char *)ptr)
fprintf(stream, "T");
else
fprintf(stream, "F");
}
}
else
for (j = 0; j<nelem; j++,ptr += esize)
{
if (key_col[k] == 0 || key_col[k] == j+1) {
fprintf(stream, *key->printf?key->printf:"%d",
(int)*((unsigned char *)ptr));
if (j) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
break;
case T_STRING:
for (j = nelem; j-- && (c=(int)*ptr); ptr += esize)
fprintf(stream, "%c", c);
break;
default:
error(EXIT_FAILURE, "*FATAL ERROR*: Unknown FITS type in ",
"show_keys()");
break;
}
if (k < nkeys - 1) {
switch (o_type) {
case SHOW_ASCII:
putc(' ', stream);
break;
case SHOW_SKYCAT:
putc('\t', stream);
break;
}
}
}
}
putc('\n', stream);
}
}
free(key_col);
free(buf);
if (kflag)
free(keys);
if (o_type == SHOW_SKYCAT)
fprintf(stream, "%s", skycattail);