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
|
/*********************************************************************
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/>.
**********************************************************************/
#ifndef __GAL_CHECKSET_H__
#define __GAL_CHECKSET_H__
/* Include other headers if necessary here. Note that other header files
must be included before the C++ preparations below */
#include <math.h>
#include <fitsio.h>
#include <gsl/gsl_rng.h>
#include <gnuastro-internal/options.h>
/* C++ Preparations */
#undef __BEGIN_C_DECLS
#undef __END_C_DECLS
#ifdef __cplusplus
# define __BEGIN_C_DECLS extern "C" {
# define __END_C_DECLS }
#else
# define __BEGIN_C_DECLS /* empty */
# define __END_C_DECLS /* empty */
#endif
/* End of C++ preparations */
/* Actual header contants (the above were for the Pre-processor). */
__BEGIN_C_DECLS /* From C++ preparations */
/**************************************************************/
/********** Environment ************/
/**************************************************************/
gsl_rng *
gal_checkset_gsl_rng(uint8_t envseed_bool, const char **name,
unsigned long int *seed);
size_t
gal_checkset_ram_available(int quietmmap);
int
gal_checkset_need_mmap(size_t bytesize, size_t minmapsize, int quietmmap);
/**************************************************************/
/********** Check fixed strings ************/
/**************************************************************/
void
gal_checkset_known_types(char *optarg, int *type, char *filename,
size_t lineno);
/**************************************************************/
/********** My String functions: ************/
/**************************************************************/
int
gal_checkset_string_has_space(char *in);
void
gal_checkset_string_case_change(char *in, int toupper1_tolower0);
char *
gal_checkset_malloc_cat(char *inname, char *toappend);
void
gal_checkset_allocate_copy(const char *arg, char **copy);
void
gal_checkset_allocate_copy_set(char *arg, char **copy, int *set);
char *
gal_checkset_dataset_name(char *filename, char *hdu);
char *
gal_checkset_timestamp(char *filename, char *newext);
int
gal_checkset_noprefix_isequal(char *string, char *prefix,
const char *tocompare);
/**************************************************************/
/********** Run commands ************/
/**************************************************************/
int
gal_checkset_exec(char *executable_abs_address, gal_list_str_t *args);
/**************************************************************/
/********** Common dataset formats ************/
/**************************************************************/
gal_data_t *
gal_checkset_labels_to_int32(gal_data_t *input, const char *funcname);
/**************************************************************/
/********** Set file names and check if they exist ************/
/**************************************************************/
char *
gal_checkset_dir_part(char *filename);
char *
gal_checkset_not_dir_part(char *filename);
char *
gal_checkset_suffix_separate(char *name, char **suffix);
char *
gal_checkset_make_unique_suffix(char *reference, char *suffix);
void
gal_checkset_check_file(char *filename);
int
gal_checkset_check_file_return(char *filename);
int
gal_checkset_writable_notexist(char *filename);
void /* keep==0 && dontdelete==0: file will be deleted if exists.*/
gal_checkset_writable_remove(char *filename, char *basename, int keep,
int dontdelete);
int
gal_checkset_dir_0_file_1(struct gal_options_common_params *cp, char *name,
char *basename);
char *
gal_checkset_automatic_output(struct gal_options_common_params *cp,
char *inname, char *suffix);
void
gal_checkset_check_dir_write_add_slash(char **dirname);
int
gal_checkset_mkdir(char *dirname);
__END_C_DECLS /* From C++ preparations */
#endif /* __GAL_CHECKSET_H__ */
|