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
|
/*
* Copyright (C) 2007-2024 S[&]T, The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "coda.h"
/* internal CODA functions */
int coda_cursor_print_path(const coda_cursor *cursor, int (*print)(const char *, ...));
int coda_product_check(coda_product *product, int full_read_check,
void (*callbackfunc)(coda_cursor *, const char *, void *), void *userdata);
int option_verbose;
int option_quick;
int option_require_definition;
int found_errors;
static void print_version(void)
{
printf("codacheck version %s\n", libcoda_version);
printf("Copyright (C) 2007-2024 S[&]T, The Netherlands.\n");
printf("\n");
}
static void print_help(void)
{
printf("Usage:\n");
printf(" codacheck [-D definitionpath] [<options>] <files>\n");
printf(" Provide a basic sanity check on product files supported by CODA\n");
printf(" Options:\n");
printf(" -d, --definition\n");
printf(" require products to have a definition in a codadef file,\n");
printf(" return an error and abort verification otherwise\n");
printf(" (affects products using formats such as xml/netcdf/hdf)\n");
printf(" -q, --quick\n");
printf(" only perform a quick check of the product\n");
printf(" (do not traverse the full product)\n");
printf(" -V, --verbose\n");
printf(" show more information while performing the check\n");
printf(" --no-mmap\n");
printf(" disable the use of mmap when opening files\n");
printf("\n");
printf(" If you pass a '-' for the <files> section then the list of files will\n");
printf(" be read from stdin.\n");
printf("\n");
printf(" codacheck -h, --help\n");
printf(" Show help (this text)\n");
printf("\n");
printf(" codacheck -v, --version\n");
printf(" Print the version number of CODA and exit\n");
printf("\n");
printf(" CODA will look for .codadef files using a definition path, which is a ':'\n");
printf(" separated (';' on Windows) list of paths to .codadef files and/or to\n");
printf(" directories containing .codadef files.\n");
printf(" By default the definition path is set to a single directory relative to\n");
printf(" the tool location. A different definition path can be set via the\n");
printf(" CODA_DEFINITION environment variable or via the -D option.\n");
printf(" (the -D option overrides the environment variable setting).\n");
printf("\n");
}
static void print_error(coda_cursor *cursor, const char *error, void *userdata)
{
(void)userdata; /* prevent unused warning */
printf(" ERROR: %s", error);
if (cursor != NULL)
{
printf(" at ");
coda_cursor_print_path(cursor, printf);
}
printf("\n");
found_errors = 1;
}
static void check_file(char *filename)
{
coda_product *product;
coda_format format;
int64_t file_size;
const char *product_class;
const char *product_type;
int version;
int result;
printf("%s\n", filename);
if (coda_recognize_file(filename, &file_size, &format, &product_class, &product_type, &version) != 0)
{
printf(" ERROR: %s\n\n", coda_errno_to_string(coda_errno));
coda_set_error(CODA_SUCCESS, NULL);
found_errors = 1;
return;
}
if (option_require_definition && (product_class == NULL || product_type == NULL))
{
printf(" ERROR: could not determine product type\n\n");
found_errors = 1;
return;
}
if (option_verbose)
{
printf(" product format: %s", coda_type_get_format_name(format));
if (product_class != NULL && product_type != NULL)
{
printf(" %s/%s v%d", product_class, product_type, version);
}
printf("\n");
}
result = coda_open(filename, &product);
if (result != 0 && coda_errno == CODA_ERROR_FILE_OPEN)
{
/* maybe not enough memory space to map the file in memory =>
* temporarily disable memory mapping of files and try again
*/
coda_set_option_use_mmap(0);
result = coda_open(filename, &product);
coda_set_option_use_mmap(1);
}
if (result != 0)
{
printf(" ERROR: %s\n\n", coda_errno_to_string(coda_errno));
found_errors = 1;
return;
}
if (coda_product_check(product, !option_quick, print_error, NULL) != 0)
{
printf(" ERROR: %s\n\n", coda_errno_to_string(coda_errno));
found_errors = 1;
coda_close(product);
return;
}
if (coda_close(product) != 0)
{
printf(" ERROR: %s\n", coda_errno_to_string(coda_errno));
found_errors = 1;
return;
}
printf("\n");
}
int main(int argc, char *argv[])
{
int option_stdin;
int option_use_mmap;
int i;
option_stdin = 0;
option_verbose = 0;
option_quick = 0;
option_use_mmap = 1;
option_require_definition = 0;
if (argc == 1 || strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--help") == 0)
{
print_help();
exit(0);
}
if (strcmp(argv[1], "-v") == 0 || strcmp(argv[1], "--version") == 0)
{
print_version();
exit(0);
}
i = 1;
if (i + 1 < argc && strcmp(argv[i], "-D") == 0)
{
coda_set_definition_path(argv[i + 1]);
i += 2;
}
else
{
const char *definition_path = "../share/" PACKAGE "/definitions";
if (coda_set_definition_path_conditional(argv[0], NULL, definition_path) != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
}
while (i < argc)
{
if (strcmp(argv[i], "-V") == 0 || strcmp(argv[i], "--verbose") == 0)
{
option_verbose = 1;
}
else if (strcmp(argv[i], "-q") == 0 || strcmp(argv[i], "--quick") == 0)
{
option_quick = 1;
}
else if (strcmp(argv[i], "-d") == 0 || strcmp(argv[i], "--definition") == 0)
{
option_require_definition = 1;
}
else if (strcmp(argv[i], "--no-mmap") == 0)
{
option_use_mmap = 0;
}
else if (strcmp(argv[i], "-") == 0 && i == argc - 1)
{
option_stdin = 1;
break;
}
else if (argv[i][0] != '-')
{
/* assume all arguments from here on are files */
break;
}
else
{
fprintf(stderr, "ERROR: invalid arguments\n");
print_help();
exit(1);
}
i++;
}
if (coda_init() != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
/* The codacheck program should never navigate beyond the array bounds.
* We therefore disable to boundary check option to increase performance.
* Mind that this option does not influence the out-of-bounds check that CODA performs to ensure
* that a read is performed using a byte offset/size that is within the limits of the total file size.
*/
coda_set_option_perform_boundary_checks(0);
/* We disable conversions since this speeds up the check of reading all numerical data */
coda_set_option_perform_conversions(0);
/* Set mmap based on the chosen option */
coda_set_option_use_mmap(option_use_mmap);
if (option_stdin)
{
char filename[1000];
char c;
do
{
int k;
k = 0;
for (;;)
{
c = getchar();
if (c == '\r')
{
char c2;
c2 = getchar();
/* test for '\r\n' combination */
if (c2 != '\n')
{
/* if the second char is not '\n' put it back in the read buffer */
ungetc(c2, stdin);
}
}
if (c == EOF || c == '\n' || c == '\r')
{
filename[k] = '\0';
break;
}
filename[k] = c;
k++;
assert(k < 1000);
}
if (k > 0)
{
check_file(filename);
fflush(NULL);
}
} while (c != EOF);
}
else
{
while (i < argc)
{
check_file(argv[i]);
fflush(NULL);
i++;
}
}
coda_done();
if (found_errors)
{
exit(1);
}
return 0;
}
|