Commit | Line | Data |
---|---|---|
01310af2 FB |
1 | /* |
2 | * Various utilities for command line tools | |
3 | * Copyright (c) 2000-2003 Fabrice Bellard | |
4 | * | |
5 | * This library is free software; you can redistribute it and/or | |
6 | * modify it under the terms of the GNU Lesser General Public | |
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2 of the License, or (at your option) any later version. | |
9 | * | |
10 | * This library is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
16 | * License along with this library; if not, write to the Free Software | |
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | */ | |
02d504a7 | 19 | #define HAVE_AV_CONFIG_H |
01310af2 FB |
20 | #include "common.h" |
21 | #include "avformat.h" | |
22 | ||
23 | #include "cmdutils.h" | |
24 | ||
02d504a7 | 25 | void show_help_options(const OptionDef *options, const char *msg, int mask, int value) |
01310af2 FB |
26 | { |
27 | const OptionDef *po; | |
02d504a7 | 28 | int first; |
01310af2 | 29 | |
02d504a7 FB |
30 | first = 1; |
31 | for(po = options; po->name != NULL; po++) { | |
32 | char buf[64]; | |
33 | if ((po->flags & mask) == value) { | |
34 | if (first) { | |
35 | printf("%s", msg); | |
36 | first = 0; | |
37 | } | |
38 | strcpy(buf, po->name); | |
39 | if (po->flags & HAS_ARG) { | |
40 | strcat(buf, " "); | |
41 | strcat(buf, po->argname); | |
01310af2 | 42 | } |
02d504a7 | 43 | printf("-%-17s %s\n", buf, po->help); |
01310af2 FB |
44 | } |
45 | } | |
46 | } | |
47 | ||
48 | void parse_options(int argc, char **argv, const OptionDef *options) | |
49 | { | |
50 | const char *opt, *arg; | |
51 | int optindex; | |
52 | const OptionDef *po; | |
53 | ||
54 | /* parse options */ | |
55 | optindex = 1; | |
56 | while (optindex < argc) { | |
57 | opt = argv[optindex++]; | |
58 | ||
59 | if (opt[0] == '-' && opt[1] != '\0') { | |
60 | po = options; | |
61 | while (po->name != NULL) { | |
62 | if (!strcmp(opt + 1, po->name)) | |
63 | break; | |
64 | po++; | |
65 | } | |
66 | if (!po->name) { | |
67 | fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], opt); | |
68 | exit(1); | |
69 | } | |
70 | arg = NULL; | |
71 | if (po->flags & HAS_ARG) { | |
72 | arg = argv[optindex++]; | |
73 | if (!arg) { | |
74 | fprintf(stderr, "%s: missing argument for option '%s'\n", argv[0], opt); | |
75 | exit(1); | |
76 | } | |
77 | } | |
78 | if (po->flags & OPT_STRING) { | |
79 | char *str; | |
02d504a7 | 80 | str = av_strdup(arg); |
01310af2 FB |
81 | *po->u.str_arg = str; |
82 | } else if (po->flags & OPT_BOOL) { | |
83 | *po->u.int_arg = 1; | |
84 | } else { | |
85 | po->u.func_arg(arg); | |
86 | } | |
87 | } else { | |
88 | parse_arg_file(opt); | |
89 | } | |
90 | } | |
91 | } | |
92 | ||
93 | void print_error(const char *filename, int err) | |
94 | { | |
95 | switch(err) { | |
96 | case AVERROR_NUMEXPECTED: | |
97 | fprintf(stderr, "%s: Incorrect image filename syntax.\n" | |
98 | "Use '%%d' to specify the image number:\n" | |
99 | " for img1.jpg, img2.jpg, ..., use 'img%%d.jpg';\n" | |
100 | " for img001.jpg, img002.jpg, ..., use 'img%%03d.jpg'.\n", | |
101 | filename); | |
102 | break; | |
103 | case AVERROR_INVALIDDATA: | |
104 | fprintf(stderr, "%s: Error while parsing header\n", filename); | |
105 | break; | |
106 | case AVERROR_NOFMT: | |
107 | fprintf(stderr, "%s: Unknown format\n", filename); | |
108 | break; | |
109 | default: | |
110 | fprintf(stderr, "%s: Error while opening file\n", filename); | |
111 | break; | |
112 | } | |
113 | } |