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
|
/**********************************************************************
* *
* Cross platform 'tail' program to deal with h5dump writing a *
* filename to the first line of its output. *
* *
* J.Sloan *
* *
**********************************************************************
* *
* This program 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 2 of *
* the License, or (at your option) any later version. *
* *
* This program 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 this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA *
* 02111-1307 USA *
* *
**********************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
* MA 02110-1301 USA *
* *
**********************************************************************
* *
* YOU MAY REDISTRIBUTE THE CBFLIB PACKAGE UNDER THE TERMS OF THE GPL *
* *
* ALTERNATIVELY YOU MAY REDISTRIBUTE THE CBFLIB API UNDER THE TERMS *
* OF THE LGPL *
* *
*********************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
Filter to remove the first few lines from a file without needing to read the whole thing into memory.
This is only present to help get cmake to compare hdf5 files:
h5diff doesn't work properly with certain attribute differences, forcing h5dump to be used. h5dump always
puts the filename on the first line. Cmake has no nice cross-platform 'tail' command, so for two dumped
files to compare equal the first line must be stripped. Cmake's file & string functions would read the
entire file into memory and be incredibly difficult (or impossible) to use, so this seems to be the least
painful way of getting rid of the filename printed by h5dump.
*/
int main(const int argc, const char * const * const argv)
{
/* variables
N - number of lines to remove from the top of stdin: default = 0
help - flag to print help message:
0 - don't
1 - print it
2 - print and exit successfully
error - error code:
0 - success
1 - problem
arg - the argument currently being examined. Skip the program name if we have any arguments, I don't want to try to parse it.
*/
unsigned long N = 0;
int help = 0;
int error = 0;
const char * const * arg = argv + (argc ? 1 : 0);
const char * file_in = NULL;
const char * file_out = NULL;
FILE * in = stdin;
FILE * out = stdout;
/* extract command line arguments */
for (; !error && arg != argv+argc; ++arg) {
if (!strcmp(*arg,"-?") || !strcmp(*arg,"--help")) {
help = 1;
break;
} else if (!strcmp(*arg,"-n")) {
/* try to extract a positive integer from argv[2], set N appropriately */
if (arg+1 != argv+argc) {
const char * end;
++arg;
N = strtoul(*arg,(char**)(&end),0);
if (!('\0' != **arg && '\0' == *end)) {
fprintf(stderr,"Invalid argument for '-n': '%s'\n",*arg);
error = 1;
}
} else {
fprintf(stderr,"Expected an argument for '-n'\n");
error = 1;
}
} else if (!strcmp(*arg,"-i")) {
/* extract an input file name to replace the 'in' stream */
if (arg+1 != argv+argc) {
++arg;
file_in = *arg;
} else {
fprintf(stderr,"Expected an argument for '-n'\n");
error = 1;
}
} else if (!strcmp(*arg,"-o")) {
/* extract an output file name to replace the 'out' stream */
if (arg+1 != argv+argc) {
++arg;
file_out = *arg;
} else {
fprintf(stderr,"Expected an argument for '-n'\n");
error = 1;
}
} else {
/* print error message to stderr */
fprintf(stderr,"Unrecognised argument: '%s'\n",*arg);
error = 1;
break;
}
}
if (file_in) {
if (!(in = fopen(file_in,"r"))) {
fprintf(stderr,"Couldn't open file: '%s'\n",file_in);
error = 1;
}
}
if (file_out) {
if (!(out = fopen(file_out,"w"))) {
fprintf(stderr,"Couldn't open file: '%s'\n",file_out);
error = 1;
}
}
if (help || error) {
/* print usage message */
printf(
"Usage:\n"
"\t%s [-n <integer>] [-i input_file] [-o output_file] [-?|--help]\n"
"\t-i input_file\n"
"Read data from the file specified by 'input_file', or from stdin if not specified."
"\t-o output_file\n"
"Write data to the file specified by 'output_file', or to stdout if not specified."
"\t-n <integer>\n"
"Remove the first 'n' lines from the input file/stream, delimited by the '\\n' character, passing the rest to the outout file/stream.\n"
"\t-? | --help\n"
"Print a short usage message, then immediately exit successfully without filtering anything.\n",
*argv
);
/* return successfully - even if there were some errors in the arguments - if one of the 'help' arguments was used */
if (help) return 0;
}
if (!error) {
/* start filtering */
while (!feof(in)) {
const int c = fgetc(in);
if (N) {
if ('\n' == c) --N;
} else fputc(c,out);
}
}
/* no cleanup required */
/* done */
return error;
}
|