blob: 84c62088928ec50cdf881c3df769cc99640b4715 [file] [log] [blame]
anthony1cdc5b72012-03-03 02:31:18 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% SSS CCC RRRR III PPPP TTTTT TTTTT OOO K K EEEE N N %
6% S C R R I P P T T O O K K E NN N %
7% SSS C RRRR I PPPP T T O O KK EEE N N N %
8% S C R R I P T T O O K K E N NN %
9% SSSS CCC R RR III P T T OOO K K EEEE N N %
10% %
anthony756cd0d2012-04-08 12:41:44 +000011% Tokenize Magick Script into Options %
anthony1cdc5b72012-03-03 02:31:18 +000012% %
13% Dragon Computing %
14% Anthony Thyssen %
15% January 2012 %
16% %
17% %
Cristyf775a5c2019-11-26 14:27:47 -050018% Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization %
anthony1cdc5b72012-03-03 02:31:18 +000019% dedicated to making software imaging solutions freely available. %
20% %
21% You may not use this file except in compliance with the License. You may %
22% obtain a copy of the License at %
23% %
Cristy9ddfcca2018-09-09 19:46:34 -040024% https://imagemagick.org/script/license.php %
anthony1cdc5b72012-03-03 02:31:18 +000025% %
26% Unless required by applicable law or agreed to in writing, software %
27% distributed under the License is distributed on an "AS IS" BASIS, %
28% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
29% See the License for the specific language governing permissions and %
30% limitations under the License. %
31% %
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33%
anthony756cd0d2012-04-08 12:41:44 +000034% Read a stream of characters and return tokens one at a time.
35%
36% The input stream is dived into individual 'tokens' (representing 'words' or
37% 'options'), in a way that is as close to a UNIX shell, as is feasable.
38% Only shell variable, and command substitutions will not be performed.
39% Tokens can be any length.
40%
41% The main function call is GetScriptToken() (see below) whcih returns one
42% and only one token at a time. The other functions provide support to this
43% function, opening scripts, and seting up the required structures.
44%
45% More specifically...
46%
47% Tokens are white space separated, and may be quoted, or even partially
48% quoted by either single or double quotes, or the use of backslashes,
49% or any mix of the three.
50%
51% For example: This\ is' a 'single" token"
52%
53% A token is returned immediatally the end of token is found. That is as soon
54% as a unquoted white-space or EOF condition has been found. That is to say
55% the file stream is parsed purely character-by-character, regardless any
56% buffering constraints set by the system. It is not parsed line-by-line.
57%
58% The function will return 'MagickTrue' if a valid token was found, while
59% the token status will be set accordingally to 'OK' or 'EOF', according to
60% the cause of the end of token. The token may be an empty string if the
61% input was a quoted empty string. Other error conditions return a value of
62% MagickFalse, indicating any token found but was incomplete due to some
63% error condition.
64%
65% Single quotes will preserve all characters including backslashes. Double
66% quotes will also preserve backslashes unless escaping a double quote,
67% or another backslashes. Other shell meta-characters are not treated as
68% special by this tokenizer.
69%
70% For example Quoting the quote chars:
71% \' "'" \" '"' "\"" \\ '\' "\\"
72%
73% Outside quotes, backslash characters will make spaces, tabs and quotes part
74% of a token returned. However a backslash at the end of a line (and outside
75% quotes) will cause the newline to be completely ignored (as per the shell
76% line continuation).
77%
78% Comments start with a '#' character at the start of a new token, will be
79% completely ignored upto the end of line, regardless of any backslash at the
80% end of the line. You can escape a comment '#', using quotes or backlsashes
81% just as you can in a shell.
82%
anthony11401cf2012-05-29 03:28:40 +000083% The parser will accept both newlines, returns, or return-newlines to mark
84% the EOL. Though this is technically breaking (or perhaps adding to) the
85% 'BASH' syntax that is being followed.
86%
anthonyd28c6a62012-05-08 00:12:56 +000087%
88% UNIX script Launcher...
89%
anthony11401cf2012-05-29 03:28:40 +000090% The use of '#' comments allow normal UNIX 'scripting' to be used to call on
anthonyd28c6a62012-05-08 00:12:56 +000091% the "magick" command to parse the tokens from a file
anthony756cd0d2012-04-08 12:41:44 +000092%
93% #!/path/to/command/magick -script
94%
anthonyd28c6a62012-05-08 00:12:56 +000095%
96% UNIX 'env' command launcher...
97%
98% If "magick" is renamed "magick-script" you can use a 'env' UNIX launcher
anthony756cd0d2012-04-08 12:41:44 +000099%
100% #!/usr/bin/env magick-script
101%
anthonyd28c6a62012-05-08 00:12:56 +0000102%
anthony11401cf2012-05-29 03:28:40 +0000103% Shell script launcher...
anthonyd28c6a62012-05-08 00:12:56 +0000104%
anthony756cd0d2012-04-08 12:41:44 +0000105% As a special case a ':' at the start of a line is also treated as a comment
106% This allows a magick script to ignore a line that can be parsed by the shell
107% and not by the magick script (tokenizer). This allows for an alternative
anthonyd28c6a62012-05-08 00:12:56 +0000108% script 'launcher' to be used for magick scripts.
anthony756cd0d2012-04-08 12:41:44 +0000109%
110% #!/bin/sh
anthony11401cf2012-05-29 03:28:40 +0000111% :; exec magick -script "$0" "$@"; exit 10
112% #
113% # The rest of the file is magick script
114% -read label:"This is a Magick Script!"
115% -write show: -exit
116%
117% Or with some shell pre/post processing...
118%
119% #!/bin/sh
120% :; echo "This part is run in the shell, but ignored by Magick"
121% :; magick -script "$0" "$@"
122% :; echo "This is run after the "magick" script is finished!"
123% :; exit 10
anthony756cd0d2012-04-08 12:41:44 +0000124% #
anthonyd28c6a62012-05-08 00:12:56 +0000125% # The rest of the file is magick script
126% -read label:"This is a Magick Script!"
127% -write show: -exit
128%
129%
130% DOS script launcher...
131%
anthony2a86c9b2012-09-11 23:17:56 +0000132% Similarly any '@' at the start of the line (outside of quotes) will also be
anthony4aeb4ba2012-09-11 23:19:02 +0000133% treated as comment. This allow you to create a DOS script launcher, to
134% allow a ".bat" DOS scripts to run as "magick" scripts instead.
anthonyd28c6a62012-05-08 00:12:56 +0000135%
136% @echo This line is DOS executed but ignored by Magick
137% @magick -script %~dpnx0 %*
anthony11401cf2012-05-29 03:28:40 +0000138% @echo This line is processed after the Magick script is finished
anthonyd28c6a62012-05-08 00:12:56 +0000139% @GOTO :EOF
140% #
141% # The rest of the file is magick script
anthony756cd0d2012-04-08 12:41:44 +0000142% -read label:"This is a Magick Script!"
143% -write show: -exit
anthony1cdc5b72012-03-03 02:31:18 +0000144%
anthony11401cf2012-05-29 03:28:40 +0000145% But this can also be used as a shell script launcher as well!
146% Though is more restrictive and less free-form than using ':'.
anthony78f480f2012-05-08 00:15:24 +0000147%
anthony11401cf2012-05-29 03:28:40 +0000148% #!/bin/sh
anthony78f480f2012-05-08 00:15:24 +0000149% @() { exec magick -script "$@"; }
150% @ "$0" "$@"; exit
151% #
152% # The rest of the file is magick script
153% -read label:"This is a Magick Script!"
154% -write show: -exit
155%
anthony11401cf2012-05-29 03:28:40 +0000156% Or even like this...
157%
158% #!/bin/sh
159% @() { }
160% @; exec magick -script "$0" "$@"; exit
161% #
162% # The rest of the file is magick script
163% -read label:"This is a Magick Script!"
164% -write show: -exit
165%
anthony1cdc5b72012-03-03 02:31:18 +0000166*/
167
168/*
169 Include declarations.
anthony76369f62012-03-29 05:04:08 +0000170
171 NOTE: Do not include if being compiled into the "test/script-token-test.c"
172 module, for low level token testing.
anthony1cdc5b72012-03-03 02:31:18 +0000173*/
anthonya5c23a82012-03-29 05:01:52 +0000174#ifndef SCRIPT_TOKEN_TESTING
175# include "MagickWand/studio.h"
176# include "MagickWand/MagickWand.h"
177# include "MagickWand/script-token.h"
178# include "MagickCore/string-private.h"
179# include "MagickCore/utility-private.h"
180#endif
anthony1cdc5b72012-03-03 02:31:18 +0000181
182/*
183%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
184% %
185% %
186% %
187% A c q u i r e S c r i p t T o k e n I n f o %
188% %
189% %
190% %
191%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
192%
193% AcquireScriptTokenInfo() allocated, initializes and opens the given
194% file stream from which tokens are to be extracted.
195%
196% The format of the AcquireScriptTokenInfo method is:
197%
198% ScriptTokenInfo *AcquireScriptTokenInfo(char *filename)
199%
200% A description of each parameter follows:
201%
202% o filename the filename to open ("-" means stdin)
203%
204*/
anthonya322a832013-04-27 06:28:03 +0000205WandExport ScriptTokenInfo *AcquireScriptTokenInfo(const char *filename)
anthony1cdc5b72012-03-03 02:31:18 +0000206{
207 ScriptTokenInfo
208 *token_info;
209
210 token_info=(ScriptTokenInfo *) AcquireMagickMemory(sizeof(*token_info));
211 if (token_info == (ScriptTokenInfo *) NULL)
212 return token_info;
Cristy81bfff22018-03-10 07:58:31 -0500213 (void) memset(token_info,0,sizeof(*token_info));
anthony1cdc5b72012-03-03 02:31:18 +0000214
215 token_info->opened=MagickFalse;
216 if ( LocaleCompare(filename,"-") == 0 ) {
217 token_info->stream=stdin;
218 token_info->opened=MagickFalse;
219 }
anthony1cdc5b72012-03-03 02:31:18 +0000220 else if ( LocaleNCompare(filename,"fd:",3) == 0 ) {
221 token_info->stream=fdopen(StringToLong(filename+3),"r");
222 token_info->opened=MagickFalse;
223 }
anthony1cdc5b72012-03-03 02:31:18 +0000224 else {
anthony7bcfe7f2012-03-30 14:01:22 +0000225 token_info->stream=fopen_utf8(filename, "r");
anthony1cdc5b72012-03-03 02:31:18 +0000226 }
cristyf432c632014-12-07 15:11:28 +0000227 if ( token_info->stream == (FILE *) NULL ) {
anthony1cdc5b72012-03-03 02:31:18 +0000228 token_info=(ScriptTokenInfo *) RelinquishMagickMemory(token_info);
229 return(token_info);
230 }
231
232 token_info->curr_line=1;
233 token_info->length=INITAL_TOKEN_LENGTH;
234 token_info->token=(char *) AcquireMagickMemory(token_info->length);
235
cristyf432c632014-12-07 15:11:28 +0000236 token_info->status=(token_info->token != (char *) NULL)
anthony1cdc5b72012-03-03 02:31:18 +0000237 ? TokenStatusOK : TokenStatusMemoryFailed;
cristye1c94d92015-06-28 12:16:33 +0000238 token_info->signature=MagickWandSignature;
anthony1cdc5b72012-03-03 02:31:18 +0000239
240 return token_info;
241}
242
243/*
244%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
245% %
246% %
247% %
248% D e s t r o y S c r i p t T o k e n I n f o %
249% %
250% %
251% %
252%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
253%
254% DestroyScriptTokenInfo() allocated, initializes and opens the given
255% file stream from which tokens are to be extracted.
256%
257% The format of the DestroyScriptTokenInfo method is:
258%
259% ScriptTokenInfo *DestroyScriptTokenInfo(ScriptTokenInfo *token_info)
260%
261% A description of each parameter follows:
262%
263% o token_info The ScriptTokenInfo structure to be destroyed
264%
265*/
266WandExport ScriptTokenInfo * DestroyScriptTokenInfo(ScriptTokenInfo *token_info)
267{
268 assert(token_info != (ScriptTokenInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000269 assert(token_info->signature == MagickWandSignature);
anthony1cdc5b72012-03-03 02:31:18 +0000270
271 if ( token_info->opened != MagickFalse )
272 fclose(token_info->stream);
273
274 if (token_info->token != (char *) NULL )
cristyaa2c16c2012-03-25 22:21:35 +0000275 token_info->token=(char *) RelinquishMagickMemory(token_info->token);
anthony1cdc5b72012-03-03 02:31:18 +0000276 token_info=(ScriptTokenInfo *) RelinquishMagickMemory(token_info);
277 return(token_info);
278}
279
280/*
281%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
282% %
283% %
284% %
285% G e t S c r i p t T o k e n %
286% %
287% %
288% %
289%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
290%
anthony756cd0d2012-04-08 12:41:44 +0000291% GetScriptToken() a fairly general, finite state token parser. That returns
292% tokens one at a time, as soon as posible.
anthony52bef752012-03-27 13:54:47 +0000293%
294%
anthony1cdc5b72012-03-03 02:31:18 +0000295% The format of the GetScriptToken method is:
296%
297% MagickBooleanType GetScriptToken(ScriptTokenInfo *token_info)
298%
299% A description of each parameter follows:
300%
301% o token_info pointer to a structure holding token details
302%
303*/
304/* States of the parser */
305#define IN_WHITE 0
306#define IN_TOKEN 1
307#define IN_QUOTE 2
308#define IN_COMMENT 3
309
anthony799889a2012-03-11 11:00:32 +0000310/* Macro to read character from stream
311
312 This also keeps track of the line and column counts.
313 The EOL is defined as either '\r\n', or '\r', or '\n'.
314 A '\r' on its own is converted into a '\n' to correctly handle
315 raw input, typically due to 'copy-n-paste' of text files.
anthony3731b342012-04-19 05:12:09 +0000316 But a '\r\n' sequence is left ASIS for string handling
anthony799889a2012-03-11 11:00:32 +0000317*/
anthony1cdc5b72012-03-03 02:31:18 +0000318#define GetChar(c) \
319{ \
320 c=fgetc(token_info->stream); \
321 token_info->curr_column++; \
anthony799889a2012-03-11 11:00:32 +0000322 if ( c == '\r' ) { \
323 c=fgetc(token_info->stream); \
324 ungetc(c,token_info->stream); \
325 c = (c!='\n')?'\n':'\r'; \
326 } \
anthony1cdc5b72012-03-03 02:31:18 +0000327 if ( c == '\n' ) \
328 token_info->curr_line++, token_info->curr_column=0; \
329 if (c == EOF ) \
330 break; \
331 if ( (c>='\0' && c<'\a') || (c>'\r' && c<' ' && c!='\033') ) { \
332 token_info->status=TokenStatusBinary; \
333 break; \
334 } \
335}
336/* macro to collect the token characters */
337#define SaveChar(c) \
338{ \
339 if ((size_t) offset >= (token_info->length-1)) { \
cristy151b66d2015-04-15 10:50:31 +0000340 if ( token_info->length >= MagickPathExtent ) \
341 token_info->length += MagickPathExtent; \
anthony1cdc5b72012-03-03 02:31:18 +0000342 else \
343 token_info->length *= 4; \
344 token_info->token = (char *) \
345 ResizeMagickMemory(token_info->token, token_info->length); \
cristyf432c632014-12-07 15:11:28 +0000346 if ( token_info->token == (char *) NULL ) { \
anthony1cdc5b72012-03-03 02:31:18 +0000347 token_info->status=TokenStatusMemoryFailed; \
348 break; \
349 } \
350 } \
351 token_info->token[offset++]=(char) (c); \
352}
353
354WandExport MagickBooleanType GetScriptToken(ScriptTokenInfo *token_info)
355{
356 int
357 quote,
358 c;
359
360 int
361 state;
362
363 ssize_t
364 offset;
365
366 /* EOF - no more tokens! */
cristy4d246fc2014-01-15 22:33:44 +0000367 if (token_info == (ScriptTokenInfo *) NULL)
368 return(MagickFalse);
anthony1cdc5b72012-03-03 02:31:18 +0000369 if (token_info->status != TokenStatusOK)
370 {
371 token_info->token[0]='\0';
372 return(MagickFalse);
373 }
anthony1cdc5b72012-03-03 02:31:18 +0000374 state=IN_WHITE;
375 quote='\0';
376 offset=0;
dirk93b02b72013-11-16 16:03:36 +0000377DisableMSCWarning(4127)
anthony1cdc5b72012-03-03 02:31:18 +0000378 while(1)
dirk93b02b72013-11-16 16:03:36 +0000379RestoreMSCWarning
anthony1cdc5b72012-03-03 02:31:18 +0000380 {
381 /* get character */
382 GetChar(c);
383
384 /* hash comment handling */
385 if ( state == IN_COMMENT ) {
386 if ( c == '\n' )
387 state=IN_WHITE;
388 continue;
389 }
anthonyd28c6a62012-05-08 00:12:56 +0000390 /* comment lines start with '#' anywhere, or ':' or '@' at start of line */
anthony52bef752012-03-27 13:54:47 +0000391 if ( state == IN_WHITE )
anthonyd28c6a62012-05-08 00:12:56 +0000392 if ( ( c == '#' ) ||
393 ( token_info->curr_column==1 && (c == ':' || c == '@' ) ) )
anthony52bef752012-03-27 13:54:47 +0000394 state=IN_COMMENT;
glennrp6ab82382013-10-28 13:54:30 +0000395 /* whitespace token separator character */
cristyf432c632014-12-07 15:11:28 +0000396 if (strchr(" \n\r\t",c) != (char *) NULL) {
anthony1cdc5b72012-03-03 02:31:18 +0000397 switch (state) {
398 case IN_TOKEN:
399 token_info->token[offset]='\0';
400 return(MagickTrue);
401 case IN_QUOTE:
402 SaveChar(c);
403 break;
404 }
405 continue;
406 }
407 /* quote character */
anthonyd28c6a62012-05-08 00:12:56 +0000408 if ( c=='\'' || c =='"' ) {
anthony1cdc5b72012-03-03 02:31:18 +0000409 switch (state) {
410 case IN_WHITE:
411 token_info->token_line=token_info->curr_line;
412 token_info->token_column=token_info->curr_column;
413 case IN_TOKEN:
414 state=IN_QUOTE;
415 quote=c;
416 break;
417 case IN_QUOTE:
418 if (c == quote)
419 {
420 state=IN_TOKEN;
421 quote='\0';
422 }
423 else
424 SaveChar(c);
425 break;
426 }
427 continue;
428 }
429 /* escape char (preserve in quotes - unless escaping the same quote) */
430 if (c == '\\')
431 {
432 if ( state==IN_QUOTE && quote == '\'' ) {
433 SaveChar('\\');
434 continue;
435 }
436 GetChar(c);
anthony3731b342012-04-19 05:12:09 +0000437 if (c == '\n')
anthony1cdc5b72012-03-03 02:31:18 +0000438 switch (state) {
439 case IN_COMMENT:
440 state=IN_WHITE; /* end comment */
anthony3731b342012-04-19 05:12:09 +0000441 case IN_QUOTE:
442 if (quote != '"')
443 break; /* in double quotes only */
anthony1cdc5b72012-03-03 02:31:18 +0000444 case IN_WHITE:
445 case IN_TOKEN:
anthony3731b342012-04-19 05:12:09 +0000446 continue; /* line continuation - remove line feed */
anthony1cdc5b72012-03-03 02:31:18 +0000447 }
448 switch (state) {
449 case IN_WHITE:
450 token_info->token_line=token_info->curr_line;
451 token_info->token_column=token_info->curr_column;
452 state=IN_TOKEN;
453 break;
454 case IN_QUOTE:
455 if (c != quote && c != '\\')
456 SaveChar('\\');
457 break;
458 }
459 SaveChar(c);
460 continue;
461 }
462 /* ordinary character */
463 switch (state) {
464 case IN_WHITE:
465 token_info->token_line=token_info->curr_line;
466 token_info->token_column=token_info->curr_column;
467 state=IN_TOKEN;
468 case IN_TOKEN:
469 case IN_QUOTE:
470 SaveChar(c);
471 break;
472 case IN_COMMENT:
473 break;
474 }
475 }
476 /* input stream has EOF or produced a fatal error */
477 token_info->token[offset]='\0';
478 if ( token_info->status != TokenStatusOK )
479 return(MagickFalse); /* fatal condition - no valid token */
480 token_info->status = TokenStatusEOF;
481 if ( state == IN_QUOTE)
482 token_info->status = TokenStatusBadQuotes;
483 if ( state == IN_TOKEN)
484 return(MagickTrue); /* token with EOF at end - no problem */
485 return(MagickFalse); /* in white space or in quotes - invalid token */
486}