mirror of
https://github.com/eddyem/fitsmaniplib.git
synced 2025-12-06 10:45:14 +03:00
1263 lines
42 KiB
C
1263 lines
42 KiB
C
/*
|
||
* fits.c - cfitsio routines
|
||
*
|
||
* Copyright 2015 Edward V. Emelianov <eddy@sao.ru, edward.emelianoff@gmail.com>
|
||
*
|
||
* This program 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 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program 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 this program; if not, write to the Free Software
|
||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||
* MA 02110-1301, USA.
|
||
*/
|
||
#include "local.h"
|
||
#include "FITSmanip.h"
|
||
|
||
#include <errno.h>
|
||
#include <libgen.h> // dirname, basename
|
||
#include <limits.h>
|
||
#include <stdlib.h>
|
||
#include <string.h>
|
||
#include <strings.h>
|
||
#include <sys/stat.h>
|
||
#include <usefull_macros.h>
|
||
|
||
/**************************************************************************************
|
||
* FITS keywords *
|
||
**************************************************************************************/
|
||
|
||
/*
|
||
* TODO:
|
||
* - int fits_parse_value(char *card, char *value, char *comment, int *status)
|
||
* will return value and comment of given record
|
||
* - int fits_get_keytype(char *value, char *dtype, int *status)
|
||
* dtype returns with a value of 'C', 'L', 'I', 'F' or 'X', for character string,
|
||
* logical, integer, floating point, or complex, respectively
|
||
* - int fits_get_keyclass(char *card) returns a classification code of keyword record
|
||
* - int fits_parse_template(char *template, char *card, int *keytype, int *status)
|
||
* makes record from template
|
||
* - add HYSTORY?
|
||
*/
|
||
|
||
/**
|
||
* @brief keylist_get_end - find last element in list
|
||
* @param list (i) - pointer to first element of list
|
||
* @return pointer to last element or NULL
|
||
*/
|
||
KeyList *keylist_get_end(KeyList *list){
|
||
if(!list) return NULL;
|
||
if(list->last) return list->last;
|
||
KeyList *first = list;
|
||
while(list->next) list = list->next;
|
||
first->last = list;
|
||
return list;
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_add_record - add record to keylist with optional check
|
||
* @param list (io) - pointer to root of list or NULL
|
||
* if *root == NULL, created node will be placed there
|
||
* @param rec (i) - data inserted
|
||
* @param check - !=0 to check `rec` with fits_parse_template
|
||
* @return pointer to created node (if list == NULL - don't add created record to any list)
|
||
*/
|
||
KeyList *keylist_add_record(KeyList **list, char *rec, int check){
|
||
if(!rec) return NULL;
|
||
KeyList *node, *last;
|
||
if((node = (KeyList*) MALLOC(KeyList, 1)) == 0) return NULL; // allocation error
|
||
int tp = 0, st = 0;
|
||
if(check){
|
||
char card[FLEN_CARD];
|
||
fits_parse_template(rec, card, &tp, &st);
|
||
if(st){
|
||
FITS_reporterr(&st);
|
||
return NULL;
|
||
}
|
||
DBG("\n WAS: %s\nBECOME: %s\ntp=%d", rec, card, tp);
|
||
rec = card;
|
||
}
|
||
node->record = strdup(rec);
|
||
if(!node->record){
|
||
/// "<22><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||
WARNX(_("Can't copy data"));
|
||
return NULL;
|
||
}
|
||
node->keyclass = fits_get_keyclass(rec);
|
||
if(list){
|
||
if(*list){ // there was root node - search last
|
||
last = keylist_get_end(*list);
|
||
last->next = node; // insert pointer to new node into last element in list
|
||
(*list)->last = node;
|
||
// DBG("last node %s", (*list)->last->record);
|
||
}else *list = node;
|
||
}
|
||
return node;
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_find_key - find record with given key
|
||
* @param list (i) - pointer to first list element
|
||
* @param key (i) - key to find
|
||
* @return record with given key or NULL
|
||
*/
|
||
KeyList *keylist_find_key(KeyList *list, char *key){
|
||
if(!list || !key) return NULL;
|
||
size_t L = strlen(key);
|
||
DBG("try to find %s", key);
|
||
do{
|
||
if(list->record){
|
||
if(strncasecmp(list->record, key, L) == 0){ // key found
|
||
DBG("found:\n%s", list->record);
|
||
return list;
|
||
}
|
||
}
|
||
list = list->next;
|
||
}while(list);
|
||
DBG("not found");
|
||
return NULL;
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_modify_key - modify key value
|
||
* @param list (i) - pointer to first list element
|
||
* @param key (i) - key name
|
||
* @param newval (i) - new value of given key
|
||
* @return modified record or NULL if given key is absent
|
||
*/
|
||
KeyList *keylist_modify_key(KeyList *list, char *key, char *newval){
|
||
// TODO: look modhead.c in cexamples for protected keys
|
||
char buf[FLEN_CARD], test[2*FLEN_CARD];
|
||
KeyList *rec = keylist_find_key(list, key);
|
||
if(!rec) return NULL;
|
||
snprintf(test, 2*FLEN_CARD, "%s = %s", key, newval);
|
||
int tp, st = 0;
|
||
fits_parse_template(test, buf, &tp, &st);
|
||
if(st){
|
||
FITS_reporterr(&st);
|
||
return NULL;
|
||
}
|
||
DBG("new record:\n%s", buf);
|
||
FREE(rec->record);
|
||
rec->record = strdup(buf);
|
||
return rec;
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_remove_key - remove record by key
|
||
* @param keylist (io) - address of pointer to first list element
|
||
* @param key (i) - key value
|
||
*/
|
||
void keylist_remove_key(KeyList **keylist, char *key){
|
||
if(!keylist || !*keylist || !key) return;
|
||
size_t L = strlen(key);
|
||
KeyList *prev = NULL, *list = *keylist, *last = keylist_get_end(list);
|
||
do{
|
||
if(list->record){
|
||
if(strncmp(list->record, key, L) == 0){ // key found
|
||
if(prev){ // not first record
|
||
prev->next = list->next;
|
||
}else{ // first or only record
|
||
if(*keylist == last){
|
||
*keylist = NULL; // the only record - erase it
|
||
}else{ // first record - modyfy heading record
|
||
*keylist = list->next;
|
||
(*keylist)->last = last;
|
||
}
|
||
}
|
||
DBG("remove record by key \"%s\":\n%s",key, list->record);
|
||
FREE(list->record);
|
||
FREE(list);
|
||
return;
|
||
}
|
||
}
|
||
prev = list;
|
||
list = list->next;
|
||
}while(list);
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_remove_records - remove records by any sample
|
||
* @param keylist (io) - address of pointer to first list element
|
||
* @param sample (i) - any (case sensitive) substring of record to be delete
|
||
*/
|
||
void keylist_remove_records(KeyList **keylist, char *sample){
|
||
if(!keylist || !sample) return;
|
||
KeyList *prev = NULL, *list = *keylist, *last = keylist_get_end(list);
|
||
DBG("remove %s", sample);
|
||
do{
|
||
if(list->record){
|
||
if(strstr(list->record, sample)){ // key found
|
||
if(prev){
|
||
prev->next = list->next;
|
||
}else{
|
||
if(*keylist == last){
|
||
*keylist = NULL; // the only record - erase it
|
||
}else{ // first record - modyfy heading record
|
||
*keylist = list->next;
|
||
(*keylist)->last = last;
|
||
}
|
||
}
|
||
KeyList *tmp = list->next;
|
||
FREE(list->record);
|
||
FREE(list);
|
||
list = tmp;
|
||
continue;
|
||
}
|
||
}
|
||
prev = list;
|
||
list = list->next;
|
||
}while(list);
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_free - free list memory & set it to NULL
|
||
* @param list (io) - address of pointer to first list element
|
||
*/
|
||
void keylist_free(KeyList **list){
|
||
if(!list || !*list) return;
|
||
KeyList *node = *list, *next;
|
||
do{
|
||
next = node->next;
|
||
FREE(node->record);
|
||
free(node);
|
||
node = next;
|
||
}while(node);
|
||
*list = NULL;
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_copy - make a full copy of given list
|
||
* @param list (i) - pointer to first list element
|
||
* @return copy of list
|
||
*/
|
||
KeyList *keylist_copy(KeyList *list){
|
||
if(!list) return NULL;
|
||
KeyList *newlist = NULL;
|
||
#ifdef EBUG
|
||
int n = 0;
|
||
#endif
|
||
do{
|
||
keylist_add_record(&newlist, list->record, 0);
|
||
list = list->next;
|
||
#ifdef EBUG
|
||
++n;
|
||
#endif
|
||
}while(list);
|
||
DBG("copy list of %d entries", n);
|
||
return newlist;
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_print - print out given list
|
||
* @param list (i) - pointer to first list element
|
||
*/
|
||
void keylist_print(KeyList *list){
|
||
while(list){
|
||
printf("%s\n", list->record);
|
||
list = list->next;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief keylist_read read all keys from current FITS file
|
||
* This function read keys from current HDU, starting from current position
|
||
* @param fits - opened structure
|
||
* @return keylist read
|
||
*/
|
||
KeyList *keylist_read(FITS *fits){
|
||
if(!fits || !fits->fp || !fits->curHDU) return NULL;
|
||
int fst = 0, nkeys = -1, keypos = -1;
|
||
KeyList *list = fits->curHDU->keylist;
|
||
fits_get_hdrpos(fits->fp, &nkeys, &keypos, &fst);
|
||
DBG("nkeys=%d, keypos=%d, status=%d", nkeys, keypos, fst);
|
||
if(nkeys < 1){
|
||
WARNX(_("No keywords in given HDU"));
|
||
return NULL;
|
||
}
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
return NULL;
|
||
}
|
||
DBG("Find %d keys, keypos=%d", nkeys, keypos);
|
||
for(int j = 1; j <= nkeys; ++j){
|
||
char card[FLEN_CARD];
|
||
fits_read_record(fits->fp, j, card, &fst);
|
||
if(fst) FITS_reporterr(&fst);
|
||
else{
|
||
KeyList *kl = keylist_add_record(&list, card, 0);
|
||
if(!kl){
|
||
/// "<22><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"
|
||
WARNX(_("Can't add record to list"));
|
||
}else{
|
||
DBG("add key %d [class: %d]: \"%s\"", j, kl->keyclass, card);
|
||
}
|
||
}
|
||
}
|
||
return list;
|
||
}
|
||
|
||
/**************************************************************************************
|
||
* FITS tables *
|
||
**************************************************************************************/
|
||
|
||
/**
|
||
* @brief table_free - free memory of table
|
||
* @param tbl (io) - address of pointer to table
|
||
*/
|
||
void table_free(FITStable **tbl){
|
||
if(!tbl || !*tbl) return;
|
||
FITStable *intab = *tbl;
|
||
size_t i, N = intab->ncols;
|
||
for(i = 0; i < N; ++i){
|
||
table_column *col = &(intab->columns[i]);
|
||
if(col->coltype == TSTRING && col->width){
|
||
size_t r, R = col->repeat;
|
||
void **cont = (void**) col->contents;
|
||
for(r = 0; r < R; ++r) free(*(cont++));
|
||
}
|
||
FREE(col->contents);
|
||
FREE(col);
|
||
}
|
||
FREE(*tbl);
|
||
}
|
||
|
||
/**
|
||
* @brief table_copy - make full copy of FITStable structure
|
||
* @param intab (i) - pointer to table
|
||
* @return pointer to copy of table
|
||
*/
|
||
FITStable *table_copy(FITStable *intab){
|
||
if(!intab || intab->ncols == 0 || intab->nrows == 0) return NULL;
|
||
FITStable *tbl = MALLOC(FITStable, 1);
|
||
memcpy(tbl, intab, sizeof(FITStable));
|
||
size_t ncols = intab->ncols, col;
|
||
tbl->columns = MALLOC(table_column, ncols);
|
||
memcpy(tbl->columns, intab->columns, sizeof(table_column)*ncols);
|
||
table_column *ocurcol = tbl->columns, *icurcol = intab->columns;
|
||
for(col = 0; col < ncols; ++col, ++ocurcol, ++icurcol){
|
||
if(ocurcol->coltype == TSTRING && ocurcol->width){ // string array - copy all
|
||
size_t r, R = ocurcol->repeat;
|
||
char **oarr = (char**)ocurcol->contents, **iarr = (char**)icurcol->contents;
|
||
for(r = 0; r < R; ++r, ++oarr, ++iarr){
|
||
*oarr = strdup(*iarr);
|
||
if(!oarr) ERR(_("strdup() failed!"));
|
||
}
|
||
}else memcpy(ocurcol->contents, icurcol->contents, icurcol->repeat * icurcol->width);
|
||
}
|
||
return tbl;
|
||
}
|
||
|
||
/**
|
||
* @brief table_read - add FITS table to image structure
|
||
* @param fits (i) - pointer to FITS file structure
|
||
* @return
|
||
*/
|
||
FITStable *table_read(FITS *fits){
|
||
int ncols, i, fst = 0;
|
||
long nrows;
|
||
char extname[FLEN_VALUE];
|
||
fitsfile *fp = fits->fp;
|
||
fits_get_num_rows(fp, &nrows, &fst);
|
||
if(fst){FITS_reporterr(&fst); return NULL;}
|
||
fits_get_num_cols(fp, &ncols, &fst);
|
||
if(fst){FITS_reporterr(&fst); return NULL;}
|
||
fits_read_key(fp, TSTRING, "EXTNAME", extname, NULL, &fst);
|
||
if(fst){FITS_reporterr(&fst); return NULL;}
|
||
DBG("Table named %s with %ld rows and %d columns", extname, nrows, ncols);
|
||
FITStable *tbl = table_new(extname);
|
||
if(!tbl) return NULL;
|
||
fits->curHDU->contents.table = tbl;
|
||
for(i = 1; i <= ncols; ++i){
|
||
int typecode;
|
||
long repeat, width;
|
||
fits_get_coltype(fp, i, &typecode, &repeat, &width, &fst);
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
WARNX(_("Can't read column %d!"), i);
|
||
continue;
|
||
}
|
||
DBG("typecode=%d, repeat=%ld, width=%ld", typecode, repeat, width);
|
||
table_column col = {.repeat = repeat, .width = width, .coltype = typecode};
|
||
void *array = malloc(width*repeat);
|
||
if(!array) ERRX("malloc");
|
||
int anynul;
|
||
int64_t nullval = 0;
|
||
int j;
|
||
for(j = 0; j < repeat; ++j){
|
||
fits_read_col(fp, typecode, i, j=1, 1, 1, (void*)nullval, array, &anynul, &fst);
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
WARNX(_("Can't read column %d row %d!"), i, j);
|
||
continue;
|
||
}
|
||
}
|
||
DBG("done");
|
||
col.contents = array;
|
||
char keyword[FLEN_KEYWORD];
|
||
int stat = 0;
|
||
fits_make_keyn("TTYPE", i, keyword, &stat);
|
||
if(stat){WARNX(_("Can't read table data type")); stat = 0;}
|
||
fits_read_key(fp, TSTRING, keyword, col.colname, NULL, &stat);
|
||
if(stat){ sprintf(col.colname, "noname"); stat = 0;}
|
||
fits_make_keyn("TUNIT", i, keyword, &stat);
|
||
if(stat){WARNX(_("Can't read table data unit")); stat = 0;}
|
||
fits_read_key(fp, TSTRING, keyword, col.unit, NULL, &stat);
|
||
if(stat) *col.unit = 0;
|
||
DBG("Column, cont[2]=%d, type=%d, w=%ld, r=%ld, nm=%s, u=%s", ((int*)col.contents)[2], col.coltype,
|
||
col.width, col.repeat, col.colname, col.unit);
|
||
//table_addcolumn(tbl, &col);
|
||
FREE(array);
|
||
}
|
||
return tbl;
|
||
}
|
||
|
||
/**
|
||
* @brief table_new - create empty FITS table
|
||
* @param tabname (i) - table name
|
||
* @return
|
||
*/
|
||
FITStable *table_new(char *tabname){
|
||
FITStable *tab = MALLOC(FITStable, 1);
|
||
snprintf(tab->tabname, FLEN_CARD, "%s", tabname);
|
||
DBG("add new table: %s", tabname);
|
||
return tab;
|
||
}
|
||
|
||
/**
|
||
* @brief table_addcolumn - add to table 'tbl' column 'column'
|
||
* Be carefull! All fields of 'column' exept of 'format' should be filled
|
||
* - if data is character array, 'width' should be equal 0
|
||
* - all input data will be copied, so caller should run 'free' after this function!
|
||
* @param tbl (i) - pointer to table
|
||
* @param column (i) - column to add
|
||
* @return
|
||
*/
|
||
FITStable *table_addcolumn(FITStable *tbl, table_column *column){
|
||
FNAME();
|
||
if(!tbl || !column || !column->contents) return NULL;
|
||
long nrows = column->repeat;
|
||
int width = column->width;
|
||
if(tbl->nrows < nrows) tbl->nrows = nrows;
|
||
size_t datalen = nrows * width, cols = ++tbl->ncols;
|
||
char *curformat = column->format;
|
||
DBG("add column; width: %d, nrows: %ld, name: %s", width, nrows, column->colname);
|
||
/*void convchar(){ // count maximum length of strings in array
|
||
char **charr = (char**)column->contents, *dptr = charr;
|
||
size_t n, N = column->repeat;
|
||
for(n = 0; n < N; ++n){
|
||
if(strlen(
|
||
if(*dptr++ == 0){ --processed; if(len > maxlen) maxlen = len; len = 0; }
|
||
else{ ++len; }
|
||
}
|
||
}*/
|
||
#define CHKLEN(type) do{if(width != sizeof(type)) datalen = sizeof(type) * nrows;}while(0)
|
||
switch(column->coltype){
|
||
case TBIT:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldX", nrows);
|
||
CHKLEN(int8_t);
|
||
break;
|
||
case TBYTE:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldB", nrows);
|
||
CHKLEN(int8_t);
|
||
break;
|
||
case TLOGICAL:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldL", nrows);
|
||
CHKLEN(int8_t);
|
||
break;
|
||
case TSTRING:
|
||
if(width == 0){
|
||
snprintf(curformat, FLEN_FORMAT, "%ldA", nrows);
|
||
datalen = nrows;
|
||
}else
|
||
snprintf(curformat, FLEN_FORMAT, "%ldA%d", nrows, width);
|
||
break;
|
||
case TSHORT:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldI", nrows);
|
||
CHKLEN(int16_t);
|
||
break;
|
||
case TLONG:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldJ", nrows);
|
||
CHKLEN(int32_t);
|
||
break;
|
||
case TLONGLONG:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldK", nrows);
|
||
CHKLEN(int64_t);
|
||
break;
|
||
case TFLOAT:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldE", nrows);
|
||
CHKLEN(float);
|
||
break;
|
||
case TDOUBLE:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldD", nrows);
|
||
CHKLEN(double);
|
||
break;
|
||
case TCOMPLEX:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldM", nrows);
|
||
if(width != sizeof(float)*2) datalen = sizeof(float) * nrows * 2;
|
||
break;
|
||
case TDBLCOMPLEX:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldM", nrows);
|
||
if(width != sizeof(double)*2) datalen = sizeof(double) * nrows * 2;
|
||
break;
|
||
case TINT:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldJ", nrows);
|
||
CHKLEN(int32_t);
|
||
break;
|
||
case TSBYTE:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldS", nrows);
|
||
CHKLEN(int8_t);
|
||
break;
|
||
case TUINT:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldV", nrows);
|
||
CHKLEN(int32_t);
|
||
break;
|
||
case TUSHORT:
|
||
snprintf(curformat, FLEN_FORMAT, "%ldU", nrows);
|
||
CHKLEN(int16_t);
|
||
break;
|
||
default:
|
||
WARNX(_("Unsupported column data type!"));
|
||
return NULL;
|
||
}
|
||
#undef CHKLEN
|
||
DBG("new size: %ld, old: %ld", sizeof(table_column)*cols, sizeof(table_column)*(cols-1));
|
||
if(!(tbl->columns = realloc(tbl->columns, sizeof(table_column)*cols))) ERRX("malloc");
|
||
table_column *newcol = &(tbl->columns[cols-1]);
|
||
memcpy(newcol, column, sizeof(table_column));
|
||
newcol->contents = calloc(datalen, 1);
|
||
if(!newcol->contents) ERRX("malloc");
|
||
DBG("copy %zd bytes", datalen);
|
||
if(column->coltype == TSTRING && width){
|
||
long n;
|
||
char **optr = (char**)newcol->contents, **iptr = (char**)column->contents;
|
||
for(n = 0; n < nrows; ++n, ++optr, ++iptr) *optr = strdup(*iptr);
|
||
}else
|
||
memcpy(newcol->contents, column->contents, datalen);
|
||
return tbl;
|
||
}
|
||
|
||
/**
|
||
* @brief table_print - print out contents of table
|
||
* @param tbl (i) - pointer to table to print
|
||
*/
|
||
void table_print(FITStable *tbl){
|
||
printf("\nTable name: %s\n", tbl->tabname);
|
||
int c, cols = tbl->ncols;
|
||
long r, rows = tbl->nrows;
|
||
for(c = 0; c < cols; ++c){
|
||
printf("%s", tbl->columns[c].colname);
|
||
if(*tbl->columns[c].unit) printf(" (%s)", tbl->columns[c].unit);
|
||
printf("\t");
|
||
}
|
||
printf("\n");
|
||
for(r = 0; r < rows; ++r){
|
||
for(c = 0; c < cols; ++c){
|
||
double *dpair; float *fpair;
|
||
table_column *col = &(tbl->columns[c]);
|
||
if(col->repeat < r){ // table with columns of different length
|
||
printf("(empty)\t");
|
||
continue;
|
||
}
|
||
switch(col->coltype){
|
||
case TBIT:
|
||
case TBYTE:
|
||
printf("%u\t", ((uint8_t*)col->contents)[r]);
|
||
break;
|
||
case TLOGICAL:
|
||
printf("%s\t", ((int8_t*)col->contents)[r] == 0 ? "FALSE" : "TRUE");
|
||
break;
|
||
case TSTRING:
|
||
if(col->width == 0) printf("%c\t", ((char*)col->contents)[r]);
|
||
else printf("%s\t", ((char**)col->contents)[r]);
|
||
break;
|
||
case TSHORT:
|
||
printf("%d\t", ((int16_t*)col->contents)[r]);
|
||
break;
|
||
case TLONG:
|
||
case TINT:
|
||
printf("%d\t", ((int32_t*)col->contents)[r]);
|
||
break;
|
||
case TLONGLONG:
|
||
printf("%zd\t", ((int64_t*)col->contents)[r]);
|
||
break;
|
||
case TFLOAT:
|
||
printf("%g\t", ((float*)col->contents)[r]);
|
||
break;
|
||
case TDOUBLE:
|
||
printf("%g\t", ((double*)col->contents)[r]);
|
||
break;
|
||
case TCOMPLEX:
|
||
fpair = (float*)col->contents + 2*r;
|
||
printf("%g %s %g*i\t", fpair[0], fpair[1] > 0 ? "+" : "-", fpair[1]);
|
||
break;
|
||
case TDBLCOMPLEX:
|
||
dpair = (double*)col->contents + 2*r;
|
||
printf("%g %s %g*i\t", dpair[0], dpair[1] > 0 ? "+" : "-", dpair[1]);
|
||
break;
|
||
case TSBYTE:
|
||
printf("%d\t", ((int8_t*)col->contents)[r]);
|
||
break;
|
||
case TUINT:
|
||
printf("%d\t", ((uint32_t*)col->contents)[r]);
|
||
break;
|
||
case TUSHORT:
|
||
printf("%d\t", ((uint16_t*)col->contents)[r]);
|
||
break;
|
||
}
|
||
}
|
||
printf("\n");
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief table_print_all - print out all tables in given FITS file
|
||
* @param fits - pointer to given file structure
|
||
*/
|
||
void table_print_all(FITS *fits){
|
||
size_t i, N = fits->NHDUs+1;
|
||
if(N == 0) return;
|
||
for(i = 1; i < N; ++i){
|
||
if(fits->HDUs[i].hdutype == BINARY_TBL || fits->HDUs[i].hdutype == ASCII_TBL)
|
||
table_print(fits->HDUs[i].contents.table);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief table_write - write tables to FITS file from current HDU
|
||
* @param fits (i) - pointer to FITS file structure
|
||
*/
|
||
bool table_write(FITS *file){
|
||
FNAME();
|
||
fitsfile *fp = file->fp;
|
||
int fst = 0;
|
||
int hdutype = file->curHDU->hdutype;
|
||
if(hdutype != BINARY_TBL || hdutype != ASCII_TBL)
|
||
return FALSE;
|
||
FITStable *tbl = file->curHDU->contents.table;
|
||
size_t c, cols = tbl->ncols;
|
||
char **columns = MALLOC(char*, cols);
|
||
char **formats = MALLOC(char*, cols);
|
||
char **units = MALLOC(char*, cols);
|
||
table_column *col = tbl->columns;
|
||
for(c = 0; c < cols; ++c, ++col){
|
||
columns[c] = col->colname;
|
||
formats[c] = col->format;
|
||
units[c] = col->unit;
|
||
DBG("col: %s, form: %s, unit: %s", columns[c], formats[c], units[c]);
|
||
}
|
||
//fits_movabs_hdu(fptr, 2, &hdutype, &status)
|
||
fits_create_tbl(fp, hdutype, tbl->nrows, cols,
|
||
columns, formats, units, tbl->tabname, &fst);
|
||
FREE(columns); FREE(formats); FREE(units);
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
WARNX(_("Can't write table %s!"), tbl->tabname);
|
||
return FALSE;
|
||
}
|
||
//col = tbl->columns;
|
||
for(c = 0; c < cols; ++c, ++col){
|
||
DBG("write column %zd", c);
|
||
int fst = 0;
|
||
fits_write_col(fp, col->coltype, c+1, 1, 1, col->repeat, col->contents, &fst);
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
WARNX(_("Can't write column %s!"), col->colname);
|
||
return FALSE;
|
||
}
|
||
}
|
||
return TRUE;
|
||
}
|
||
|
||
/**************************************************************************************
|
||
* FITS files *
|
||
**************************************************************************************/
|
||
|
||
/**
|
||
* @brief FITS_addHDU - add new HDU to FITS file structure
|
||
* @param fits (io) - fits file to use
|
||
* @return pointer to new HDU or NULL in case of error
|
||
*/
|
||
FITSHDU *FITS_addHDU(FITS *fits){
|
||
int hdunum = fits->NHDUs + 1;
|
||
// add 1 to `hdunum` because HDU numbering starts @1
|
||
FITSHDU *newhdu = realloc(fits->HDUs, sizeof(FITSHDU)*(1+hdunum));
|
||
if(!newhdu){
|
||
WARN("FITS_addHDU, realloc() failed");
|
||
return NULL;
|
||
}
|
||
fits->HDUs = newhdu;
|
||
fits->curHDU = &fits->HDUs[hdunum];
|
||
fits->NHDUs = hdunum;
|
||
return fits->curHDU;
|
||
}
|
||
|
||
/**
|
||
* @brief FITS_free - delete FITS structure from memory
|
||
* @param fits - address of FITS pointer
|
||
*/
|
||
void FITS_free(FITS **fits){
|
||
if(!fits || !*fits) return;
|
||
FITS *f = *fits;
|
||
FREE(f->filename);
|
||
int fst = 0;
|
||
fits_close_file(f->fp, &fst);
|
||
int n, N = f->NHDUs;
|
||
for(n = 1; n < N; ++n){
|
||
FITSHDU *hdu = &f->HDUs[n];
|
||
if(!hdu) continue;
|
||
keylist_free(&hdu->keylist);
|
||
if(!hdu->contents.image) continue;
|
||
switch(hdu->hdutype){
|
||
case IMAGE_HDU:
|
||
image_free(&hdu->contents.image);
|
||
break;
|
||
case BINARY_TBL:
|
||
case ASCII_TBL:
|
||
table_free(&hdu->contents.table);
|
||
break;
|
||
default: // do nothing
|
||
break;
|
||
}
|
||
}
|
||
FREE(*fits);
|
||
}
|
||
|
||
/**
|
||
TODO: what's about HCOMPRESS?
|
||
*/
|
||
|
||
/**
|
||
* @brief FITS_open - just open FITS file
|
||
* @param filename - file to open
|
||
* @return pointer to FITS structure or NULL
|
||
*/
|
||
FITS *FITS_open(char *filename){
|
||
FITS *fits = MALLOC(FITS, 1);
|
||
int fst = 0;
|
||
// use fits_open_diskfile instead of fits_open_file to prevent using of extended name syntax
|
||
fits_open_diskfile(&fits->fp, filename, READONLY, &fst);
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
FITS_free(&fits);
|
||
return NULL;
|
||
}
|
||
fits->filename = strdup(filename);
|
||
return fits;
|
||
}
|
||
|
||
/**
|
||
* @brief FITS_read - try to open & read all contents of FITS file
|
||
* This function won't work with unordinary files. Use it only with simple files with primitive structure.
|
||
* @param filename - file to open
|
||
* @return pointer to FITS structure or NULL
|
||
*/
|
||
FITS *FITS_read(char *filename){
|
||
int hdunum = 0, fst = 0;
|
||
FITS *fits = FITS_open(filename);
|
||
if(!fits) return NULL;
|
||
fits_get_num_hdus(fits->fp, &hdunum, &fst);
|
||
DBG("Got %d HDUs", hdunum);
|
||
if(fst || hdunum < 1){
|
||
if(!fst) FITS_free(&fits);
|
||
WARNX(_("Can't read HDU"));
|
||
goto returning;
|
||
}
|
||
fits->NHDUs = hdunum;
|
||
fits->HDUs = MALLOC(FITSHDU, hdunum+1);
|
||
int hdutype;
|
||
for(int i = 1; i <= hdunum && !(fits_movabs_hdu(fits->fp, i, &hdutype, &fst)); ++i){
|
||
FITSHDU *curHDU = &fits->HDUs[i];
|
||
fits->curHDU = curHDU;
|
||
DBG("try to read keys from HDU #%d (type: %d)", i, hdutype);
|
||
curHDU->hdutype = hdutype;
|
||
curHDU->keylist = keylist_read(fits);
|
||
// types: IMAGE_HDU , ASCII_TBL, BINARY_TBL
|
||
DBG("HDU[%d] type %d", i, hdutype);
|
||
switch(hdutype){
|
||
case IMAGE_HDU:
|
||
DBG("Image");
|
||
curHDU->contents.image = image_read(fits);
|
||
break;
|
||
case BINARY_TBL:
|
||
DBG("Binary table");
|
||
break;
|
||
case ASCII_TBL:
|
||
DBG("ASCII table");
|
||
//table_read(img, fp);
|
||
break;
|
||
default:
|
||
WARNX(_("Unknown HDU type"));
|
||
}
|
||
}
|
||
if(fst == END_OF_FILE){
|
||
fst = 0;
|
||
}
|
||
returning:
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
FITS_free(&fits);
|
||
}
|
||
return fits;
|
||
}
|
||
|
||
static bool keylist_write(KeyList *kl, fitsfile *fp){
|
||
int st = 0;
|
||
bool ret = TRUE;
|
||
if(!fp || !kl) return FALSE;
|
||
while(kl){
|
||
if(kl->keyclass > TYP_CMPRS_KEY){ // this record should be written
|
||
fits_write_record(fp, kl->record, &st);
|
||
DBG("Write %s, st = %d", kl->record, st);
|
||
if(st){FITS_reporterr(&st); ret = FALSE;}
|
||
}
|
||
kl = kl->next;
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
/**
|
||
* @brief FITS_write - write FITS file to disk
|
||
* @param filename - new filename (with possible cfitsio additions like ! and so on)
|
||
* @param fits - structure to write
|
||
* @return TRUE if all OK
|
||
*/
|
||
bool FITS_write(char *filename, FITS *fits){
|
||
if(!filename || !fits) return FALSE;
|
||
fitsfile *fp;
|
||
int fst = 0;
|
||
fits_create_file(&fp, filename, &fst);
|
||
DBG("create file %s", filename);
|
||
if(fst){FITS_reporterr(&fst); return FALSE;}
|
||
int N = fits->NHDUs;
|
||
for(int i = 1; i <= N; ++i){
|
||
FITSHDU *hdu = &fits->HDUs[i];
|
||
if(!hdu) continue;
|
||
FITSimage *img;
|
||
KeyList *records = hdu->keylist;
|
||
DBG("HDU #%d (type %d)", i, hdu->hdutype);
|
||
switch(hdu->hdutype){
|
||
case IMAGE_HDU:
|
||
img = hdu->contents.image;
|
||
if(!img && records){ // something wrong - just write keylist
|
||
DBG("create empty image with records");
|
||
fits_create_img(fp, SHORT_IMG, 0, NULL, &fst);
|
||
if(fst){FITS_reporterr(&fst); continue;}
|
||
keylist_write(records, fp);
|
||
DBG("OK");
|
||
continue;
|
||
}
|
||
DBG("create, bitpix: %d, naxis = %d, totpix = %ld", img->bitpix, img->naxis, img->totpix);
|
||
fits_create_img(fp, img->bitpix, img->naxis, img->naxes, &fst);
|
||
//fits_create_img(fp, SHORT_IMG, img->naxis, img->naxes, &fst);
|
||
if(fst){FITS_reporterr(&fst); continue;}
|
||
keylist_write(records, fp);
|
||
DBG("OK, now write image");
|
||
//int bscale = 1, bzero = 32768, status = 0;
|
||
//fits_set_bscale(fp, bscale, bzero, &status);
|
||
if(img && img->data){
|
||
DBG("bitpix: %d, dtype: %d", img->bitpix, img->dtype);
|
||
fits_write_img(fp, img->dtype, 1, img->totpix, img->data, &fst);
|
||
//fits_write_img(fp, img->dtype, 1, img->width * img->height, img->data, &fst);
|
||
DBG("status: %d", fst);
|
||
if(fst){FITS_reporterr(&fst); continue;}
|
||
}
|
||
break;
|
||
case BINARY_TBL:
|
||
case ASCII_TBL:
|
||
// TODO: save table
|
||
break;
|
||
}
|
||
}
|
||
|
||
fits_close_file(fp, &fst);
|
||
if(fst){FITS_reporterr(&fst);}
|
||
return TRUE;
|
||
}
|
||
|
||
/**
|
||
* @brief FITS_rewrite - rewrite file in place
|
||
* @param fits - pointer to FITS structure
|
||
* @return TRUE if all OK
|
||
*/
|
||
bool FITS_rewrite(FITS *fits){
|
||
FNAME();
|
||
char rlpath[PATH_MAX];
|
||
if(realpath(fits->filename, rlpath)){do{ // got real path - try to make link
|
||
char *d = strdup(rlpath);
|
||
if(!d){ WARN("strdup()"); FREE(d); break; }
|
||
char *dir = dirname(d);
|
||
if(!dir){ WARN("dirname()"); FREE(d); break; }
|
||
char newpath[PATH_MAX];
|
||
char *nm = tmpnam(NULL);
|
||
if(!nm){ WARN("tmpnam()"); FREE(d); break; }
|
||
char *fnm = basename(nm);
|
||
if(!fnm){ WARN("basename()"); FREE(d); break; }
|
||
snprintf(newpath, PATH_MAX, "%s/%s", dir, fnm);
|
||
FREE(d);
|
||
DBG("make link: %s -> %s", rlpath, newpath);
|
||
if(link(rlpath, newpath)){ WARN("link()"); break; }
|
||
if(unlink(rlpath)){ WARN("unlink()"); break; }
|
||
if(FITS_write(rlpath, fits)){
|
||
unlink(newpath);
|
||
return TRUE;
|
||
}
|
||
// problems: restore old file
|
||
if(link(newpath, rlpath)) WARN("link()");
|
||
if(unlink(newpath)) WARN("unlink()");
|
||
}while(0);}else WARN(_("Can't get real path for %s, use cfitsio to rewrite"), fits->filename);
|
||
// Can't get realpath or some other error, try to use cfitsio
|
||
snprintf(rlpath, PATH_MAX, "!%s", fits->filename);
|
||
DBG("PATH: %s", rlpath);
|
||
return FITS_write(rlpath, fits);
|
||
}
|
||
|
||
/**************************************************************************************
|
||
* FITS images *
|
||
**************************************************************************************/
|
||
|
||
void image_free(FITSimage **img){
|
||
FREE((*img)->data);
|
||
FREE((*img)->naxes);
|
||
FREE(*img);
|
||
}
|
||
|
||
/**
|
||
* @brief image_datatype_size - calculate size of one data element for given bitpix
|
||
* @param bitpix - value of BITPIX
|
||
* @param dtype (o) - nearest type of data to fit input type
|
||
* @return amount of space need to store one pixel data
|
||
*/
|
||
int image_datatype_size(int bitpix, int *dtype){
|
||
int s = bitpix/8;
|
||
if(dtype){
|
||
switch(s){
|
||
case 1: // BYTE_IMG
|
||
*dtype = TBYTE; // uchar
|
||
break;
|
||
case 2: // SHORT_IMG
|
||
*dtype = TUSHORT;
|
||
break;
|
||
case 4: // LONG_IMG
|
||
*dtype = TUINT;
|
||
break;
|
||
case 8: // LONGLONG_IMG
|
||
*dtype = TULONG;
|
||
break;
|
||
case -4: // FLOAT_IMG
|
||
*dtype = TFLOAT;
|
||
break;
|
||
case -8: // DOUBLE_IMG
|
||
*dtype = TDOUBLE;
|
||
break;
|
||
default:
|
||
return 0; // wrong bitpix
|
||
}
|
||
}
|
||
DBG("bitpix: %d, dtype=%d, imgs=%d", bitpix, *dtype, s);
|
||
return abs(s);
|
||
}
|
||
|
||
/**
|
||
* @brief image_data_malloc - allocate memory for given bitpix
|
||
* @param totpix - total pixels amount
|
||
* @param pxbytes - number of bytes for each pixel
|
||
* @return allocated memory
|
||
*/
|
||
void *image_data_malloc(long totpix, int pxbytes){
|
||
if(!pxbytes || !totpix) return NULL;
|
||
void *data = calloc(totpix, pxbytes);
|
||
DBG("Allocate %zd members of size %d", totpix, pxbytes);
|
||
if(!data) ERR("calloc()");
|
||
return data;
|
||
}
|
||
|
||
/**
|
||
* @brief image_new - create an empty image without headers, assign BITPIX to "bitpix"
|
||
* @param naxis - number of dimensions
|
||
* @param naxes - sizes by each dimension
|
||
* @param bitpix - BITPIX for given image
|
||
* @return allocated structure or NULL
|
||
*/
|
||
FITSimage *image_new(int naxis, long *naxes, int bitpix){
|
||
FITSimage *out = MALLOC(FITSimage, 1);
|
||
int dtype, pxsz = image_datatype_size(bitpix, &dtype);
|
||
long totpix = 0;
|
||
if(naxis){ // not empty image
|
||
totpix = 1;
|
||
for(int i = 0; i < naxis; ++i) if(naxes[i]) totpix *= naxes[i];
|
||
out->data = image_data_malloc(totpix, pxsz);
|
||
if(!out->data){
|
||
FREE(out);
|
||
return NULL;
|
||
}
|
||
}
|
||
out->totpix = totpix;
|
||
out->naxes = MALLOC(long, naxis);
|
||
memcpy(out->naxes, naxes, sizeof(long)*naxis);
|
||
out->naxis = naxis;
|
||
out->pxsz = pxsz;
|
||
out->bitpix = bitpix;
|
||
out->dtype = dtype;
|
||
return out;
|
||
}
|
||
|
||
// function for qsort
|
||
static int cmpdbl(const void *d1, const void *d2){
|
||
register double D1 = *(double*)d1, D2 = *(double*)d2;
|
||
if(fabs(D1 - D2) < DBL_EPSILON) return 0;
|
||
if(D1 > D2) return 1;
|
||
else return -1;
|
||
}
|
||
|
||
// functions to convert double to different datatypes
|
||
static void convu8(FITSimage *img, double *dimg){
|
||
uint8_t *dptr = (uint8_t*) img->data;
|
||
OMP_FOR()
|
||
for(long i = 0; i < img->totpix; ++i){
|
||
dptr[i] = (uint8_t) dimg[i];
|
||
}
|
||
}
|
||
static void convu16(FITSimage *img, double *dimg){
|
||
uint16_t *dptr = (uint16_t*) img->data;
|
||
OMP_FOR()
|
||
for(long i = 0; i < img->totpix; ++i){
|
||
dptr[i] = (uint16_t) dimg[i];
|
||
}
|
||
}
|
||
static void convu32(FITSimage *img, double *dimg){
|
||
uint32_t *dptr = (uint32_t*) img->data;
|
||
OMP_FOR()
|
||
for(long i = 0; i < img->totpix; ++i){
|
||
dptr[i] = (uint32_t) dimg[i];
|
||
}
|
||
}
|
||
static void convu64(FITSimage *img, double *dimg){
|
||
uint64_t *dptr = (uint64_t*) img->data;
|
||
OMP_FOR()
|
||
for(long i = 0; i < img->totpix; ++i){
|
||
dptr[i] = (uint64_t) dimg[i];
|
||
}
|
||
}
|
||
static void convf(FITSimage *img, double *dimg){
|
||
float *dptr = (float*) img->data;
|
||
OMP_FOR()
|
||
for(long i = 0; i < img->totpix; ++i){
|
||
dptr[i] = (float) dimg[i];
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief image_rebuild substitute content of image with array dimg, change its output type
|
||
* @param img - input image
|
||
* @param dimg - data to change
|
||
* @return rebuilt image; array dimg no longer used an can be FREEd
|
||
*/
|
||
FITSimage *image_rebuild(FITSimage *img, double *dimg){
|
||
if(!img || !dimg) return NULL;
|
||
// first we should calculate statistics of new image
|
||
double *sr = MALLOC(double, img->totpix);
|
||
memcpy(sr, dimg, sizeof(double)*img->totpix);
|
||
qsort(sr, img->totpix, sizeof(double), cmpdbl);
|
||
double mindiff = DBL_MAX;
|
||
bool isint = TRUE;
|
||
for(long i = 1; i < img->totpix; ++i){
|
||
double d = fabs(sr[i] - sr[i-1]);
|
||
if(d > DBL_EPSILON && d < mindiff) mindiff = d;
|
||
if(fabs(d - floor(d)) > DBL_EPSILON) isint = FALSE;
|
||
}
|
||
// now we know min, max and minimal difference between elements
|
||
double min = sr[0], max = sr[img->totpix-1];
|
||
FREE(sr);
|
||
DBG("min: %g, max: %g, mindiff: %g", min, max, mindiff);
|
||
int bitpix = -64; // double by default
|
||
void (*convdata)(FITSimage*, double*) = NULL;
|
||
if(isint)do{ // check which integer type will suits better
|
||
DBG("INTEGER?");
|
||
if(min < 0){ isint = FALSE; break;} // TODO: correct with BZERO
|
||
if(max < UINT8_MAX){bitpix = 8; convdata = convu8; break; }
|
||
if(max < UINT16_MAX){bitpix = 16; convdata = convu16; break; }
|
||
if(max < UINT32_MAX){bitpix = 32; convdata = convu32; break; }
|
||
if(max < UINT64_MAX){bitpix = 64; convdata = convu64; break; }
|
||
}while(0);
|
||
if(!isint){ // float or double
|
||
DBG("mindiff: %g(%g), min: %g(%g), max: %g(%g)", mindiff,FLT_EPSILON,
|
||
min, FLT_MIN, max, FLT_MAX);
|
||
if(mindiff > FLT_EPSILON && (min > -FLT_MAX) && max < FLT_MAX){
|
||
bitpix = -32;
|
||
convdata = convf;
|
||
}
|
||
}
|
||
DBG("NOW: bitpix = %d", bitpix);
|
||
img->bitpix = bitpix;
|
||
void *data = calloc(img->totpix, abs(bitpix/8));
|
||
if(!data){ WARN("calloc()"); return NULL; }
|
||
FREE(img->data);
|
||
img->data = data;
|
||
if(convdata) convdata(img, dimg);
|
||
else memcpy(img->data, dimg, sizeof(double)*img->totpix);
|
||
img->pxsz = image_datatype_size(bitpix, &img->dtype);
|
||
return img;
|
||
}
|
||
|
||
/**
|
||
* build IMAGE image from data array indata
|
||
*
|
||
FITSimage *image_build(size_t h, size_t w, int dtype, uint8_t *indata){
|
||
size_t stride = 0;
|
||
double (*fconv)(uint8_t *data) = NULL;
|
||
double ubyteconv(uint8_t *data){return (double)*data;}
|
||
double ushortconv(uint8_t *data){return (double)*(short*)data;}
|
||
double ulongconv(uint8_t *data){return (double)*(unsigned long*)data;}
|
||
double ulonglongconv(uint8_t *data){return (double)*(uint64_t*)data;}
|
||
double floatconv(uint8_t *data){return (double)*(float*)data;}
|
||
FITSimage *out = image_new(h, w, dtype);
|
||
switch (dtype){
|
||
case BYTE_IMG:
|
||
stride = 1;
|
||
fconv = ubyteconv;
|
||
break;
|
||
//case USHORT_IMG?
|
||
case SHORT_IMG:
|
||
stride = 2;
|
||
fconv = ushortconv;
|
||
break;
|
||
case LONG_IMG:
|
||
stride = 4;
|
||
fconv = ulongconv;
|
||
break;
|
||
case FLOAT_IMG:
|
||
stride = 4;
|
||
fconv = floatconv;
|
||
break;
|
||
case LONGLONG_IMG:
|
||
fconv = ulonglongconv;
|
||
stride = 8;
|
||
break;
|
||
case DOUBLE_IMG:
|
||
memcpy(out->data, indata, sizeof(double)*w*h);
|
||
return out;
|
||
break;
|
||
default:
|
||
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
ERRX(_("Wrong data type"));
|
||
}
|
||
size_t y, W = w*stride;
|
||
double *data = out->data;
|
||
OMP_FOR(shared(data))
|
||
for(y = 0; y < h; ++y){
|
||
double *dout = &data[y*w];
|
||
uint8_t *din = &indata[y*W];
|
||
size_t x;
|
||
for(x = 0; x < w; ++x, din += stride)
|
||
*dout++ = fconv(din);
|
||
}
|
||
return out;
|
||
}*/
|
||
|
||
/**
|
||
* create an empty copy of image "in" without headers, assign data type to "dtype"
|
||
*/
|
||
FITSimage *image_mksimilar(FITSimage *img){
|
||
return image_new(img->naxis, img->naxes, img->bitpix);
|
||
}
|
||
|
||
/**
|
||
* make full copy of image 'in'
|
||
*/
|
||
FITSimage *image_copy(FITSimage *in){
|
||
FITSimage *out = image_mksimilar(in);
|
||
if(!out) return NULL;
|
||
memcpy(out->data, in->data, (in->pxsz)*(in->totpix));
|
||
return out;
|
||
}
|
||
|
||
/**
|
||
* @brief image_read - read image from current HDU
|
||
* @param fits - fits structure pointer
|
||
* @return - pointer to allocated image structure or NULL if failed
|
||
*/
|
||
FITSimage *image_read(FITS *fits){
|
||
// TODO: open not only 2-dimensional files!
|
||
// get image dimensions
|
||
int naxis, fst = 0, bitpix;
|
||
fits_get_img_dim(fits->fp, &naxis, &fst);
|
||
if(fst){FITS_reporterr(&fst); return NULL;}
|
||
long *naxes = MALLOC(long, naxis);
|
||
fits_get_img_param(fits->fp, naxis, &bitpix, &naxis, naxes, &fst);
|
||
if(fst){FITS_reporterr(&fst); return NULL;}
|
||
FITSimage *img = image_new(naxis, naxes, bitpix);
|
||
FREE(naxes);
|
||
int stat = 0;
|
||
if(!img) return NULL;
|
||
if(!img->data) return img; // empty "image" - no data inside
|
||
DBG("try to read, dt=%d, sz=%ld", img->dtype, img->totpix);
|
||
//int bscale = 1, bzero = 32768, status = 0;
|
||
//fits_set_bscale(fits->fp, bscale, bzero, &status);
|
||
fits_read_img(fits->fp, img->dtype, 1, img->totpix, NULL, img->data, &stat, &fst);
|
||
//fits_read_img(fits->fp, TUSHORT, 1, img->totpix, NULL, img->data, &stat, &fst);
|
||
if(fst){
|
||
FITS_reporterr(&fst);
|
||
image_free(&img);
|
||
return NULL;
|
||
}
|
||
if(stat) WARNX(_("Found %d pixels with undefined value"), stat);
|
||
DBG("ready");
|
||
return img;
|
||
}
|
||
|
||
/**
|
||
* @brief image2double convert image values to double
|
||
* @param img - input image
|
||
* @return array of double with size imt->totpix
|
||
*/
|
||
double *image2double(FITSimage *img){
|
||
size_t tot = img->totpix;
|
||
double *ret = MALLOC(double, tot);
|
||
double (*fconv)(uint8_t *x);
|
||
double ubyteconv(uint8_t *data){return (double)*data;}
|
||
double ushortconv(uint8_t *data){return (double)*((uint16_t*)data);}
|
||
double ulongconv(uint8_t *data){return (double)*((uint32_t*)data);}
|
||
double ulonglongconv(uint8_t *data){return (double)*((uint64_t*)data);}
|
||
double floatconv(uint8_t *data){return (double)*((float*)data);}
|
||
initomp();
|
||
switch(img->dtype){
|
||
case TBYTE:
|
||
fconv = ubyteconv;
|
||
break;
|
||
case TUSHORT:
|
||
fconv = ushortconv;
|
||
break;
|
||
case TUINT:
|
||
fconv = ulongconv;
|
||
break;
|
||
case TULONG:
|
||
fconv = ulonglongconv;
|
||
break;
|
||
case TFLOAT:
|
||
fconv = floatconv;
|
||
break;
|
||
case TDOUBLE:
|
||
memcpy(ret, img->data, sizeof(double)*img->totpix);
|
||
return ret;
|
||
break;
|
||
default:
|
||
WARNX(_("Undefined image type, cant convert to double"));
|
||
FREE(ret);
|
||
return NULL;
|
||
}
|
||
uint8_t *din = img->data;
|
||
OMP_FOR()
|
||
for(size_t i = 0; i < tot; ++i){
|
||
ret[i] = fconv(&din[i*img->pxsz]);
|
||
}
|
||
return ret;
|
||
}
|