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
|
/*
* 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 "coda.h"
static int verbosity;
static void print_version(void)
{
printf("codafind %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(" codafind [-D definitionpath] [<options>] <files|directories>\n");
printf(" Match a filter on a series of files and/or recursively on all contents\n");
printf(" of directories\n");
printf("\n");
printf(" Options:\n");
printf(" -d, --disable_conversions\n");
printf(" do not perform unit/value conversions\n");
printf(" -f, --filter '<filter expression>'\n");
printf(" restrict the output to data that matches the filter\n");
printf(" if no filter is provided codafind will find all files that\n");
printf(" can be opened with CODA\n");
printf(" -V, --verbose\n");
printf(" show the match result for each file\n");
printf("\n");
printf(" codafind -h, --help\n");
printf(" Show help (this text)\n");
printf("\n");
printf(" codafind -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");
}
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, "%s: %s\n", filepath, error);
}
else if (status == coda_ffs_could_not_access_directory)
{
fprintf(stderr, "%s: unable to access directory\n", filepath);
}
else if (status == coda_ffs_could_not_open_file)
{
fprintf(stderr, "%s: could not open file (%s)\n", filepath, error);
}
else if (verbosity)
{
printf("%s -> ", filepath);
switch (status)
{
case coda_ffs_error:
case coda_ffs_could_not_access_directory:
case coda_ffs_could_not_open_file:
/* this case is already handled above */
assert(0);
break;
case coda_ffs_unsupported_file:
printf("unsupported product\n");
break;
case coda_ffs_no_match:
printf("no match\n");
break;
case coda_ffs_match:
printf("match\n");
break;
}
}
else
{
if (status == coda_ffs_match)
{
printf("%s\n", filepath);
}
}
return 0;
}
int main(int argc, char *argv[])
{
char *filter = NULL;
int perform_conversions;
int i;
verbosity = 0;
perform_conversions = 1;
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], "-d") == 0 || strcmp(argv[i], "--disable_conversions") == 0)
{
perform_conversions = 0;
}
else if ((strcmp(argv[i], "-f") == 0 || strcmp(argv[i], "--filter") == 0) &&
i + 1 < argc && argv[i + 1][0] != '-')
{
filter = argv[i + 1];
i++;
}
else if (strcmp(argv[i], "-V") == 0 || strcmp(argv[i], "--verbosity") == 0)
{
verbosity = 1;
}
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 (i == argc)
{
/* no files or directories provided */
fprintf(stderr, "ERROR: invalid arguments\n");
print_help();
exit(1);
}
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(filter, argc - i, (const char **)&argv[i], &callback, NULL) != 0)
{
fprintf(stderr, "ERROR: %s\n", coda_errno_to_string(coda_errno));
exit(1);
}
coda_done();
return 0;
}
|