2 * Copyright (c) 2012 Stefano Sabatini
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 #include <unistd.h> /* getopt */
31 #include "libavutil/log.h"
32 #include "libavutil/bprint.h"
33 #include "libavutil/mem.h"
36 #include "compat/getopt.c"
44 static void usage(void)
46 printf("Escape an input string, adopting the av_get_token() escaping logic\n");
47 printf("usage: ffescape [OPTIONS]\n");
50 "-e echo each input line on output\n"
51 "-f flag select an escape flag, can assume the values 'whitespace' and 'strict'\n"
52 "-h print this help\n"
53 "-i INFILE set INFILE as input file, stdin if omitted\n"
54 "-l LEVEL set the number of escaping levels, 1 if omitted\n"
55 "-m ESCAPE_MODE select escape mode between 'auto', 'backslash', 'quote'\n"
56 "-o OUTFILE set OUTFILE as output file, stdout if omitted\n"
57 "-p PROMPT set output prompt, is '=> ' by default\n"
58 "-s SPECIAL_CHARS set the list of special characters\n");
61 int main(int argc
, char **argv
)
64 char *src_buf
, *dst_buf
;
65 const char *outfilename
= NULL
, *infilename
= NULL
;
66 FILE *outfile
= NULL
, *infile
= NULL
;
67 const char *prompt
= "=> ";
68 enum AVEscapeMode escape_mode
= AV_ESCAPE_MODE_AUTO
;
72 char *special_chars
= NULL
;
75 while ((c
= getopt(argc
, argv
, "ef:hi:l:o:m:p:s:")) != -1) {
87 if (!strcmp(optarg
, "whitespace")) escape_flags
|= AV_ESCAPE_FLAG_WHITESPACE
;
88 else if (!strcmp(optarg
, "strict")) escape_flags
|= AV_ESCAPE_FLAG_STRICT
;
89 else if (!strcmp(optarg
, "xml_single_quotes")) escape_flags
|= AV_ESCAPE_FLAG_XML_SINGLE_QUOTES
;
90 else if (!strcmp(optarg
, "xml_double_quotes")) escape_flags
|= AV_ESCAPE_FLAG_XML_DOUBLE_QUOTES
;
92 av_log(NULL
, AV_LOG_ERROR
,
93 "Invalid value '%s' for option -f, "
94 "valid arguments are 'whitespace', and 'strict'\n", optarg
);
101 long int li
= strtol(optarg
, &tail
, 10);
102 if (*tail
|| li
> INT_MAX
|| li
< 0) {
103 av_log(NULL
, AV_LOG_ERROR
,
104 "Invalid value '%s' for option -l, argument must be a non negative integer\n",
112 if (!strcmp(optarg
, "auto")) escape_mode
= AV_ESCAPE_MODE_AUTO
;
113 else if (!strcmp(optarg
, "backslash")) escape_mode
= AV_ESCAPE_MODE_BACKSLASH
;
114 else if (!strcmp(optarg
, "quote")) escape_mode
= AV_ESCAPE_MODE_QUOTE
;
115 else if (!strcmp(optarg
, "xml")) escape_mode
= AV_ESCAPE_MODE_XML
;
117 av_log(NULL
, AV_LOG_ERROR
,
118 "Invalid value '%s' for option -m, "
119 "valid arguments are 'backslash', and 'quote'\n", optarg
);
124 outfilename
= optarg
;
130 special_chars
= optarg
;
137 if (!infilename
|| !strcmp(infilename
, "-")) {
138 infilename
= "stdin";
141 infile
= fopen(infilename
, "r");
144 av_log(NULL
, AV_LOG_ERROR
, "Impossible to open input file '%s': %s\n", infilename
, strerror(errno
));
148 if (!outfilename
|| !strcmp(outfilename
, "-")) {
149 outfilename
= "stdout";
152 outfile
= fopen(outfilename
, "w");
155 av_log(NULL
, AV_LOG_ERROR
, "Impossible to open output file '%s': %s\n", outfilename
, strerror(errno
));
159 /* grab the input and store it in src */
160 av_bprint_init(&src
, 1, AV_BPRINT_SIZE_UNLIMITED
);
161 while ((c
= fgetc(infile
)) != EOF
)
162 av_bprint_chars(&src
, c
, 1);
163 av_bprint_chars(&src
, 0, 1);
165 if (!av_bprint_is_complete(&src
)) {
166 av_log(NULL
, AV_LOG_ERROR
, "Could not allocate a buffer for the source string\n");
167 av_bprint_finalize(&src
, NULL
);
170 av_bprint_finalize(&src
, &src_buf
);
173 fprintf(outfile
, "%s", src_buf
);
178 if (av_escape(&dst_buf
, src_buf
, special_chars
, escape_mode
, escape_flags
) < 0) {
179 av_log(NULL
, AV_LOG_ERROR
, "Could not escape string\n");
186 fprintf(outfile
, "%s%s", prompt
, dst_buf
);