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
|
/*********************************************************************
Functions to check and set command line argument values and files.
This is part of GNU Astronomy Utilities (Gnuastro) package.
Original author:
Mohammad Akhlaghi <mohammad@akhlaghi.org>
Contributing author(s):
Pedram Ashofteh Ardakani <pedramardakani@pm.me>
Copyright (C) 2015-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 <stdio.h>
#include <errno.h>
#include <error.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#include <gnuastro/data.h>
#include <gnuastro/pointer.h>
#include <gnuastro-internal/timing.h>
#include <gnuastro-internal/checkset.h>
/**************************************************************/
/********** Environment ************/
/**************************************************************/
/* The GSL random number generator (RNG) reads values from the
environment. This function is designed to make the job easier for any
Gnuastro program using GSL's RNG functions. */
gsl_rng *
gal_checkset_gsl_rng(uint8_t envseed_bool, const char **name,
unsigned long int *seed)
{
gsl_rng *rng;
/* Let GSL read the environment and convert the type name (as string) to
'gsl_rng_type'. After this function, 'gsl_rng_default' contains the
generator's type and 'gsl_rng_default_seed' contains the (possibly)
given seed. */
gsl_rng_env_setup();
/* Allocate the random number generator based on the requested type and
save its name. If no 'GSL_RNG_TYPE' is set, then use a fixed
generator. */
rng=gsl_rng_alloc(secure_getenv("GSL_RNG_TYPE")
? gsl_rng_default
: gsl_rng_ranlxs1);
*name = gsl_rng_name(rng);
/* Initialize the random number generator, depending on the
'envseed_bool' argument. */
*seed = ( envseed_bool
? gsl_rng_default_seed
: gal_timing_time_based_rng_seed() );
gsl_rng_set(rng, *seed);
/* Return the GSL RNG structure. */
return rng;
}
static size_t
checkset_meminfo_line(char *line, char *keyname, size_t keylen,
char *file)
{
size_t *freemem=NULL, out=GAL_BLANK_SIZE_T;
char *linecp, *token, *units="kB", delimiters[] = " ", *saveptr;
if( !strncmp(line, keyname, keylen) )
{
/* We need to work on a copied line to avoid messing up the
contents of the actual line. */
gal_checkset_allocate_copy(line, &linecp);
/* The first token (which we don't need). */
token=strtok_r(linecp, delimiters, &saveptr);
/* The second token (which is the actual number we want). */
token=strtok_r(NULL, delimiters, &saveptr);
if(token)
{
/* Read the token as a number. */
if( gal_type_from_string((void **)(&freemem), token,
GAL_TYPE_SIZE_T) )
error(EXIT_SUCCESS, 0, "WARNING: %s: value of '%s' "
"keyword couldn't be read as an integer. Hence "
"the amount of available RAM couldn't be "
"determined. If a large volume of data is "
"provided, the program may crash. Please contact "
"us at '%s' to fix the problem",
file, keyname, PACKAGE_BUGREPORT);
else
{
/* The third token should be the units ('kB'). If it
isn't, there should be an error because we currently
assume kilobytes. */
token=strtok_r(NULL, delimiters, &saveptr);
if(token)
{
/* The units should be 'kB' (for kilobytes). */
if( !strncmp(token, units, 2) )
out=freemem[0]*1000;
else
error(EXIT_SUCCESS, 0, "WARNING: %s: the units of "
"the value of '%s' keyword is (usually 'kB') "
"isn't recognized. Hence the amount of "
"available RAM couldn't be determined. If a "
"large volume of data is provided, the "
"program may crash. Please contact us at "
"'%s' to fix the problem", file, keyname,
PACKAGE_BUGREPORT);
}
else
error(EXIT_SUCCESS, 0, "WARNING: %s: the units of the "
"value of '%s' keyword (usually 'kB') couldn't "
"be read as an integer. Hence the amount of "
"available RAM couldn't be determined. If a "
"large volume of data is provided, the program "
"may crash. Please contact us at '%s' to fix "
"the problem", file, keyname, PACKAGE_BUGREPORT);
}
/* Clean up. */
if(freemem) free(freemem);
}
else
error(EXIT_SUCCESS, 0, "WARNING: %s: line with the '%s' "
"keyword didn't have a value. Hence the amount of "
"available RAM couldn't be determined. If a large "
"volume of data is provided, the program may crash. "
"Please contact us at '%s' to fix the problem",
file, keyname, PACKAGE_BUGREPORT);
/* Clean up. */
free(linecp);
}
/* Return the value. */
return out;
}
/* On the Linux kernel, due to "overcommitting" (which is activated by
default), malloc will not return NULL when we allocate more memory than
the physically available memory. It is possible to disable overcommiting
with root permissions, but I have not been able to find any way to do
this as a normal user. So the only way is to look into the
'/proc/meminfo' file (constantly updated by the Linux kernel) and read
the available memory from that.
Note that this overcommiting apparently only occurs on Linux. From what
I have read, other kernels are much more strict and 'malloc' will indeed
return NULL if there isn't any physical RAM to support it. So if the
'/proc/meminfo' doesn't exist, we can assume that 'malloc' works as
expected, until its inverse is proven.
Most GNU/Linux distributions have 'MemAvailable', which is "an estimate
of how much memory is available for starting new applications, without
swapping" (see [1]). It is therefore the main parameter to check for
this purpose. However, on some systems (for example Ubuntu, installed
within Windows using Windows Subsystem for Linux), 'MemAvailable' is not
defined! So we will have to use 'MemFree' (which is "The amount of
physical RAM, in kibibytes, left unused by the system"; from [1]).
From that description I feel their difference is that the Linux kernel
allocates some memory for programs that it starts from the RAM
('MemAvailable'). However, 'MemFree' is the amount of free RAM
(independent of the Linux kernel; not including the "Available" space
that Linux has allocated for programs it starts). Since Windows
Subsystem for Linux doesn't use the Linux kernel, it doesn't have
'MemAvailable', and only 'MemFree'.
[1] https://lynxbee.com/understanding-proc-meminfo-analyzing-linux-memory-utilization
*/
size_t
gal_checkset_ram_available(int quietmmap)
{
FILE *file;
size_t linelen=80;
char *meminfo="/proc/meminfo", *line;
char *mastr="MemAvailable", *mfstr="MemFree";
size_t mf=GAL_BLANK_SIZE_T, ma=GAL_BLANK_SIZE_T;
size_t malen=strlen(mastr), mflen=strlen(mfstr);
/* If /proc/meminfo exists, read it. Otherwise, don't bother doing
anything. */
if ((file = fopen(meminfo, "r")))
{
/* Allocate space to read the line. */
errno=0;
line=malloc(linelen*sizeof *line);
if(line==NULL)
error(EXIT_FAILURE, errno, "%s: allocating %zu bytes for line",
__func__, linelen*sizeof *line);
/* Read it line-by-line until you find the key. */
while( getline(&line, &linelen, file) != -1
&& (ma == GAL_BLANK_SIZE_T || mf == GAL_BLANK_SIZE_T) )
{
if( ma == GAL_BLANK_SIZE_T )
ma=checkset_meminfo_line(line, mastr, malen, meminfo);
if( mf == GAL_BLANK_SIZE_T )
mf=checkset_meminfo_line(line, mfstr, mflen, meminfo);
}
/* The file existed but a keyname couldn't be found. In this case we
should inform the user to be aware that we can't automatically
determine the available memory. */
if(ma==GAL_BLANK_SIZE_T && mf==GAL_BLANK_SIZE_T && quietmmap==0)
error(EXIT_SUCCESS, 0, "WARNING: %s: didn't contain a '%s' "
"or '%s' keywords hence the amount of available RAM "
"couldn't be determined. If a large volume of data is "
"provided, the program may crash. Please contact us at "
"'%s' to fix the problem", meminfo, mastr, mfstr,
PACKAGE_BUGREPORT);
/* Close the opened file and free the line. */
free(line);
fclose(file);
}
/* If 'MemAvailable' was found, return it. Otherwise, return the value of
'MemFree'. */
return ma==GAL_BLANK_SIZE_T ? mf : ma;
}
int
gal_checkset_need_mmap(size_t bytesize, size_t minmapsize, int quietmmap)
{
int needmmap=0;
size_t availableram;
size_t minimumtommap=10000000;
size_t mustremainfree=250000000;
/* In case the given minmapsize is smaller than the default value of
'minimumtomap', then correct 'minimumtomap' to be the same as
'minmapsize' (the user has to have full control to over-write the
default value, but let them know in a warning that this is not
good). */
if(minmapsize < minimumtommap)
{
/* Let the user know that this is not a good choice and can cause
other problems. */
if(!quietmmap)
error(EXIT_SUCCESS, 0, "WARNING: it is recommended that minmapsize "
"have a value larger than %zu (it is currently %zu), see "
"\"Memory management\" section in the Gnuastro book for "
"more. To disable this warning, please use the option "
"'--quiet-mmap'", minimumtommap, minmapsize);
/* Set the variable. */
minimumtommap=minmapsize;
}
/* Memory mapping is only relevant here if the byte-size of the dataset
is larger than 'minimumtommap'. This is primarily because checking the
available memory can be expensive. */
if( bytesize >= minimumtommap )
{
/* Find the available RAM space (only relevant for Linux). */
availableram=gal_checkset_ram_available(quietmmap);
/* For a check:
printf("check: %zu (bs), %zu (ar), %zu (nu)\n",
bytesize, availableram, mustremainfree);
*/
/* If the final size is larger than the user's maximum,
or is larger than the available memory minus 500Mb (to
leave the system some breathing space!), then read the
array into disk using memory-mapping (HDD/SSD). */
if( bytesize >= minmapsize
|| availableram < mustremainfree
|| bytesize > (availableram-mustremainfree) )
needmmap=1;
}
/* Return the final choice. */
return needmmap;
}
/**************************************************************/
/********** My String functions: ************/
/**************************************************************/
int
gal_checkset_string_has_space(char *in)
{
do
switch(*in)
{
case ' ': case '\t': case '\v':
return 1;
}
while(*(++in)!='\0');
return 0;
}
void
gal_checkset_string_case_change(char *in, int toupper1_tolower0)
{
if(toupper1_tolower0) do *in=toupper(*in); while(*in++!='\0');
else do *in=tolower(*in); while(*in++!='\0');
}
char *
gal_checkset_malloc_cat(char *inname, char *toappend)
{
char *out;
size_t inl, apl;
inl=strlen(inname);
apl=strlen(toappend);
errno=0;
out=malloc(inl+apl+1);
if(out==NULL)
error(EXIT_FAILURE, errno, "%s: allocating %zu bytes", __func__,
inl+apl+1);
strcpy(out, inname);
strcat(out, toappend);
return out;
}
/* Copy the input string to the output (and also allocate the
output). */
void
gal_checkset_allocate_copy(const char *arg, char **copy)
{
if(arg)
{
errno=0;
*copy=malloc(strlen(arg)+1);
if(*copy==NULL)
error(EXIT_FAILURE, errno, "%s: %zu bytes to copy %s", __func__,
strlen(arg)+1, arg);
strcpy(*copy, arg);
}
else
*copy=NULL;
}
/* This function is mainly for reading in the arguments (from the
command line or configuration files) that need to be copied. The
set argument is for making sure that it has not already been set
before, see the main.h files of any program. */
void
gal_checkset_allocate_copy_set(char *arg, char **copy, int *set)
{
/* Incase *set==1, then you shouldn't do anything, just return. */
if(*set) return;
/* The variable was not copied, copy it: */
errno=0;
*copy=malloc(strlen(arg)+1);
if(*copy==NULL)
error(EXIT_FAILURE, errno, "%s: %zu bytes to copy %s", __func__,
strlen(arg)+1, arg);
strcpy(*copy, arg);
*set=1;
}
/* The dataset may be alone in a file (for example a table in a text file)
or it may an extension of a FITS file. In error messages in particular,
we need to differentiate between the two. This function will check the
filename and if it is FITS, it will return a string with the filename
and HDU in parenthesis. If it isn't a FITS file, it will only return the
filename. Note that the output needs to be freed, although when used in
an error message, you can leave it to the system to free the
space. There is no problem. */
char *
gal_checkset_dataset_name(char *filename, char *hdu)
{
char *out;
if( gal_fits_name_is_fits(filename) )
{
if( asprintf(&out, "%s (hdu %s)", filename, hdu)<0 )
error(EXIT_FAILURE, 0, "%s: asprintf allocation", __func__);
}
else
gal_checkset_allocate_copy(filename, &out);
return out;
}
/* Remove the given prefix from the name, then compare. If the prefix is
NULL, then this becomes a basic string comparison '!strcmp(a,b)'. */
int
gal_checkset_noprefix_isequal(char *string, char *prefix,
const char *tocompare)
{
size_t plen;
/* If the input string is empty, then this option has nothing to do
(should return false): like NaN in math, two NULLs are not equal in
this scenario. */
if(string==NULL) return 0;
if(tocompare==NULL) return 0;
/* Do the comparison. */
if(prefix)
{
/* Check if 'string' starts with 'prefix'. When it does start with
the prefix, then do the comparison for the string after the
prefix. */
plen=strlen(prefix);
if( !strncmp(string, prefix, plen) )
return !strcmp(string+plen, tocompare);
}
/* If a prefix wasn't given, OR the string didn't start with the given
prefix, then ignore the prefix and simply compare the full input
string and the 'tocompare' string. */
return !strcmp(string, tocompare);
}
/**************************************************************/
/********** Run commands ************/
/**************************************************************/
/* We are not using the 'system()' command because that call '/bin/sh',
which may not always be usable within the running environment; see
https://savannah.nongnu.org/bugs/?65677. */
int
gal_checkset_exec(char *executable_abs_address, gal_list_str_t *args)
{
pid_t pid;
char **argv;
int childstat=0;
gal_list_str_t *tmp;
size_t i, numargs=gal_list_str_number(args);
/* Allocate the array */
argv=gal_pointer_allocate(GAL_TYPE_STRING, numargs+1, 0,
__func__, "argv");
/* Fill the argument list array. */
tmp=args;
for(i=0;i<numargs;++i){ argv[i]=tmp->v; tmp=tmp->next; }
argv[numargs]=NULL;
/* Fork a new process to run 'exec'. */
pid=fork();
if(pid<0) error(EXIT_FAILURE, 0, "%s: could not build fork", __func__);
if(pid==0) execv(executable_abs_address, argv); /* Child. */
else waitpid(pid, &childstat, 0); /* Parent. */
/* Return the status of the child. */
free(argv);
return childstat;
}
/**************************************************************/
/********** Common dataset formats ************/
/**************************************************************/
/* All functions dealing with labels in Gnuastro assume it to be
int32. This function is a common preparation step. */
gal_data_t *
gal_checkset_labels_to_int32(gal_data_t *input, const char *funcname)
{
gal_data_t *out;
/* Make sure the type of the input is correct. */
if(input->type==GAL_TYPE_FLOAT32 || input->type==GAL_TYPE_FLOAT64)
error(EXIT_FAILURE, 0, "%s: the input input dataset must have "
"an integer type not floating point", __func__);
if( input->type==GAL_TYPE_INT64
|| input->type==GAL_TYPE_UINT32
|| input->type==GAL_TYPE_UINT64 )
error(EXIT_FAILURE, 0, "%s: the input input dataset must not be "
"larger int32, but it has a type of '%s'", __func__,
gal_type_name(input->type, 1));
/* In case the input labels is not a signed 32-bit integer, copy it to
this type and return it. */
out = ( input->type==GAL_TYPE_INT32
? input
: gal_data_copy_to_new_type(input, GAL_TYPE_INT32) );
return out;
}
/**************************************************************/
/********** Set file names and check if they exist ************/
/**************************************************************/
/* Given a filename, this function will separate its directory name
part. */
char *
gal_checkset_dir_part(char *filename)
{
char *out;
size_t i, l=strlen(filename);
/* Find the first slash from the end. */
for(i=l;i!=0;--i)
if(filename[i]=='/')
break;
/* If there was no slash, then the current directory should be
given: */
if(i==0 && filename[0]!='/')
gal_checkset_allocate_copy("./", &out);
else
{
gal_checkset_allocate_copy(filename, &out);
out[i+1]='\0';
}
return out;
}
/* Given a file name, keep the non-directory part. Note that if there
is no forward slash in the input name, the full input name is
considered to be the notdir output. */
char *
gal_checkset_not_dir_part(char *filename)
{
size_t i, l;
char *out, *tmp=filename;
/* Find the first '/' to identify the directory. */
l=strlen(filename);
for(i=l;i!=0;--i)
if(filename[i]=='/')
{ tmp=&filename[i+1]; break; }
/* Get the length of the notdir name: */
l=strlen(tmp);
errno=0;
out=malloc((l+1)*sizeof *out);
if(out==NULL)
error(EXIT_FAILURE, errno, "%s: %zu bytes for notdir", __func__,
(l+1)*sizeof *out);
strcpy(out, tmp);
return out;
}
/* Make an allocated copy of the input string, then remove the suffix from
that string. */
char *
gal_checkset_suffix_separate(char *name, char **outsuffix)
{
char *c, *out=NULL, *suffix=NULL;
/* Make a copy of the input. */
gal_checkset_allocate_copy(name, &out);
/* Parse the string from the end and stop when we hit a '.'. */
c=out+strlen(out)-1;
while(c!=out)
{
/* As soon as we hit the first '.' take a copy of the string after it
and put it in 'suffix'. */
if(*c=='.')
{
gal_checkset_allocate_copy(c, &suffix);
*c='\0';
break;
}
--c;
}
/* Put the 'suffix' in the output pointer and return the string with no
suffix. */
*outsuffix=suffix;
return out;
}
/* Given a reference filename, add a format of AAAAA-XXXXXX.CCCC where
'AAAAA' is the base name of the 'reference' argument, 'XXXXX' is a
random/unique sequence of characters, and 'YYYYY' is the string given to
'suffix'. If 'suffix' is NULL, the suffix of 'reference' will be used. */
char *
gal_checkset_make_unique_suffix(char *reference, char *suffix)
{
int tmpnamefile;
char *nosuff, *tmpname;
char *out=NULL, *insuffix;
/* Remove the suffix. */
nosuff=gal_checkset_suffix_separate(reference, &insuffix);
/* First generate the input to 'mkstemp' (the 'XXXXXX's will be replaced
with a unique set of strings with same number of characters). */
if( asprintf(&tmpname, "%s-XXXXXX", nosuff)<0 )
error(EXIT_FAILURE, 0, "%s: asprintf allocation", __func__);
/* Generate the unique name with 'mkstemp', but it will actually open the
file (to make sure that the name is not used), so we need to close it
afterwards. */
tmpnamefile=mkstemp(tmpname);
errno=0;
if( close(tmpnamefile) != 0 )
error(EXIT_FAILURE, errno, "couldn't close temporary file");
/* Delete the temporarily created file. */
remove(tmpname);
/* Add the suffix. */
out = ( suffix
? gal_checkset_malloc_cat(tmpname, suffix)
: ( insuffix
? gal_checkset_malloc_cat(tmpname, insuffix)
: tmpname ) );
/* Clean up and return the output. */
if(tmpname!=out) free(tmpname);
if(insuffix) free(insuffix);
free(nosuff);
return out;
}
/* Check if a file exists and report if it doesn't. */
void
gal_checkset_check_file(char *filename)
{
FILE *tmpfile;
errno=0;
tmpfile = fopen(filename, "r");
if(tmpfile) /* The file opened. */
{
if(fclose(tmpfile)==EOF)
error(EXIT_FAILURE, errno, "%s", filename);
}
else
error(EXIT_FAILURE, errno, "%s", filename);
}
/* Similar to 'gal_checkset_check_file', but will report the result instead
of doing it quietly. */
int
gal_checkset_check_file_return(char *filename)
{
FILE *tmpfile;
errno=0;
tmpfile = fopen(filename, "r");
if(tmpfile) /* The file opened. */
{
if(fclose(tmpfile)==EOF)
error(EXIT_FAILURE, errno, "%s", filename);
return 1;
}
else
return 0;
}
/* If a file doesn't exist and its directory is writable, return
1. Otherwise, return 0. */
int
gal_checkset_writable_notexist(char *filename)
{
int out=1;
char *dir;
FILE *tmpfile;
/* If the filename is 'NULL' everything is ok (it doesn't exist)! In some
cases, a NULL filename is interpretted to mean standard output. */
if(filename==NULL) return 1;
/* We want to make sure that we can open and write to this file. But
the user might have asked to not delete the file, so the
contents should not be changed. Therefore we have to open it with
'r+'. */
errno=0;
tmpfile=fopen(filename, "r+");
if (tmpfile) /* The file opened. */
{
/* Close the file. */
errno=0;
if(fclose(tmpfile))
error(EXIT_FAILURE, errno, "%s", filename);
/* The file exists, return 0. */
out=0;
}
/* If the file doesn't exist, we just need to make sure if we have write
permissions to its host directory. */
else
{
/* Separate the directory part of the filename. */
dir=gal_checkset_dir_part(filename);
/* See if this directory is writable by this user. */
errno=0;
if( access(dir, W_OK) ) out=0;
/* Clean up. */
free(dir);
}
/* Return the final value. */
return out;
}
/* Check if a file exists and can be opened. If the 'keep' value is
non-zero, then the file will remain untouched, otherwise, it will be
deleted (since most programs need to make a clean output). When the file
is to be deleted and 'dontdelete' has a non-zero value, then the file
won't be deleted, but the program will abort with an error, informing
the user that the output can't be made. */
void
gal_checkset_writable_remove(char *filename, char *basename, int keep,
int dontdelete)
{
char *dir;
FILE *tmpfile;
/* If the filename is 'NULL' everything is ok (it doesn't exist)! In some
cases, a NULL filename is interpretted to mean standard output. */
if(filename==NULL)
return;
/* If a base-name was given, then this name may be related to the input's
name. In that case, we should check if they are the same string. */
if(basename)
if( !strcmp(filename, basename) )
error(EXIT_FAILURE, 0, "the output filename name ('%s') is the same "
"as the input's file name! The output file is re-written if "
"it already exists. Therefore, when the input and output file "
"names are the same there is a problem! Please select a "
"different output name", filename);
/* We want to make sure that we can open and write to this file. But
the user might have asked to not delete the file, so the
contents should not be changed. Therefore we have to open it with
'r+'. */
errno=0;
tmpfile=fopen(filename, "r+");
if (tmpfile) /* The file opened. */
{
/* Close the file. */
errno=0;
if(fclose(tmpfile))
error(EXIT_FAILURE, errno, "%s", filename);
/* See if the file should be deleted. */
if(keep==0)
{
/* Make sure it is ok to delete the file. */
if(dontdelete)
error(EXIT_FAILURE, 0, "%s already exists and you have "
"asked to not remove it with the '--dontdelete' "
"('-D') option", filename);
/* Delete the file: */
errno=0;
if(unlink(filename))
error(EXIT_FAILURE, errno, "%s", filename);
}
}
/* If the file doesn't exist, we just need to make sure if we have write
permissions to its host directory. */
else
{
/* Separate the directory part of the filename. */
dir=gal_checkset_dir_part(filename);
/* Make sure this directory is writable by this user. */
errno=0;
if( access(dir, W_OK) )
error(EXIT_FAILURE, errno, "cannot create any file(s) in the "
"directory '%s'", dir);
/* Clean up. */
free(dir);
}
}
/* Check output file name: If a file exists or can exist and can be
written to, this function will return 1. If not (for example it is
a directory) it will return 0. Finally, if it exists but cannot be
deleted, report an error and abort. */
int
gal_checkset_dir_0_file_1(struct gal_options_common_params *cp, char *name,
char *basename)
{
FILE *tmpfile;
struct stat nameinfo;
if(name==NULL)
error(EXIT_FAILURE, 0, "%s: a bug! The input should not be NULL. "
"Please contact us at %s so we can see what went wrong and "
"fix it in future updates", __func__, PACKAGE_BUGREPORT);
errno=0;
if(stat(name, &nameinfo)!=0)
{
if(errno==ENOENT) /* ENOENT: No such file or directory. */
{/* Make the file temporarily and see if everything is ok. */
errno=0;
tmpfile=fopen(name, "w");
if (tmpfile)
{
fprintf(tmpfile, "Only to test write access.");
errno=0;
if(fclose(tmpfile))
error(EXIT_FAILURE, errno, "%s", name);
errno=0;
if(unlink(name))
error(EXIT_FAILURE, errno, "%s", name);
}
else
error(EXIT_FAILURE, errno, "%s", name);
return 1; /* It is a file name, GOOD. */
}
else /* Some strange condition, ABORT. */
error(EXIT_FAILURE, errno, "%s", name);
}
if(S_ISDIR(nameinfo.st_mode)) /* It is a directory, BAD. */
return 0;
else if (S_ISREG(nameinfo.st_mode)) /* It is a file, GOOD. */
{
gal_checkset_writable_remove(name, basename, cp->keep, cp->dontdelete);
return 1;
}
else /* Not a file or a dir, ABORT. */
error(EXIT_FAILURE, 0, "%s not a file or a directory", name);
error(EXIT_FAILURE, 0, "%s: a bug! The process should not reach the end "
"of the function! Please contact us at %s so we can see what went "
"wrong and fix it in future updates", __func__, PACKAGE_BUGREPORT);
return 0;
}
/* Allocate space and write the output name (outname) based on a given
input name (inname). The suffix of the input name (if present) will
be removed and the given suffix will be put in the end. */
char *
gal_checkset_automatic_output(struct gal_options_common_params *cp,
char *inname, char *suffix)
{
char *out;
size_t i, l, offset=0;
/* Merge the contents of the input name and suffix name (while also
allocating the necessary space). */
out=gal_checkset_malloc_cat(inname, suffix);
/* If there is actually a suffix, replace it with the (possibly) existing
suffix. */
if(suffix)
{
/* Start from the end of the input array. */
l=strlen(inname);
for(i=l-1;i!=0;--i)
{
/* We don't want to touch anything before a '/' (directory
names). We are only concerned with file names here. */
if(out[i]=='/')
{
/* When '/' is the last input character, then the input is
clearly not a filename, but a directory name. In this
case, adding a suffix is meaningless (a suffix belongs to
a filename for Gnuastro's tools). So close the string
after the '/' and leave the loop. However, if the '/'
isn't the last input name charector, there is probably a
filename (without a "." suffix), so break from the
loop. No further action is required, since we initially
allocated the necessary space and concatenated the input
and suffix arrays. */
if(i==l-1)
out[i+1]='\0';
break;
}
/* The input file names can be compressed names (for example
'.fits.gz'). Currently the only compressed formats
(decompressed within CFITSIO) are listed in
'gal_fits_name_is_fits' and 'gal_fits_suffix_is_fits'. */
else if(out[i]=='.' && !( ( out[i+1]=='g' && out[i+2]=='z' )
|| (out[i+1]=='f' && out[i+2]=='z' )
|| out[i+1]=='Z' ) )
{
out[i]='\0';
strcat(out, suffix);
break;
}
}
}
/* If we don't want the input directory information, remove them
here. */
if(!cp->keepinputdir)
{
l=strlen(out);
for(i=l;i!=0;--i) /* Find the last forward slash. */
if(out[i]=='/')
{offset=i+1; break;}
if(offset)
for(i=offset;i<=l;++i) /* <= because we want to shift the */
out[i-offset]=out[i]; /* '\0' character in the string too. */
}
/* Remove the created filename if it already exits. */
gal_checkset_writable_remove(out, inname, cp->keep, cp->dontdelete);
/* Return the resulting filename. */
return out;
}
/* Check write-ability by trying to make a temporary file. Return 0 if the
directory is writable, and 'errno' if it isn't. We won't be using
'facccessat' because its not available on some systems (macOS 10.9 and
earlier, see https://github.com/conda-forge/staged-recipes/pull/9723
). */
static int
checkset_directory_writable(char *dirname)
{
int file_d;
int errnum=0;
char *tmpname;
/* Set the template for the temporary file (accounting for the possible
extra '/'). */
if(dirname[strlen(dirname)-1]=='/')
tmpname=gal_checkset_malloc_cat(dirname, "gnuastroXXXXXX");
else
tmpname=gal_checkset_malloc_cat(dirname, "/gnuastroXXXXXX");
/* Make the temporary file (with the temporary name) and open it. */
errno=0;
file_d=mkstemp(tmpname);
/* See if the file was opened (and thus created). */
if(file_d==-1) errnum=errno;
else
{ /* The file was created, close the file. */
errno=0;
if( close(file_d) == -1 ) errnum=errno;
else
{/* The file was closed, delete it. */
errno=0;
if(unlink(tmpname)==-1) errnum=errno;
}
}
/* Return the final value. */
return errnum;
}
/* Check if dirname is actually a real directory and that we can
actually write inside of it. To insure all conditions an actual
file will be made. */
void
gal_checkset_check_dir_write_add_slash(char **dirname)
{
int file_d;
char *tmpname, *indir=*dirname/*, buf[]="A test"*/;
/* Set the template for the temporary file: */
if(indir[strlen(indir)-1]=='/')
tmpname=gal_checkset_malloc_cat(indir, "gnuastroXXXXXX");
else
tmpname=gal_checkset_malloc_cat(indir, "/gnuastroXXXXXX");
/* Make a temporary file name and try openning it. */
errno=0;
file_d=mkstemp(tmpname);
if(file_d==-1)
error(EXIT_FAILURE, errno, "cannot write output in the directory "
"%s", indir);
/*
errno=0;
printf("\n\n%s\n\n", tmpname);
if( write(file_d, buf, strlen(buf)) == -1 )
error(EXIT_FAILURE, errno, "%s: writing to this temporary file to "
"check the given '%s' directory", tmpname, indir);
*/
errno=0;
if( close(file_d) == -1 )
error(EXIT_FAILURE, errno, "%s: Closing this temporary file to check "
"the given '%s' directory", tmpname, indir);
/* Delete the temporary file: */
errno=0;
if(unlink(tmpname)==-1)
error(EXIT_FAILURE, errno, "%s: removing this temporary file made "
"to check the given '%s directory'", tmpname, indir);
/* Remove the extra characters that were added for the random name. */
tmpname[strlen(tmpname)-14]='\0';
free(*dirname);
*dirname=tmpname;
}
/* If the given directory exists and is writable, then nothing is done and
this function returns 0. If it doesn't, it will be created. If it fails
at creating the file, or the file isn't writable it returns a non-zero
value: the errno, which can be directly used in 'error'. */
int
gal_checkset_mkdir(char *dirname)
{
int errnum=0;
struct stat st={0};
/* See if the directory exists. */
if( stat(dirname, &st) == -1 )
{ /* The directory doesn't exist, try making it. */
errno=0;
if( mkdir(dirname, 0700) == -1 )
errnum=errno;
}
else
/* The directory exists, see if its writable. */
errnum=checkset_directory_writable(dirname);
/* Return the final 'errno'. */
return errnum;
}
/* Timestamp the file name (or any other string) with a YYYY-MM-DD prefix
and a HH-MM-SS suffix. This is useful in making temporary debugging
files during a program. The 'filename' is wrapped between the dates so
it is easy to sort files by name and easily seperate files by their date
and name, where the same files will be stacked regardless of their
creation hour. */
char *
gal_checkset_timestamp(char *filename, char *newext)
{
time_t t;
struct tm *now;
char suffix[20], prefix[20], *top, *rawname, *oldext;
/* Parse time */
time( &t );
now=localtime( &t );
strftime(prefix, 20, "%Y-%m-%d_", now);
strftime(suffix, 20, "_%H-%M-%S", now);
/* If parsing a filename, take care of its parent directory and
update the extension. */
top=gal_checkset_dir_part(filename);
rawname=gal_checkset_not_dir_part(filename);
filename=gal_checkset_suffix_separate(rawname, &oldext);
filename=gal_checkset_malloc_cat(filename, suffix);
filename=gal_checkset_malloc_cat(prefix, filename);
filename=gal_checkset_malloc_cat(top, filename);
if(newext) filename=gal_checkset_malloc_cat(filename, newext);
else filename=gal_checkset_malloc_cat(filename, oldext);
return filename;
}
|