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
|
/*** File libwcs/iget.c
*** July 29, 2000
*** By Doug Mink, dmink@cfa.harvard.edu
*** Harvard-Smithsonian Center for Astrophysics
* Module: iget.c (Get IRAF FITS Header parameter values)
* Purpose: Extract values for variables from IRAF keyword value string
* Subroutine: mgeti4 (hstring,mkey,keyword,ival) returns long integer
* Subroutine: mgetr8 (hstring,mkey,keyword,dval) returns double
* Subroutine: mgets (hstring,mkey,keyword,lstr,str) returns character string
* Subroutine: igeti4 (hstring,keyword,ival) returns long integer
* Subroutine: igetr4 (hstring,keyword,rval) returns real
* Subroutine: igetr8 (hstring,keyword,dval) returns double
* Subroutine: igets (hstring,keyword,lstr,str) returns character string
* Subroutine: igetc (hstring,keyword) returns character string
* Subroutine: isearch (hstring,keyword) returns pointer to header string entry
* Copyright: 1999 Smithsonian Astrophysical Observatory
* You may do anything you like with this file except remove
* this copyright. The Smithsonian Astrophysical Observatory
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
#include <string.h> /* NULL, strlen, strstr, strcpy */
#include <stdio.h>
#include "fitshead.h" /* FITS header extraction subroutines */
#include <stdlib.h>
#ifndef VMS
#include <limits.h>
#else
#define INT_MAX 2147483647 /* Biggest number that can fit in long */
#define SHRT_MAX 32767
#endif
static char *igetc();
static char *isearch();
static char val[30];
/* Extract long value for variable from IRAF multiline keyword value */
int
mgeti4 (hstring, mkey, keyword, ival)
char *hstring; /* Character string containing FITS or IRAF header information
in the format <keyword>= <value> ... */
char *mkey; /* Character string containing the name of the multi-line
keyword, the string value of which contains the desired
keyword, the value of which is returned. */
char *keyword; /* Character string containing the name of the keyword
within the multiline IRAF keyword */
int *ival; /* Integer value returned */
{
char *mstring;
mstring = malloc (600);
if (hgetm (hstring, mkey, 600, mstring)) {
if (igeti4 (mstring, keyword, ival)) {
free (mstring);
return (1);
}
else {
free (mstring);
return (0);
}
}
else {
free (mstring);
return (0);
}
}
/* Extract double value for variable from IRAF multiline keyword value */
int
mgetr8 (hstring, mkey, keyword, dval)
char *hstring; /* Character string containing FITS or IRAF header information
in the format <keyword>= <value> ... */
char *mkey; /* Character string containing the name of the multi-line
keyword, the string value of which contains the desired
keyword, the value of which is returned. */
char *keyword; /* Character string containing the name of the keyword
within the multiline IRAF keyword */
double *dval; /* Integer value returned */
{
char *mstring;
mstring = malloc (600);
if (hgetm (hstring, mkey, 600, mstring)) {
if (igetr8 (mstring, keyword, dval)) {
free (mstring);
return (1);
}
else {
free (mstring);
return (0);
}
}
else {
free (mstring);
return (0);
}
}
/* Extract string value for variable from IRAF keyword value string */
int
mgets (hstring, mkey, keyword, lstr, str)
char *hstring; /* character string containing FITS header information
in the format <keyword>= <value> {/ <comment>} */
char *mkey; /* Character string containing the name of the multi-line
keyword, the string value of which contains the desired
keyword, the value of which is returned. */
char *keyword; /* character string containing the name of the keyword
the value of which is returned. hget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
int lstr; /* Size of str in characters */
char *str; /* String (returned) */
{
char *mstring;
mstring = malloc (600);
if (hgetm (hstring, mkey, 600, mstring)) {
if (igets (mstring, keyword, lstr, str)) {
free (mstring);
return (1);
}
else {
free (mstring);
return (0);
}
}
else {
free (mstring);
return (0);
}
}
/* Extract long value for variable from IRAF keyword value string */
int
igeti4 (hstring, keyword, ival)
char *hstring; /* character string containing IRAF header information
in the format <keyword>= <value> ... */
char *keyword; /* character string containing the name of the keyword
the value of which is returned. hget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
int *ival; /* Integer value returned */
{
char *value;
double dval;
int minint;
/* Get value from header string */
value = igetc (hstring,keyword);
/* Translate value from ASCII to binary */
if (value != NULL) {
minint = -INT_MAX - 1;
strcpy (val, value);
dval = atof (val);
if (dval+0.001 > INT_MAX)
*ival = INT_MAX;
else if (dval >= 0)
*ival = (int) (dval + 0.001);
else if (dval-0.001 < minint)
*ival = minint;
else
*ival = (int) (dval - 0.001);
return (1);
}
else {
return (0);
}
}
/* Extract integer*2 value for variable from IRAF keyword value string */
int
igeti2 (hstring,keyword,ival)
char *hstring; /* character string containing FITS header information
in the format <keyword>= <value> {/ <comment>} */
char *keyword; /* character string containing the name of the keyword
the value of which is returned. hget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
short *ival;
{
char *value;
double dval;
int minshort;
/* Get value from header string */
value = igetc (hstring,keyword);
/* Translate value from ASCII to binary */
if (value != NULL) {
strcpy (val, value);
dval = atof (val);
minshort = -SHRT_MAX - 1;
if (dval+0.001 > SHRT_MAX)
*ival = SHRT_MAX;
else if (dval >= 0)
*ival = (short) (dval + 0.001);
else if (dval-0.001 < minshort)
*ival = minshort;
else
*ival = (short) (dval - 0.001);
return (1);
}
else {
return (0);
}
}
/* Extract real value for variable from IRAF keyword value string */
int
igetr4 (hstring,keyword,rval)
char *hstring; /* character string containing FITS header information
in the format <keyword>= <value> {/ <comment>} */
char *keyword; /* character string containing the name of the keyword
the value of which is returned. hget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
float *rval;
{
char *value;
/* Get value from header string */
value = igetc (hstring,keyword);
/* Translate value from ASCII to binary */
if (value != NULL) {
strcpy (val, value);
*rval = (float) atof (val);
return (1);
}
else {
return (0);
}
}
/* Extract real*8 value for variable from IRAF keyword value string */
int
igetr8 (hstring,keyword,dval)
char *hstring; /* character string containing FITS header information
in the format <keyword>= <value> {/ <comment>} */
char *keyword; /* character string containing the name of the keyword
the value of which is returned. hget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
double *dval;
{
char *value,val[30];
/* Get value from header string */
value = igetc (hstring,keyword);
/* Translate value from ASCII to binary */
if (value != NULL) {
strcpy (val, value);
*dval = atof (val);
return (1);
}
else {
return (0);
}
}
/* Extract string value for variable from IRAF keyword value string */
int
igets (hstring, keyword, lstr, str)
char *hstring; /* character string containing FITS header information
in the format <keyword>= <value> {/ <comment>} */
char *keyword; /* character string containing the name of the keyword
the value of which is returned. hget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
int lstr; /* Size of str in characters */
char *str; /* String (returned) */
{
char *value;
int lval;
/* Get value from header string */
value = igetc (hstring,keyword);
if (value != NULL) {
lval = strlen (value);
if (lval < lstr)
strcpy (str, value);
else if (lstr > 1)
strncpy (str, value, lstr-1);
else
str[0] = value[0];
return (1);
}
else
return (0);
}
/* Extract character value for variable from IRAF keyword value string */
static char *
igetc (hstring,keyword0)
char *hstring; /* character string containing IRAF keyword value string
in the format <keyword>= <value> {/ <comment>} */
char *keyword0; /* character string containing the name of the keyword
the value of which is returned. iget searches for a
line beginning with this string. if "[n]" is present,
the n'th token in the value is returned.
(the first 8 characters must be unique) */
{
static char cval[500];
char *value;
char cwhite[8];
char lbracket[2],rbracket[2];
char keyword[16];
char line[500];
char *vpos,*cpar;
char *c1, *brack1, *brack2;
int ipar, i;
lbracket[0] = 91;
lbracket[1] = 0;
rbracket[0] = 93;
rbracket[1] = 0;
/* Find length of variable name */
strcpy (keyword,keyword0);
brack1 = strsrch (keyword,lbracket);
if (brack1 != NULL) *brack1 = '\0';
/* Search header string for variable name */
vpos = isearch (hstring,keyword);
/* Exit if not found */
if (vpos == NULL) {
return (NULL);
}
/* Initialize returned value to nulls */
for (i = 0; i < 500; i++)
line[i] = 0;
/* If quoted value, copy until second quote is reached */
i = 0;
if (*vpos == '"') {
vpos++;
while (*vpos && *vpos != '"' && i < 500)
line[i++] = *vpos++;
}
/* Otherwise copy until next space or tab */
else {
while (*vpos != ' ' && *vpos != (char)9 && *vpos > 0 && i < 500)
line[i++] = *vpos++;
}
/* If keyword has brackets, extract appropriate token from value */
if (brack1 != NULL) {
c1 = (char *) (brack1 + 1);
brack2 = strsrch (c1, rbracket);
if (brack2 != NULL) {
*brack2 = '\0';
ipar = atoi (c1);
if (ipar > 0) {
cwhite[0] = ' ';
cwhite[1] = ',';
cwhite[2] = '\0';
cpar = strtok (line, cwhite);
for (i = 1; i < ipar; i++) {
cpar = strtok (NULL, cwhite);
}
if (cpar != NULL) {
strcpy (cval,cpar);
}
else
value = NULL;
}
}
}
else
strcpy (cval, line);
value = cval;
return (value);
}
/* Find value for specified IRAF keyword */
static char *
isearch (hstring,keyword)
/* Find entry for keyword keyword in IRAF keyword value string hstring.
NULL is returned if the keyword is not found */
char *hstring; /* character string containing fits-style header
information in the format <keyword>= <value> {/ <comment>}
the default is that each entry is 80 characters long;
however, lines may be of arbitrary length terminated by
nulls, carriage returns or linefeeds, if packed is true. */
char *keyword; /* character string containing the name of the variable
to be returned. isearch searches for a line beginning
with this string. The string may be a character
literal or a character variable terminated by a null
or '$'. it is truncated to 8 characters. */
{
char *loc, *headnext, *headlast, *pval;
int lastchar, nextchar, lkey, nleft, lhstr;
/* Search header string for variable name */
lhstr = 0;
while (lhstr < 57600 && hstring[lhstr] != 0)
lhstr++;
headlast = hstring + lhstr;
headnext = hstring;
pval = NULL;
lkey = strlen (keyword);
while (headnext < headlast) {
nleft = headlast - headnext;
loc = strnsrch (headnext, keyword, nleft);
/* Exit if keyword is not found */
if (loc == NULL) {
break;
}
nextchar = (int) *(loc + lkey);
lastchar = (int) *(loc - 1);
/* If parameter name in header is longer, keep searching */
if (nextchar != 61 && nextchar > 32 && nextchar < 127)
headnext = loc + 1;
/* If start of string, keep it */
else if (loc == hstring) {
pval = loc;
break;
}
/* If preceeded by a blank or tab, keep it */
else if (lastchar == 32 || lastchar == 9) {
pval = loc;
break;
}
else
headnext = loc + 1;
}
/* Find start of value string for this keyword */
if (pval != NULL) {
pval = pval + lkey;
while (*pval == ' ' || *pval == '=')
pval++;
}
/* Return pointer to calling program */
return (pval);
}
/* Mar 12 1998 New subroutines
* Apr 15 1998 Set IGET() and ISEARCH() static when defined
* Apr 24 1998 Add MGETI4(), MGETR8(), and MGETS() for single step IRAF ext.
* Jun 1 1998 Add VMS patch from Harry Payne at STScI
* Jul 9 1998 Fix bracket token extraction after Paul Sydney
* May 5 1999 values.h -> POSIX limits.h: MAXINT->INT_MAX, MAXSHORT->SHRT_MAX
* Oct 21 1999 Fix declarations after lint
*
* Feb 11 2000 Stop search for end of quoted keyword if more than 500 chars
* Jul 20 2000 Drop unused variables squot, dquot, and slash in igetc()
*/
|