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
|
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "extern.hh"
#include "private.hh"
#include "gr.hh"
#include "types.hh"
#include "files.hh"
#include "DataFile.hh"
#include "superus.hh"
// Push a new cmd file onto the stack. Return NO if cannot load the file.
bool
push_cmd_file(const char* fname, bool interactive, bool allow_warning, const char* status)
{
if (!fname)
gr_Error("empty command-file name");
CmdFile cf;
FILE *the_fp;
// Open file, unless it's "stdin", which is already open
if (!strcmp(fname, "stdin")) {
the_fp = stdin;
} else {
FILE *thefile = fopen(fname, status);
if (thefile) { // Can open file
the_fp = thefile;
} else { // Cannot open file
if (allow_warning) {
warning("Can't open command-file `\\", fname, "'", "\\");
}
return false;
}
}
cf.set(fname, the_fp, interactive, 0);
_cmdFILE.push_back(cf);
return true;
}
#if !defined(MSDOS)
static bool
is_compressed_file(std::string& fname)
{
if (fname.size() < 3)
return false;
std::string last_three(fname, fname.size()-3, fname.size()-1);
if (last_three == ".gz")
return true;
return false;
}
#endif
// Push a new data file onto the stack.
// The 'delete_when_close' is just a suggestion (true for output
// from system commands). Even if it is false, if we detect
// here that a system command must be called, we'll still
// remove the file when done.
bool
push_data_file(const char* name, DataFile::type the_type, const char* status, bool delete_when_close)
{
if (((unsigned) superuser()) & FLAG_AUT1)printf("\n DEBUG %s:%d push_data_file(%s,...) ...\n",__FILE__,__LINE__,name);
if (the_type == DataFile::bin_netcdf) {
#if !defined(HAVE_LIBNETCDF)
// This may be redundant; see openCmd
err("`open ... netCDF' impossible since Gri not compiled with netCDF library");
return false;
#else
ncopts = NC_VERBOSE; // Set external flag to live if error
int file_id = ncopen(name, NC_NOWRITE);
if (file_id == -1)
return false;
DataFile df((FILE*)NULL, name, file_id, the_type, delete_when_close);
_dataFILE.push_back(df);
#endif
} else {
#if defined(MSDOS)
// For MSDOS binary files, status must be of the form "rb"
char status2[10];
strcpy(status2, status);
if (the_type != DataFile::ascii)
strcat(status2, "b");
FILE *fp = fopen(name, status2);
if (NULL == fp)
return false;
DataFile df(fp, name, 0, the_type, delete_when_close);
_dataFILE.push_back(df);
#else
std::string sname(name);
if (is_compressed_file(sname)) {
std::string pipecmd("zcat ");
pipecmd.append(sname);
pipecmd.append(" > ");
std::string tmpfile_name(tmp_file_name());
pipecmd.append(tmpfile_name);
call_the_OS(pipecmd.c_str(), __FILE__, __LINE__);
FILE *fp = fopen(tmpfile_name.c_str(), status);
if (NULL == fp) {
err("Cannot open file `\\", tmpfile_name.c_str(), "'.", "\\");
return false;
}
DataFile df(fp, tmpfile_name.c_str(), 0, the_type, true);
_dataFILE.push_back(df);
} else {
FILE *fp = fopen(name, status);
if (NULL != fp) {
DataFile df(fp, name, 0, the_type, delete_when_close);
_dataFILE.push_back(df);
} else {
//printf("DEBUG: %s:%d ... error is '%s'\n", __FILE__, __LINE__, strerror(errno));
if (errno == EMFILE) { // ref: 'man errno'
err("Cannot open file `\\", name, "' since there are too many open files.", "\\");
return false;
}
#if !defined(HAVE_ACCESS)
return false; // just give up then
#else
std::string sname(name);
sname.append(".gz");
if (0 != access(sname.c_str(), R_OK)) {
warning("Cannot access file `\\", name, "'",
" or a compressed version `", sname.c_str(), "'",
"\\");
return false; // failure
}
warning("`open' can't find `\\", name, "' so using `",
sname.c_str(), "' instead.", "\\");
std::string pipecmd("zcat ");
pipecmd.append(sname);
std::string tmpfile_name(tmp_file_name());
pipecmd.append(" > ");
pipecmd.append(tmpfile_name);
call_the_OS(pipecmd.c_str(), __FILE__, __LINE__);
fp = fopen(tmpfile_name.c_str(), status);
if (NULL == fp) {
//printf("%s:%d 2222 Cannot open. err is '%s'\n", __FILE__, __LINE__, strerror(errno));
return false;
}
DataFile df(fp, tmpfile_name.c_str(), 0, the_type, true);
_dataFILE.push_back(df);
#endif
}
}
#endif
}
update_readfrom_file_name();
return true;
}
int
data_file_index(const char* name)
{
std::string completefilename(name);
resolve_filename(completefilename, true, 'd');
for (unsigned int i = 0; i < _dataFILE.size(); i++)
if (_dataFILE[i].get_name() == completefilename)
return i;
return -1;
}
// Reorder data-file stack so named file is ready for reading
bool
push_data_file_to_top(const char* filename)
{
int i = data_file_index(filename);
if (((unsigned) superuser()) & FLAG_AUT1)printf("\n DEBUG: %s:%d push_data_file_to_top(%s). This is the %d file stack_len= %d\n",__FILE__,__LINE__,filename, i, int(_dataFILE.size()));
if (i == -1)
return false;
DataFile n(_dataFILE.back());
_dataFILE.back() = _dataFILE[i];
_dataFILE[i] = n;
return true;
}
// Remove a file from the data-file stack.
bool
pop_data_file(int file)
{
if (((unsigned) superuser()) & FLAG_AUT1)printf("\n DEBUG: %s:%d pop_data_file(file= %3d) fp= %x stack_len= %d\n",__FILE__,__LINE__,file, int(_dataFILE[file].get_fp()), int(_dataFILE.size()));
if (file < 0) {
err("No such data file exists");
return false;
}
if (_dataFILE[file].get_type() == DataFile::from_cmdfile) {
err("Internal gri error [file.c][pop_data_file]: No data file open");
return false;
}
if (file > int(_dataFILE.size())) {
err("Internal gri error [file.cc/pop_data_file()]: Data stack overflow");
return false;
}
if (_dataFILE[file].get_type() == DataFile::bin_netcdf) {
#if defined(HAVE_LIBNETCDF)
int success = ncclose(_dataFILE[file].get_netCDF_id());
if (success == -1) {
err("Internal gri error: cannot close netCDF file `\\",
_dataFILE[file].get_name(), "'", "\\");
return false;
}
#else
err("Gri internal error: attempting to use nonexistent netCDF library");
return false;
#endif
} else {
if (_dataFILE[file].get_fp() == stdin) {
fatal_err("pop_data_file() is trying to close stdin");
exit(1);
} else {
if (EOF == fclose(_dataFILE[file].get_fp())) {
fatal_err("pop_data_file() cannot close a data file reason \"\\", strerror(errno), "\".", "\\");
exit(1);
}
}
}
if (_dataFILE[file].get_delete_when_close()) {
if (_chatty > 1) {
std::string msg("Deleting temporary file named `");
msg.append(_dataFILE[file].get_name());
msg.append("'");
ShowStr(msg.c_str());
}
std::string sys_cmd("rm -f ");
sys_cmd.append(_dataFILE[file].get_name());
call_the_OS(sys_cmd.c_str(), __FILE__, __LINE__);
}
//display_data_stack("BEFORE the erasure of a file\n");
_dataFILE.erase(_dataFILE.begin() + file);
//display_data_stack("AFTER the erasure\n");
return true;
}
void
display_data_stack(const char* s)
{
printf("%s", s);
unsigned int n = _dataFILE.size();
if (n == 0)
printf("Data file stack is empty\n");
else {
printf("Data file stack is as follows:\n");
for (unsigned int i = 0; i < n; i++)
printf(" file name= '%s' type= %d delete_when_close= %d fp= %x\n", _dataFILE[i].get_name(), int(_dataFILE[i].get_type()),int(_dataFILE[i].get_delete_when_close()), int(_dataFILE[i].get_fp()));
}
}
void
display_cmd_stack(const char* s)
{
unsigned int i, n = _cmdFILE.size();
printf("%s Command file stack is as follows:\n", s);
for (i = 0; i < n; i++)
printf("%s file [%s]\n", s, _cmdFILE[i].get_name());
}
void
close_data_files()
{
int n = _dataFILE.size();
if (((unsigned) superuser()) & FLAG_AUT1)printf("\n DEBUG: %s:%d in close_data_files() about to dispose %d files\n",__FILE__,__LINE__,n);
for (int i = n - 1; i >= 0; i--) {
if (_dataFILE[i].get_type() != DataFile::from_cmdfile) {
pop_data_file(i);
}
}
if (!_drawingstarted)
delete_ps_file();
}
|