1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 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 714 715 716 717 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 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 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 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 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 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
|
/*********************************************************************
Table - View and manipulate a FITS table structures.
Table is part of GNU Astronomy Utilities (Gnuastro) package.
Original author:
Mohammad Akhlaghi <mohammad@akhlaghi.org>
Contributing author(s):
Copyright (C) 2016-2025 Free Software Foundation, Inc.
Gnuastro 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.
Gnuastro 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 Gnuastro. If not, see <http://www.gnu.org/licenses/>.
**********************************************************************/
#include <config.h>
#include <argp.h>
#include <errno.h>
#include <error.h>
#include <stdio.h>
#include <string.h>
#include <gnuastro/ds9.h>
#include <gnuastro/wcs.h>
#include <gnuastro/fits.h>
#include <gnuastro/table.h>
#include <gnuastro/pointer.h>
#include <gnuastro-internal/timing.h>
#include <gnuastro-internal/options.h>
#include <gnuastro-internal/checkset.h>
#include <gnuastro-internal/tableintern.h>
#include <gnuastro-internal/fixedstringmacros.h>
#include "main.h"
#include "ui.h"
#include "arithmetic.h"
#include "authors-cite.h"
/**************************************************************/
/********* Argp necessary global entities ************/
/**************************************************************/
/* Definition parameters for the Argp: */
const char *
argp_program_version = PROGRAM_STRING "\n"
GAL_STRINGS_COPYRIGHT
"\n\nWritten/developed by "PROGRAM_AUTHORS;
const char *
argp_program_bug_address = PACKAGE_BUGREPORT;
static char
args_doc[] = "ASTRdata";
const char
doc[] = GAL_STRINGS_TOP_HELP_INFO PROGRAM_NAME" can be used to view "
"the information, select columns, or convert tables. The inputs and "
"outputs can be plain text (with white-space or comma as delimiters), "
"FITS ascii, or FITS binary tables. The output columns can either be "
"selected by number (counting from 1), name or using regular "
"expressions. For regular expressions, enclose the value to the "
"'--column' ('-c') option in slashes ('\\', as in '-c\\^mag\\'). "
"To print the selected columns on the command-line, don't specify "
"an output file.\n"
GAL_STRINGS_MORE_HELP_INFO
/* After the list of options: */
"\v"
PACKAGE_NAME" home page: "PACKAGE_URL;
/**************************************************************/
/********* Initialize & Parse command-line **************/
/**************************************************************/
static void
ui_initialize_options(struct tableparams *p,
struct argp_option *program_options,
struct argp_option *gal_commonopts_options)
{
size_t i;
struct gal_options_common_params *cp=&p->cp;
/* Set the necessary common parameters structure. */
cp->program_struct = p;
cp->poptions = program_options;
cp->program_name = PROGRAM_NAME;
cp->program_exec = PROGRAM_EXEC;
cp->program_bibtex = PROGRAM_BIBTEX;
cp->program_authors = PROGRAM_AUTHORS;
cp->coptions = gal_commonopts_options;
/* Program-specific initialization. */
p->txtf32precision = GAL_BLANK_INT;
p->txtf64precision = GAL_BLANK_INT;
p->head = GAL_BLANK_SIZE_T;
p->tail = GAL_BLANK_SIZE_T;
/* Modify common options. */
for(i=0; !gal_options_is_last(&cp->coptions[i]); ++i)
{
/* Select individually. */
switch(cp->coptions[i].key)
{
/* Mandatory options. */
case GAL_OPTIONS_KEY_SEARCHIN:
case GAL_OPTIONS_KEY_MINMAPSIZE:
case GAL_OPTIONS_KEY_TABLEFORMAT:
cp->coptions[i].mandatory=GAL_OPTIONS_MANDATORY;
break;
/* Options to ignore. */
case GAL_OPTIONS_KEY_TYPE:
cp->coptions[i].flags=OPTION_HIDDEN;
break;
}
/* Select by group. */
switch(cp->coptions[i].group)
{
case GAL_OPTIONS_GROUP_TESSELLATION:
cp->coptions[i].doc=NULL; /* Necessary to remove title. */
cp->coptions[i].flags=OPTION_HIDDEN;
break;
}
}
}
/* Parse a single option: */
error_t
parse_opt(int key, char *arg, struct argp_state *state)
{
struct tableparams *p = state->input;
/* Pass 'gal_options_common_params' into the child parser. */
state->child_inputs[0] = &p->cp;
/* In case the user incorrectly uses the equal sign (for example
with a short format or with space in the long format, then 'arg'
start with (if the short version was called) or be (if the long
version was called with a space) the equal sign. So, here we
check if the first character of arg is the equal sign, then the
user is warned and the program is stopped: */
if(arg && arg[0]=='=')
argp_error(state, "incorrect use of the equal sign ('='). For short "
"options, '=' should not be used and for long options, "
"there should be no space between the option, equal sign "
"and value");
/* Set the key to this option. */
switch(key)
{
/* Read the non-option tokens (arguments): */
case ARGP_KEY_ARG:
/* The user may give a shell variable that is empty! In that case
'arg' will be an empty string! We don't want to account for such
cases (and give a clear error that no input has been given). */
if(p->filename)
argp_error(state, "only one argument (input table) may be "
"given; the extra argument is '%s'", arg);
else
if(arg[0]!='\0') p->filename=arg;
break;
/* This is an option, set its value. */
default:
return gal_options_set_from_key(key, arg, p->cp.poptions, &p->cp);
}
return 0;
}
/**************************************************************/
/*************** Sanity Check *******************/
/**************************************************************/
/* Check ONLY the options. When arguments are involved, do the check
in 'ui_check_options_and_arguments'. */
static void
ui_check_only_options(struct tableparams *p)
{
size_t i;
double *darr;
gal_data_t *tmp;
/* Check if the format of the output table is valid, given the type of
the output. */
gal_tableintern_check_fits_format(p->cp.output, p->cp.tableformat);
/* Some checks on '--range'. */
if(p->range)
for(tmp=p->range;tmp!=NULL;tmp=tmp->next)
{
/* Range needs two input numbers. */
if(tmp->size!=2)
error(EXIT_FAILURE, 0, "two values (separated by ':' or ',') "
"are necessary for '--range' in this format: "
"'--range=COLUMN,min:max'");
/* The first must be smaller than the second. */
darr=tmp->array;
if( darr[0] > darr[1] )
error(EXIT_FAILURE, 0, "first value (%g) given to '--range' "
"must be smaller than the second (%g)", darr[0], darr[1]);
}
/* Basic checks for '--inpolygon' or '--outpolygon'. */
if(p->inpolygon || p->outpolygon)
{
if(p->inpolygon && p->outpolygon)
error(EXIT_FAILURE, 0, "'--inpolygon' and '--outpolygon' options "
"cannot be called together");
if(p->inpolygon && p->inpolygon->size!=2)
error(EXIT_FAILURE, 0, "two columns (for coordinates) can "
"be given to '--inpolygon'");
if(p->outpolygon && p->outpolygon->size!=2)
error(EXIT_FAILURE, 0, "two columns (for coordinates) can "
"be given to '--outpolygon'");
if(p->polygon==NULL)
error(EXIT_FAILURE, 0, "no polygon specified for '--inpolygon' or "
"'--outpolygon'! Please provide the vertices of the desired "
"polygon with the '--polygon' option in this format: "
"v1x,v1y:v2x,v2y:v3x,v3y:...");
}
/* Make sure only one of the positional row selection operations is
called in one run. */
if( (p->rowrange!=NULL)
+ (p->rowrandom!=0)
+ (p->head!=GAL_BLANK_SIZE_T)
+ (p->tail!=GAL_BLANK_SIZE_T) > 1 )
error(EXIT_FAILURE, 0, "only one of the following options can be "
"called in one run: '--head', '--tail', '--rowrange' and "
"'--rowrandom'");
/* Make sure the value to '--rowrange' is in the correct format. */
if(p->rowrange)
{
/* There should only be two values. */
if(p->rowrange->size!=2)
error(EXIT_FAILURE, 0, "only two should be given to "
"'--rowrange' (the top and bottom row numbers specifying "
"your desired range)");
/* Do individual checks. */
darr=p->rowrange->array;
for(i=0;i<p->rowrange->size;++i)
{
/* Make sure it isn't 0 or negative. */
if( darr[i]<=0 )
error(EXIT_FAILURE, 0, "%g (value given to '--rowrange') "
"is smaller than, or equal to, zero! This option's "
"values are row-counters (starting from 1), so they "
"must be positive integers", darr[i]);
/* Make sure its an integer. */
if( darr[i] != (size_t)(darr[i]) )
error(EXIT_FAILURE, 0, "%g (value given to '--rowrange') is "
"not an integer! This option's values are row-counters "
"so they must be integers.", darr[i]);
/* Subtract 1 from the value, so it counts from 0. */
--darr[i];
}
/* Make sure that the first value is smaller than the second. */
if( darr[0] > darr[1] )
error(EXIT_FAILURE, 0, "the first value to '--rowrange' (%g) is "
"larger than the second (%g). This option's values defines "
"a row-counter interval, assuming the first value is the "
"top of the desired interval (smaller row counter) and the "
"second value is the bottom of the desired interval "
"(larger row counter)", darr[0], darr[1]);
}
/* If '--colmetadata' is given, make sure none of the given options have
more than three values. */
if(p->colmetadata)
for(tmp=p->colmetadata;tmp!=NULL;tmp=tmp->next)
if(tmp->size>3)
error(EXIT_FAILURE, 0, "at most three values can be given to "
"each call of '--colmetadata' ('-m') after the original "
"columns name or number. But %zu strings have been given",
tmp->size);
/* If '--catcolumns' is given (to only concatenate certain columns), but
no file has been given for appending from (to '--catcolumnfile'), then
print a warning to let the user know (this may have been a typo!). */
if(p->cp.quiet==0 && p->catcolumns && p->catcolumnfile==NULL)
error(EXIT_SUCCESS, 0, "WARNING: '--catcolumns' (or '-C') is ignored "
"because '--catcolumnfile' (or '-L') was not given to specify "
"which file the new columns should come from. To suppress this "
"warning, please run with '--quiet'");
/* Check the floating point format string. */
if(p->txtf32fmtstr)
{
p->txtf32format=gal_table_displayflt_from_str(p->txtf32fmtstr);
if(p->txtf32format==GAL_TABLE_DISPLAY_FMT_INVALID)
error(EXIT_FAILURE, 0, "'%s' is not a recognized value for "
"'--txtf64format'. Recognized values are 'fixed' and "
"'exp'", p->txtf32fmtstr);
}
if(p->txtf64fmtstr)
{
p->txtf64format=gal_table_displayflt_from_str(p->txtf64fmtstr);
if(p->txtf64format==GAL_TABLE_DISPLAY_FMT_INVALID)
error(EXIT_FAILURE, 0, "'%s' is not a recognized value for "
"'--txtf64format'. Recognized values are 'fixed' and "
"'exp'", p->txtf64fmtstr);
}
/* If the user wants easy-to-read text output (this should over-write the
existing values in the command-line or in configuration
files). Because default values exist in the configuration files. */
if(p->txteasy)
{
p->txtf32precision=3;
p->txtf64precision=6;
p->txtf32format=GAL_TABLE_DISPLAY_FMT_FIXED;
p->txtf64format=GAL_TABLE_DISPLAY_FMT_FIXED;
}
}
static void
ui_check_options_and_arguments(struct tableparams *p)
{
/* Make sure an input file name was given and if it was a FITS file, that
a HDU is also given. */
if(p->filename)
{
if( gal_fits_file_recognized(p->filename) && p->cp.hdu==NULL )
error(EXIT_FAILURE, 0, "no HDU specified. When the input is a "
"FITS file, a HDU must also be specified, you can use the "
"'--hdu' ('-h') option and give it the HDU number "
"(starting from zero), extension name, or anything "
"acceptable by CFITSIO");
}
}
/**************************************************************/
/************ List of row-selection requests **************/
/**************************************************************/
static void
ui_list_select_add(struct list_select **list, gal_data_t *col, int type)
{
struct list_select *newnode;
errno=0;
newnode=malloc(sizeof *newnode);
if(newnode==NULL)
error(EXIT_FAILURE, errno, "%s: allocating new node", __func__);
newnode->col=col;
newnode->type=type;
newnode->next=*list;
*list=newnode;
}
static gal_data_t *
ui_list_select_pop(struct list_select **list, int *type)
{
gal_data_t *out=NULL;
struct list_select *tmp;
if(*list)
{
/* Extract all the necessary components of the node. */
tmp=*list;
out=tmp->col;
*type=tmp->type;
*list=tmp->next;
/* Delete the node. */
free(tmp);
}
return out;
}
static void
ui_list_select_reverse(struct list_select **list)
{
int thistype;
gal_data_t *thisdata;
struct list_select *correctorder=NULL;
/* Only do the reversal if there is more than one element. */
if( *list && (*list)->next )
{
while(*list!=NULL)
{
thisdata=ui_list_select_pop(list, &thistype);
ui_list_select_add(&correctorder, thisdata, thistype);
}
*list=correctorder;
}
}
void
ui_list_select_free(struct list_select *list, int freevalue)
{
struct list_select *tmp;
while(list!=NULL)
{
tmp=list->next;
if(freevalue)
gal_data_free(list->col);
free(list);
list=tmp;
}
}
/**************************************************************/
/*************** Packaged columns *******************/
/**************************************************************/
/* Return the last 'colpack' element. */
static struct column_pack *
ui_colpack_last(struct column_pack *list)
{
if(list)
{
while(list->next!=NULL) list=list->next;
return list;
}
else return NULL;
}
/* Allocate a clean 'out_columns' structure and put it at the top of the
list. */
static struct column_pack *
ui_colpack_add_new_to_end(struct column_pack **list)
{
struct column_pack *last, *node;
/* Allocate a new node. */
errno=0;
node=malloc(sizeof *node);
if(node==NULL)
error(EXIT_FAILURE, errno, "%s: couldn't allocate new node (%zu "
"bytes)", __func__, sizeof *node);
/* Initialize its elements. */
node->next=NULL;
node->arith=NULL;
node->numsimple=0;
node->start=GAL_BLANK_SIZE_T;
/* If the list already has elements, go to the last node in the list and
add this node. */
if(*list)
{
last=ui_colpack_last(*list);
last->next=node;
}
else
*list=node;
/* Return a pointer to this node (to use temporarily). */
return node;
}
void
ui_colpack_free(struct column_pack *list)
{
struct column_pack *tmp;
while(list!=NULL)
{
arithmetic_token_free(list->arith);
tmp=list->next;
free(list);
list=tmp;
}
}
/**************************************************************/
/*************** Preparations *******************/
/**************************************************************/
/* Read the table metadata to print information. */
static gal_data_t *
ui_info_read(struct tableparams *p, size_t *numcols, size_t *numrows,
int *tableformat)
{
gal_data_t *allcols;
gal_list_str_t *lines;
lines=gal_options_check_stdin(p->filename, p->cp.stdintimeout, "input");
allcols=gal_table_info(p->filename, p->cp.hdu, lines, numcols,
numrows, tableformat, "--hdu");
if(p->filename==NULL) p->filename="Standard-input";
gal_list_str_free(lines, 1);
return allcols;
}
/* Print full column and row information. */
static void
ui_print_info_exit(struct tableparams *p)
{
char *tmp;
int tableformat;
gal_data_t *allcols;
size_t numcols, numrows;
/* Read the input. */
allcols=ui_info_read(p, &numcols, &numrows, &tableformat);
/* If there was no actual data in the file, then inform the user */
if(allcols==NULL)
error(EXIT_FAILURE, 0, "%s: no usable data rows", p->filename);
/* Print the file information. */
printf("--------\n");
tmp=gal_fits_name_save_as_string(p->filename, p->cp.hdu);
printf("%s\n", tmp);
free(tmp);
/* Print each column's information. */
gal_table_print_info(allcols, numcols, numrows);
/* Free the information from all the columns. */
gal_data_array_free(allcols, numcols, 0);
/* Free the allocated spaces and exit. */
ui_free_report(p);
exit(EXIT_SUCCESS);
}
/* Print number of rows or columns */
static void
ui_print_info_nums_exit(struct tableparams *p)
{
int tableformat;
gal_data_t *allcols;
size_t numcols, numrows;
/* Read the input metadata and free the column information (which is not
needed here: we just want the numbers). */
allcols=ui_info_read(p, &numcols, &numrows, &tableformat);
gal_data_array_free(allcols, numcols, 0);
/* Print the respective information. */
if(p->infonumcols) printf("%zu\n", numcols);
else if(p->infonumrows) printf("%zu\n", numrows);
else
error(EXIT_FAILURE, 0, "%s: a bug! Please contact us at '%s' to fix "
"the problem. This function should only be activated when "
"'--info-num-cols' or '--info-num-rows' are called", __func__,
PACKAGE_BUGREPORT);
/* Free the allocated spaces and exit. */
ui_free_report(p);
exit(EXIT_SUCCESS);
}
static void
ui_columns_prepare_arith(struct tableparams *p, gal_data_t *colinfo,
gal_list_str_t **colstoread, size_t *totcalled,
size_t numcols, char *str)
{
struct column_pack *node;
/* If this is the first arithmetic operation and the user has
already asked for some columns, we'll need to put all
previously requested simply-printed columns into an 'colpack'
structure, then add this arithmetic operation's 'colpack'. */
if(p->colpack==NULL && *colstoread)
{
/* Allocate an empty structure and set the necessary
pointers. */
node=ui_colpack_add_new_to_end(&p->colpack);
node->start=0;
node->numsimple=gal_list_str_number(*colstoread);
*totcalled=node->numsimple;
}
/* Add a new column pack for this arithmetic operation, then read
all the tokens (while specifying which columns it needs). */
node=ui_colpack_add_new_to_end(&p->colpack);
arithmetic_init(p, &node->arith, colstoread, totcalled,
str+ARITHMETIC_CALL_LENGTH, colinfo, numcols);
}
/* The columns can be given as comma-separated values to one option or
multiple calls to the column option. Here, we'll check if the input list
has comma-separated values. If they do then the list will be updated to
be fully separate. */
static void
ui_columns_prepare(struct tableparams *p, gal_list_str_t *lines)
{
char *tstr;
gal_data_t *colinfo=NULL;
int tableformat, arithallind=0;
struct column_pack *node, *last;
gal_list_str_t *tmp, *colstoread=NULL;
size_t i, totcalled=0, numcols, numrows, numsimple;
char *c, *str, countstr[11]; /* un-signed 32-bit int takes 10 chars */
/* Go over the list of requested columns from the main input. */
for(tmp=p->columns;tmp!=NULL;tmp=tmp->next)
{
/* For easy reading. */
str=tmp->v;
/* If this is an arithmetic column. */
if(!strncmp(str, ARITHMETIC_CALL, ARITHMETIC_CALL_LENGTH))
{
/* Arithmetic operations may be done on columns from other files
(for example with '--catcolumnfile'). We therefore need to
check if the requested column is in the main input file or
not. If not, it should be set when column arithmetic
starts. To do this, we need to get the input's column
information. */
if(colinfo==NULL)
colinfo=gal_table_info(p->filename, p->cp.hdu, lines,
&numcols, &numrows, &tableformat,
"--hdu");
/* Check if '$_all' is in the string. */
for(c=str; *c!='\0'; ++c)
if(strncmp(c, "$_all", 5)==0)
{ arithallind=c-str; break; }
/* When '$_all' is in the string, we need to repeat this option
for every column. Otherwise, just add this option once.*/
if(arithallind)
{
/* Because we want to use the same bytes as '$_all' in the
input string, we have four characters to write over '_all'
with the number of each column. However, 'sprintf' already
puts a '\0' on the last character (which we later replace
with a ' '), so we only have three characters to use for
column numbers. Therefore, to use this feature the input
table can have a maximum of 999 columns (the FITS standard
only accepts 999 columns; so it is very rare for people to
need more! but we can add it if necessary). */
if(numcols>999)
error(EXIT_FAILURE, 0, "the '$_all' feature is currently "
"only implemented for tables with fewer than 999 "
"columns. Please contact us at %s to add more "
"columns", PACKAGE_BUGREPORT);
/* Repeat the arithmetic command for each column. */
for(i=1;i<=numcols;++i)
{
gal_checkset_allocate_copy(str, &tstr);
sprintf(tstr+arithallind+1, "%-3zu", i);
tstr[arithallind+4]=' ';
ui_columns_prepare_arith(p, colinfo, &colstoread,
&totcalled, numcols, tstr);
free(tstr);
}
}
else
ui_columns_prepare_arith(p, colinfo, &colstoread, &totcalled,
numcols, str);
}
/* This is a simple column (no change in values). */
else
{
/* If the value is '_all', then we should add all the input's
columns. Otherwise, just add this string. */
if( !strcmp(str, "_all") )
{
/* Load column information (it not already loaded). */
if(colinfo==NULL)
colinfo=gal_table_info(p->filename, p->cp.hdu, lines,
&numcols, &numrows,
&tableformat, "--hdu");
/* Add all the input column counters to the list of columns
to read */
numsimple=gal_list_data_number(colinfo);
for(i=0;i<numsimple;++i)
{
sprintf(countstr, "%u", (uint32_t)(i+1));
gal_list_str_add(&colstoread, countstr, 1);
}
}
else
{
numsimple=1;
gal_list_str_add(&colstoread, str, 1);
}
/* See if we have packaged the output columns. */
if(p->colpack)
{
/* If the previous column package was an arithmetic
operation, allocate a new node. */
last=ui_colpack_last(p->colpack);
if(last->arith)
{
node=ui_colpack_add_new_to_end(&p->colpack);
node->start=totcalled;
node->numsimple=numsimple;
}
/* The previous package of columns are simple (we don't need
to change their value), so we can just increment the
number of columns there and don't need to allocate a new
one. */
else
last->numsimple+=numsimple;
}
/* Increment the total number of called columns. */
totcalled+=1;
}
}
/* For a check
if(p->colpack)
{
struct column_pack *tmp;
struct arithmetic_token *atmp;
for(tmp=p->colpack;tmp!=NULL;tmp=tmp->next)
if(tmp->arith)
{
printf("Arithmetic: \n");
for(atmp=tmp->arith;atmp!=NULL;atmp=atmp->next)
{
if(atmp->operator!=GAL_ARITHMETIC_OP_INVALID)
{
printf("\tOperator: %d\n", atmp->operator);
if(atmp->name_def)
printf("\t\t(Name definition: %s)\n",
atmp->name_def);
}
else if(atmp->constant) printf("\tConstant number\n");
else if(atmp->name_use) printf("\tName usage: %s\n",
atmp->name_use);
else printf("\tCalled column: %zu\n", atmp->index);
}
}
else
printf("Simple: start: %zu, num: %zu\n", tmp->start,
tmp->numsimple);
}
*/
/* Free the information from all the columns (that may have been gathered
if it was necessary). */
if(colinfo) gal_data_array_free(colinfo, numcols, 0);
/* Delete the old list, then reverse the 'colstoread' list, and put it
into 'p->columns'. */
gal_list_str_free(p->columns, 1);
gal_list_str_reverse(&colstoread);
p->columns=colstoread;
}
/* The users give column numbers counting from 1. But we need an 'index'
(starting from 0). So if we can read it as a number, we'll subtract one
from it. */
static size_t
ui_check_select_sort_read_col_ind(char *string)
{
size_t out;
void *ptr=&out;
if( gal_type_from_string(&ptr, string, GAL_TYPE_SIZE_T) )
out=GAL_BLANK_SIZE_T;
else out-=1;
return out;
}
/* Fill replace '--noblank' with all columns (if it is given '_all'). */
static void
ui_noblank_prepare(struct tableparams *p, size_t numcols)
{
size_t i, zero=0;
gal_list_str_t *tmp;
char name[50]; /* No table will have a 50 digit number of columns! */
/* Merge all the possible calls of 'noblank' into one. */
gal_options_merge_list_of_csv(&p->noblankll);
/* Initialize the 'noblank' list of (empty!) datasets (we only need the
column names, this is done to conform with the general selection
mechanism, where some selection methods need values). */
p->noblank=NULL;
/* In case it is given an '_all' option (for all columns to be
checked). */
if(gal_list_str_number(p->noblankll)==1
&& !strcmp(p->noblankll->v,"_all"))
{
/* Add all the columns to the final list of datasets. */
for(i=0;i<numcols;++i)
{
sprintf(name, "%zu", i+1);
gal_list_data_add_alloc(&p->noblank, NULL, GAL_TYPE_FLOAT64, 1,
&zero, NULL, 0, -1, 1, name, NULL, NULL);
}
}
/* Only certain columns are requested (we should just put the strings in
the desired format of a list of datasets with names, not a single
dataset with type string and many elements). */
else
{
for(tmp=p->noblankll; tmp!=NULL; tmp=tmp->next)
gal_list_data_add_alloc(&p->noblank, NULL, GAL_TYPE_FLOAT64, 1,
&zero, NULL, 0, -1, 1, tmp->v, NULL, NULL);
}
/* Reverse the final output list of columns. */
gal_list_data_reverse(&p->noblank);
/* Clean up the list that we don't need any more. */
gal_list_str_free(p->noblankll, 1);
p->noblankll=NULL;
/* For a check:
gal_data_t *dtmp;
for(dtmp=p->noblank;dtmp!=NULL;dtmp=dtmp->next)
printf("col: %s\n", dtmp->name);
exit(0);
*/
}
/* See if row selection or sorting needs any extra columns to be read. */
static void
ui_check_select_sort_before(struct tableparams *p, gal_list_str_t *lines,
size_t *nselect, size_t *origoutncols,
size_t *sortindout, size_t **selectindout_out,
size_t **selecttypeout_out)
{
char **strarr;
gal_list_sizet_t *tmp, *indexll;
gal_list_str_t *stmp, *add=NULL;
int tableformat, selecthasname=0;
size_t one=1, sortind=GAL_BLANK_SIZE_T;
size_t *selectind=NULL, *selecttype=NULL;
size_t *selectindout=NULL, *selecttypeout=NULL;
size_t i, j, k, *s, *sf, allncols, numcols, numrows;
gal_data_t *dtmp, *allcols, *inpolytmp=NULL, *outpolytmp=NULL;
/* Important note: these have to be in the same order as the 'enum
select_types' in 'main.h'. We'll fill the NULL components
afterwards. */
gal_data_t *select[SELECT_TYPE_NUMBER]={p->range, NULL, NULL,
p->equal, p->notequal,
NULL};
/* The inpolygon dataset is currently a single dataset with two elements
(strings). But we need to have it as two linked datasets with a set
name. */
if(p->inpolygon)
{
strarr=p->inpolygon->array;
inpolytmp=gal_data_alloc(NULL, GAL_TYPE_UINT8, 1, &one, NULL, 1,
-1, 1, strarr[0], NULL, NULL);
inpolytmp->next=gal_data_alloc(NULL, GAL_TYPE_UINT8, 1, &one, NULL,
1, -1, 1, strarr[1], NULL, NULL);
select[SELECT_TYPE_INPOLYGON]=inpolytmp;
}
if(p->outpolygon)
{
strarr=p->outpolygon->array;
outpolytmp=gal_data_alloc(NULL, GAL_TYPE_UINT8, 1, &one, NULL,
1, -1, 1, strarr[0], NULL, NULL);
outpolytmp->next=gal_data_alloc(NULL, GAL_TYPE_UINT8, 1, &one, NULL,
1, -1, 1, strarr[1], NULL, NULL);
select[SELECT_TYPE_OUTPOLYGON]=outpolytmp;
}
/* Get all the input table's column information. */
allcols=gal_table_info(p->filename, p->cp.hdu, lines, &numcols,
&numrows, &tableformat, "--hdu");
/* If '--noblank' is given an '_all', we should replace it with the
counters of all the input table columns. */
if(p->noblankll)
{
ui_noblank_prepare(p, numcols);
select[SELECT_TYPE_NOBLANK]=p->noblank;
}
/* Allocate necessary spaces. */
if(p->selection)
{
/* Find the number of columns that are needed for selection. */
*nselect = ( gal_list_data_number(p->range)
+ gal_list_data_number(inpolytmp)
+ gal_list_data_number(outpolytmp)
+ gal_list_data_number(p->equal)
+ gal_list_data_number(p->notequal)
+ gal_list_data_number(p->noblank) );
/* Allocate the necessary arrays. */
selectind=gal_pointer_allocate(GAL_TYPE_SIZE_T, *nselect, 0,
__func__, "selectind");
selecttype=gal_pointer_allocate(GAL_TYPE_SIZE_T, *nselect, 0,
__func__, "selecttype");
selectindout=gal_pointer_allocate(GAL_TYPE_SIZE_T, *nselect, 0,
__func__, "selectindout");
selecttypeout=gal_pointer_allocate(GAL_TYPE_SIZE_T, *nselect, 0,
__func__, "selecttypeout");
/* Initialize them to blank. */
sf=(s=selectindout)+*nselect; do *s++=GAL_BLANK_SIZE_T; while(s<sf);
/* Set the output pointers (they have already been initialized to
NULL by the caller function). */
*selectindout_out=selectindout;
*selecttypeout_out=selecttypeout;
}
/* See if the given columns are numbers or names. */
i=0;
if(p->sort) sortind=ui_check_select_sort_read_col_ind(p->sort);
if(p->selection)
for(k=0;k<SELECT_TYPE_NUMBER;++k)
for(dtmp=select[k];dtmp!=NULL;dtmp=dtmp->next)
{
selecttype[i] = k;
selectind[i] = ui_check_select_sort_read_col_ind(dtmp->name);
++i;
}
/* If the values are numbers, we'll check if the given value is less than
the total number of columns. Just note that the indexs count from
zero. */
if(p->sort && sortind!=GAL_BLANK_SIZE_T && sortind>=numcols)
error(EXIT_FAILURE, 0, "%s has %zu columns, less than the column "
"number given to '--sort' (%s)",
gal_fits_name_save_as_string(p->filename, p->cp.hdu), numcols,
p->sort);
if(p->selection)
for(i=0;i<*nselect;++i)
if(selectind[i]!=GAL_BLANK_SIZE_T && selectind[i]>=numcols)
error(EXIT_FAILURE, 0, "%s has %zu columns, less than the column "
"number given to '--range', '--inpolygon', "
"'--outpolygon', '--equal', or '--sort' (%zu)",
gal_fits_name_save_as_string(p->filename, p->cp.hdu),
numcols, selectind[i]);
/* If any of the columns isn't specified by an index, go over the table
information and set the index based on the names. */
if(p->selection)
for(i=0;i<*nselect;++i)
if(selectind[i]==GAL_BLANK_SIZE_T) { selecthasname=1; break; }
if( (p->sort && sortind==GAL_BLANK_SIZE_T) || selecthasname )
{
/* For '--sort', go over all the columns if an index hasn't been set
yet. If the input columns have a name, see if their names matches
the name given to 'sort'. */
if(p->sort && sortind==GAL_BLANK_SIZE_T)
for(i=0;i<numcols;++i)
if( allcols[i].name && !strcasecmp(allcols[i].name, p->sort) )
{ sortind=i; break; }
/* Same for the selection. Just note that here we may have multiple
calls. It is thus important to loop over the values given to range
first, then loop over the column names from the start for each new
'--ran */
i=0;
for(k=0;k<SELECT_TYPE_NUMBER;++k)
for(dtmp=select[k];dtmp!=NULL;dtmp=dtmp->next)
{
if(selectind[i]==GAL_BLANK_SIZE_T)
for(j=0;j<numcols;++j)
if( allcols[j].name
&& !strcasecmp(allcols[j].name, dtmp->name) )
{ selecttype[i]=k; selectind[i]=j; break; }
++i;
}
}
/* The columns must be good indexs now, if they don't the user didn't
specify the name properly and the program must abort. */
if( p->sort && sortind==GAL_BLANK_SIZE_T )
error(EXIT_FAILURE, 0, "%s: no column named '%s' (value to '--sort') "
"you can either specify a name or number",
gal_fits_name_save_as_string(p->filename, p->cp.hdu), p->sort);
if(p->selection)
{
i=0;
for(k=0;k<SELECT_TYPE_NUMBER;++k)
for(dtmp=select[k];dtmp!=NULL;dtmp=dtmp->next)
{
if(selectind[i]==GAL_BLANK_SIZE_T)
error(EXIT_FAILURE, 0, "%s: no column named '%s' (value to "
"'--%s') you can either specify a name or number",
gal_fits_name_save_as_string(p->filename, p->cp.hdu),
dtmp->name,
( k==0?"range":( k==1?"equal":"notequal") ));
++i;
}
}
/* See which columns the user has asked to output. */
indexll=gal_table_list_of_indexs(p->columns, allcols, numcols,
p->cp.searchin, p->cp.ignorecase,
p->filename, p->cp.hdu, NULL);
allncols=*origoutncols=gal_list_sizet_number(indexll);
/* See if the requested columns are already on the to-read list. If so,
keep the counter. */
i=0;
for(tmp=indexll; tmp!=NULL; tmp=tmp->next)
{
if(p->sort && *sortindout==GAL_BLANK_SIZE_T && tmp->v == sortind)
*sortindout=i;
if(p->selection)
for(j=0;j<*nselect;++j)
if(selectindout[j]==GAL_BLANK_SIZE_T && tmp->v==selectind[j])
{
selectindout[j]=i;
selecttypeout[j]=selecttype[j];
}
++i;
}
/* See if any of the sorting or selection columns aren't requested as an
output by the user. If there is, keep their new label.
Note that the sorting and range may be requested on the same
column. In this case, we don't want to read the same column twice. */
if( p->sort && *sortindout==GAL_BLANK_SIZE_T )
{ *sortindout=allncols++; gal_list_str_add(&add, p->sort, 0); }
if(p->selection)
{
i=0;
for(k=0;k<SELECT_TYPE_NUMBER;++k)
for(dtmp=select[k];dtmp!=NULL;dtmp=dtmp->next)
{
if( *sortindout!=GAL_BLANK_SIZE_T
&& selectindout[i]==*sortindout)
{
selecttypeout[i]=k;
selectindout[i]=*sortindout;
}
else
{
if( selectindout[i]==GAL_BLANK_SIZE_T )
{
selecttypeout[i]=k;
selectindout[i]=allncols++;
gal_list_str_add(&add, dtmp->name, 1);
}
}
++i;
}
}
/* If any new (not requested by the user to output) columns must be read,
add them to the list of columns to read from the input file. */
if(add)
{
gal_list_str_reverse(&add);
for(stmp=p->columns; stmp!=NULL; stmp=stmp->next)
if(stmp->next==NULL) { stmp->next=add; break; }
}
/* Clean up. */
gal_list_sizet_free(indexll);
if(selectind) free(selectind);
if(selecttype) free(selecttype);
gal_data_array_free(allcols, numcols, 0);
if(inpolytmp) gal_list_data_free(inpolytmp);
if(outpolytmp) gal_list_data_free(outpolytmp);
}
static void
ui_check_select_sort_after(struct tableparams *p, size_t nselect,
size_t origoutncols, size_t sortindout,
size_t *selectindout, size_t *selecttypeout)
{
size_t i, j;
struct list_select *rtmp;
gal_data_t *tmp, *origlast=NULL;
/* Allocate the necessary arrays. */
if(p->selection)
p->freeselect=gal_pointer_allocate(GAL_TYPE_UINT8, nselect, 1,
__func__, "p->freeselect");
/* Set some necessary pointers (last pointer of actual output table and
pointer to the sort column). */
i=0;
for(tmp=p->table; tmp!=NULL; tmp=tmp->next)
{
if(i==origoutncols-1) origlast=tmp;
if(p->sort && i==sortindout) p->sortcol=tmp;
++i;
}
/* The column to sort by should not be a vector column. */
if(p->sortcol && p->sortcol->ndim!=1)
error(EXIT_FAILURE, 0, "the column given to '--sort' cannot be a "
"vector column. If you need this feature, please get in "
"touch with us at '%s' to add it", PACKAGE_BUGREPORT);
/* Since we can have several selection columns, we'll treat them
differently. */
for(i=0;i<nselect;++i)
{
j=0;
for(tmp=p->table; tmp!=NULL; tmp=tmp->next)
{
if(j==selectindout[i])
{
ui_list_select_add(&p->selectcol, tmp, selecttypeout[i]);
break;
}
++j;
}
}
ui_list_select_reverse(&p->selectcol);
/* Terminate the desired output table where it should be terminated (by
setting 'origlast->next' to NULL. */
origlast->next=NULL;
/* Also, remove any possibly existing 'next' pointer for 'sortcol' and
'selectcol'. */
if(p->sort && sortindout>=origoutncols)
{ p->sortcol->next=NULL; p->freesort=1; }
else p->sortin=1;
if(p->selection)
{
i=0;
for(rtmp=p->selectcol;rtmp!=NULL;rtmp=rtmp->next)
{
if(selectindout[i]>=origoutncols)
{
rtmp->col->next=NULL;
p->freeselect[i] = (rtmp->col==p->sortcol) ? 0 : 1;
}
++i;
}
}
}
static void
ui_preparations(struct tableparams *p)
{
gal_list_str_t *lines;
size_t nselect=0, origoutncols=0;
size_t sortindout=GAL_BLANK_SIZE_T;
struct gal_options_common_params *cp=&p->cp;
size_t *selectindout=NULL, *selecttypeout=NULL;
/* If there were no columns specified or the user has asked for
information on the columns, we want the full set of columns. */
if(p->information) ui_print_info_exit(p);
if(p->infonumcols || p->infonumrows) ui_print_info_nums_exit(p);
/* If the input is from stdin, save it as 'lines'. */
lines=gal_options_check_stdin(p->filename, p->cp.stdintimeout, "input");
/* Prepare the column names. */
ui_columns_prepare(p, lines);
/* If any kind of row-selection is requested set 'p->selection' to 1. */
p->selection = ( p->range || p->inpolygon || p->outpolygon || p->equal
|| p->notequal || p->noblankll );
/* If row sorting or selection are requested, see if we should read any
extra columns. */
if(p->selection || p->sort)
ui_check_select_sort_before(p, lines, &nselect, &origoutncols,
&sortindout, &selectindout,
&selecttypeout);
/* If we have any arithmetic operations, we need to make sure how many
columns match every given column name. */
p->colmatch = ( p->colpack
? gal_pointer_allocate(GAL_TYPE_SIZE_T,
gal_list_str_number(p->columns),
1, __func__, "p->colmatch")
: NULL);
/* Read the necessary columns. */
p->table=gal_table_read(p->filename, cp->hdu, lines, p->columns,
cp->searchin, cp->ignorecase, cp->numthreads,
cp->minmapsize, p->cp.quietmmap, p->colmatch,
"--hdu");
if(p->filename==NULL) p->filename="stdin";
gal_list_str_free(lines, 1);
/* If row sorting or selection are requested, keep them as separate
datasets.*/
if(p->selection || p->sort)
ui_check_select_sort_after(p, nselect, origoutncols, sortindout,
selectindout, selecttypeout);
/* If there was no actual data in the file, then inform the user and
abort. */
if(p->table==NULL)
error(EXIT_FAILURE, 0, "%s: no usable data rows (non-commented and "
"non-blank lines)", p->filename);
/* Make sure the (possible) output name is writable. */
gal_checkset_writable_remove(p->cp.output, p->filename, 0,
p->cp.dontdelete);
/* If random rows are desired, we need to define a GSL random number
generator structure. */
if(p->rowrandom)
p->rng=gal_checkset_gsl_rng(p->envseed, &p->rng_name, &p->rng_seed);
/* Clean up. */
if(selectindout) free(selectindout);
if(selecttypeout) free(selecttypeout);
}
/**************************************************************/
/************ Set the parameters *************/
/**************************************************************/
void
ui_read_check_inputs_setup(int argc, char *argv[], struct tableparams *p)
{
struct gal_options_common_params *cp=&p->cp;
/* Include the parameters necessary for argp from this program ('args.h')
and for the common options to all Gnuastro ('commonopts.h'). We want
to directly put the pointers to the fields in 'p' and 'cp', so we are
simply including the header here to not have to use long macros in
those headers which make them hard to read and modify. This also helps
in having a clean environment: everything in those headers is only
available within the scope of this function. */
#include <gnuastro-internal/commonopts.h>
#include "args.h"
/* Initialize the options and necessary information. */
ui_initialize_options(p, program_options, gal_commonopts_options);
/* Read the command-line options and arguments. */
errno=0;
if(argp_parse(&thisargp, argc, argv, 0, 0, p))
error(EXIT_FAILURE, errno, "parsing arguments");
/* Read the configuration files and set the common values. */
gal_options_read_config_set(&p->cp);
/* Sanity check only on options. */
ui_check_only_options(p);
/* Print the option values if asked. Note that this needs to be done
after the option checks so un-sane values are not printed in the
output state. */
gal_options_print_state(&p->cp);
/* Check that the options and arguments fit well with each other. Note
that arguments don't go in a configuration file. So this test should
be done after (possibly) printing the option values. */
ui_check_options_and_arguments(p);
/* Read/allocate all the necessary starting arrays. */
ui_preparations(p);
/* Let the user know basic information if necessary (for example when a
random number generator has been used). */
if(p->rng && !p->cp.quiet)
{
/* Write the information. */
printf(PROGRAM_NAME" "PACKAGE_VERSION" started on %s",
ctime(&p->rawtime));
printf("Parameters used for '--randomrows':\n");
printf(" - Random number generator name: %s\n", p->rng_name);
printf(" - Random number generator seed: %lu\n", p->rng_seed);
printf("(use '--quiet' to suppress this starting message)\n");
}
}
/**************************************************************/
/************ Free allocated, report *************/
/**************************************************************/
void
ui_free_report(struct tableparams *p)
{
/* Free the allocated arrays: */
free(p->cp.hdu);
free(p->cp.output);
gal_list_data_free(p->table);
if(p->wcshdu) free(p->wcshdu);
gal_list_data_free(p->noblank);
gal_list_str_free(p->columns, 1);
if(p->colmatch) free(p->colmatch);
gal_list_data_free(p->colmetadata);
gal_list_str_free(p->catcolumnhdu, 1);
gal_list_str_free(p->catcolumnfile, 1);
/* If a random number generator was allocated, free it. */
if(p->rng) gsl_rng_free(p->rng);
}
|