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
|
/*
* 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 <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "coda.h"
/* Expression to be evaluated. */
static coda_expression *eval_expr = NULL;
static coda_expression_type expr_type;
/* Node expression to identify the node on which to evaluate the expression. */
static coda_expression *node_expr = NULL;
static void generate_escaped_string(const char *str, int length)
{
int i = 0;
if (length == 0 || str == NULL)
{
return;
}
if (length < 0)
{
length = (int)strlen(str);
}
while (i < length)
{
switch (str[i])
{
case '\033': /* windows does not recognize '\e' */
printf("\\e");
break;
case '\a':
printf("\\a");
break;
case '\b':
printf("\\b");
break;
case '\f':
printf("\\f");
break;
case '\n':
printf("\\n");
break;
case '\r':
printf("\\r");
break;
case '\t':
printf("\\t");
break;
case '\v':
printf("\\v");
break;
case '\\':
printf("\\\\");
break;
case '"':
printf("\\\"");
break;
default:
if (!isprint(str[i]))
{
printf("\\%03o", (int)(unsigned char)str[i]);
}
else
{
printf("%c", str[i]);
}
break;
}
i++;
}
}
static void print_version(void)
{
printf("codaeval %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(" codaeval [-D definitionpath] [<options>] expression [<files|directories>]\n");
printf(" Evaluate a CODA expression on a series of files and/or recursively on\n");
printf(" all contents of directories\n");
printf(" If no files or directories are provided then codaeval should be a\n");
printf(" 'constant' expression (i.e. it may not contain node expressions or\n");
printf(" functions that rely on product content)\n");
printf("\n");
printf(" Options:\n");
printf(" -c, --check\n");
printf(" only check the syntax of the expression, without evaluating\n");
printf(" it; any remaining options (including files) will be ignored\n");
printf(" -d, --disable_conversions\n");
printf(" do not perform unit/value conversions\n");
printf(" -p '<path>'\n");
printf(" a path (in the form of a CODA node expression) to the\n");
printf(" location in the product where the expression should be\n");
printf(" evaluated\n");
printf(" if no path is provided the expression will be evaluated\n");
printf(" at the root of the product\n");
printf("\n");
printf(" A description of the syntax of CODA expression language can be found in the\n");
printf(" CODA documentation\n");
printf("\n");
printf(" codaeval h, --help\n");
printf(" Show help (this text)\n");
printf("\n");
printf(" codaeval -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\n");
printf(" to directories containing .codadef files.\n");
printf(" By default the definition path is set to a single directory relative\n");
printf(" to 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 int eval_expression(coda_cursor *cursor)
{
switch (expr_type)
{
case coda_expression_boolean: /* boolean */
{
int value;
if (coda_expression_eval_bool(eval_expr, cursor, &value))
{
coda_set_error(CODA_ERROR_EXPRESSION, "cannot evaluate boolean expression (%s)",
coda_errno_to_string(coda_errno));
return -1;
}
printf("%s\n", (value ? "true" : "false"));
}
break;
case coda_expression_integer: /* integer */
{
int64_t value;
char s[21];
if (coda_expression_eval_integer(eval_expr, cursor, &value))
{
coda_set_error(CODA_ERROR_EXPRESSION, "cannot evaluate integer expression (%s)",
coda_errno_to_string(coda_errno));
return -1;
}
coda_str64(value, s);
printf("%s\n", s);
}
break;
case coda_expression_float: /* floating point */
{
double value;
if (coda_expression_eval_float(eval_expr, cursor, &value))
{
coda_set_error(CODA_ERROR_EXPRESSION, "cannot evaluate floating point expression (%s)",
coda_errno_to_string(coda_errno));
return -1;
}
printf("%.16g\n", value);
}
break;
case coda_expression_string: /* string */
{
char *value = NULL;
long length;
if (coda_expression_eval_string(eval_expr, cursor, &value, &length))
{
coda_set_error(CODA_ERROR_EXPRESSION, "cannot evaluate string expression (%s)",
coda_errno_to_string(coda_errno));
return -1;
}
generate_escaped_string(value, length);
printf("\n");
if (value != NULL)
{
free(value);
}
}
break;
case coda_expression_void:
case coda_expression_node:
assert(0);
exit(1);
}
return 0;
}
/* result:
* 0: continue with next product (even though we may have printed an error)
* 1: stop processing (only for an internal error or when all next files would give the same error)
*/
static int eval_expression_for_file(const char *filepath)
{
coda_product *pf = NULL;
coda_cursor cursor;
/* open the file */
if (coda_open(filepath, &pf) != 0)
{
return 1;
}
if (coda_cursor_set_product(&cursor, pf) != 0)
{
coda_close(pf);
return 1;
}
/* if we have a node expression then evaluate this here to move the cursor */
if (node_expr != NULL)
{
if (coda_expression_eval_node(node_expr, &cursor))
{
fprintf(stderr, "ERROR: could not evaluate path expression: %s\n", coda_errno_to_string(coda_errno));
coda_close(pf);
return 0;
}
}
if (eval_expression(&cursor) != 0)
{
fprintf(stderr, "ERROR: %s for %s\n", coda_errno_to_string(coda_errno), filepath);
}
if (coda_close(pf) != 0)
{
return 1;
}
return 0;
}
int callback(const char *filepath, coda_filefilter_status status, const char *error, void *userdata)
{
(void)userdata; /* prevent unused warning */
if (status == coda_ffs_error)
{
fprintf(stderr, "ERROR: %s for %s\n", error, filepath);
}
else if (status == coda_ffs_could_not_access_directory)
{
fprintf(stderr, "ERROR: unable to access directory %s\n", filepath);
}
else if (status == coda_ffs_could_not_open_file)
{
fprintf(stderr, "ERROR: could not open file %s (%s)\n", filepath, error);
}
if (status == coda_ffs_match)
{
return eval_expression_for_file(filepath);
}
return 0;
}
int main(int argc, char *argv[])
{
int perform_conversions;
int check_only;
int i;
perform_conversions = 1;
check_only = 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], "-c") == 0 || strcmp(argv[i], "--check") == 0)
{
check_only = 1;
}
else if (strcmp(argv[i], "-d") == 0 || strcmp(argv[i], "--disable_conversions") == 0)
{
perform_conversions = 0;
}
else if (strcmp(argv[i], "-p") == 0 && i + 1 < argc && argv[i + 1][0] != '-')
{
if (coda_expression_from_string(argv[i + 1], &node_expr))
{
fprintf(stderr, "ERROR: error in path expression: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
i++;
}
else if (argv[i][0] != '-')
{
/* assume all arguments from here on are the expression and the optional list of files/directories */
break;
}
else
{
fprintf(stderr, "ERROR: invalid arguments\n");
print_help();
exit(1);
}
i++;
}
/* expression parameter */
if (i >= argc)
{
fprintf(stderr, "ERROR: invalid arguments\n");
print_help();
exit(1);
}
if (coda_expression_from_string(argv[i], &eval_expr) != 0)
{
fprintf(stderr, "ERROR: error in expression: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
i++;
if (coda_expression_get_type(eval_expr, &expr_type) != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
if (expr_type == coda_expression_node || expr_type == coda_expression_void)
{
fprintf(stderr, "ERROR: expression cannot be a '%s' expression\n", coda_expression_get_type_name(expr_type));
exit(1);
}
if (check_only)
{
coda_expression_delete(eval_expr);
if (node_expr != NULL)
{
coda_expression_delete(node_expr);
}
return 0;
}
if (i < argc)
{
if (coda_init() != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
coda_set_option_perform_conversions(perform_conversions);
if (coda_match_filefilter(NULL, argc - i, (const char **)&argv[i], &callback, NULL) != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
coda_done();
}
else
{
if (node_expr != NULL)
{
fprintf(stderr, "ERROR: invalid arguments (path expression is only allowed if a file/directory list is "
"provided)\n");
exit(1);
}
if (!coda_expression_is_constant(eval_expr))
{
fprintf(stderr, "ERROR: invalid arguments (file/directory list needs to be provided if expression is not "
"a constant expression)\n");
exit(1);
}
if (eval_expression(NULL) != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
}
coda_expression_delete(eval_expr);
if (node_expr != NULL)
{
coda_expression_delete(node_expr);
}
return 0;
}
|