]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_argv.c
1 /* $Id: mdoc_argv.c,v 1.52 2010/05/31 13:39:13 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #include <sys/types.h>
31 #include "libmandoc.h"
34 * Routines to parse arguments of macros. Arguments follow the syntax
35 * of `-arg [val [valN...]]'. Arguments come in all types: quoted
36 * arguments, multiple arguments per value, no-value arguments, etc.
38 * There's no limit to the number or arguments that may be allocated.
41 #define ARGV_NONE (1 << 0)
42 #define ARGV_SINGLE (1 << 1)
43 #define ARGV_MULTI (1 << 2)
44 #define ARGV_OPT_SINGLE (1 << 3)
48 static int argv_a2arg(enum mdoct
, const char *);
49 static enum margserr
args(struct mdoc
*, int, int *,
50 char *, int, char **);
51 static int argv(struct mdoc
*, int,
52 struct mdoc_argv
*, int *, char *);
53 static int argv_single(struct mdoc
*, int,
54 struct mdoc_argv
*, int *, char *);
55 static int argv_opt_single(struct mdoc
*, int,
56 struct mdoc_argv
*, int *, char *);
57 static int argv_multi(struct mdoc
*, int,
58 struct mdoc_argv
*, int *, char *);
60 /* Per-argument flags. */
62 static int mdoc_argvflags
[MDOC_ARG_MAX
] = {
63 ARGV_NONE
, /* MDOC_Split */
64 ARGV_NONE
, /* MDOC_Nosplit */
65 ARGV_NONE
, /* MDOC_Ragged */
66 ARGV_NONE
, /* MDOC_Unfilled */
67 ARGV_NONE
, /* MDOC_Literal */
68 ARGV_SINGLE
, /* MDOC_File */
69 ARGV_OPT_SINGLE
, /* MDOC_Offset */
70 ARGV_NONE
, /* MDOC_Bullet */
71 ARGV_NONE
, /* MDOC_Dash */
72 ARGV_NONE
, /* MDOC_Hyphen */
73 ARGV_NONE
, /* MDOC_Item */
74 ARGV_NONE
, /* MDOC_Enum */
75 ARGV_NONE
, /* MDOC_Tag */
76 ARGV_NONE
, /* MDOC_Diag */
77 ARGV_NONE
, /* MDOC_Hang */
78 ARGV_NONE
, /* MDOC_Ohang */
79 ARGV_NONE
, /* MDOC_Inset */
80 ARGV_MULTI
, /* MDOC_Column */
81 ARGV_SINGLE
, /* MDOC_Width */
82 ARGV_NONE
, /* MDOC_Compact */
83 ARGV_NONE
, /* MDOC_Std */
84 ARGV_NONE
, /* MDOC_Filled */
85 ARGV_NONE
, /* MDOC_Words */
86 ARGV_NONE
, /* MDOC_Emphasis */
87 ARGV_NONE
, /* MDOC_Symbolic */
88 ARGV_NONE
/* MDOC_Symbolic */
91 static int mdoc_argflags
[MDOC_MAX
] = {
152 ARGS_DELIM
, /* Bsx */
202 ARGS_DELIM
, /* Brq */
204 ARGS_DELIM
, /* Brc */
218 * Parse an argument from line text. This comes in the form of -key
219 * [value0...], which may either have a single mandatory value, at least
220 * one mandatory value, an optional single value, or no value.
223 mdoc_argv(struct mdoc
*m
, int line
, enum mdoct tok
,
224 struct mdoc_arg
**v
, int *pos
, char *buf
)
227 struct mdoc_argv tmp
;
228 struct mdoc_arg
*arg
;
230 if ('\0' == buf
[*pos
])
233 assert(' ' != buf
[*pos
]);
235 /* Parse through to the first unescaped space. */
243 if (' ' == buf
[*pos
])
244 if ('\\' != buf
[*pos
- 1])
249 /* XXX - save zeroed byte, if not an argument. */
254 buf
[(*pos
)++] = '\0';
257 (void)memset(&tmp
, 0, sizeof(struct mdoc_argv
));
261 /* See if our token accepts the argument. */
263 if (MDOC_ARG_MAX
== (tmp
.arg
= argv_a2arg(tok
, p
))) {
264 /* XXX - restore saved zeroed byte. */
270 while (buf
[*pos
] && ' ' == buf
[*pos
])
273 if ( ! argv(m
, line
, &tmp
, pos
, buf
))
276 if (NULL
== (arg
= *v
))
277 arg
= *v
= mandoc_calloc(1, sizeof(struct mdoc_arg
));
280 arg
->argv
= mandoc_realloc
281 (arg
->argv
, arg
->argc
* sizeof(struct mdoc_argv
));
283 (void)memcpy(&arg
->argv
[(int)arg
->argc
- 1],
284 &tmp
, sizeof(struct mdoc_argv
));
291 mdoc_argv_free(struct mdoc_arg
*p
)
305 for (i
= (int)p
->argc
- 1; i
>= 0; i
--)
306 mdoc_argn_free(p
, i
);
314 mdoc_argn_free(struct mdoc_arg
*p
, int iarg
)
316 struct mdoc_argv
*arg
= &p
->argv
[iarg
];
319 if (arg
->sz
&& arg
->value
) {
320 for (j
= (int)arg
->sz
- 1; j
>= 0; j
--)
325 for (--p
->argc
; iarg
< (int)p
->argc
; iarg
++)
326 p
->argv
[iarg
] = p
->argv
[iarg
+1];
331 mdoc_zargs(struct mdoc
*m
, int line
, int *pos
,
332 char *buf
, int flags
, char **v
)
335 return(args(m
, line
, pos
, buf
, flags
, v
));
340 mdoc_args(struct mdoc
*m
, int line
, int *pos
,
341 char *buf
, enum mdoct tok
, char **v
)
346 fl
= mdoc_argflags
[tok
];
349 return(args(m
, line
, pos
, buf
, fl
, v
));
352 * We know that we're in an `It', so it's reasonable to expect
353 * us to be sitting in a `Bl'. Someday this may not be the case
354 * (if we allow random `It's sitting out there), so provide a
355 * safe fall-back into the default behaviour.
358 for (n
= m
->last
; n
; n
= n
->parent
)
359 if (MDOC_Bl
== n
->tok
)
362 if (n
&& LIST_column
== n
->data
.list
) {
367 return(args(m
, line
, pos
, buf
, fl
, v
));
372 args(struct mdoc
*m
, int line
, int *pos
,
373 char *buf
, int fl
, char **v
)
381 * Parse out the terms (like `val' in `.Xx -arg val' or simply
382 * `.Xx val'), which can have all sorts of properties:
384 * ARGS_DELIM: use special handling if encountering trailing
385 * delimiters in the form of [[::delim::][ ]+]+.
387 * ARGS_NOWARN: don't post warnings. This is only used when
388 * re-parsing delimiters, as the warnings have already been
391 * ARGS_TABSEP: use special handling for tab/`Ta' separated
392 * phrases like in `Bl -column'.
395 assert(' ' != buf
[*pos
]);
397 if ('\0' == buf
[*pos
]) {
398 if (MDOC_PPHRASE
& m
->flags
)
401 * If we're not in a partial phrase and the flag for
402 * being a phrase literal is still set, the punctuation
405 if (MDOC_PHRASELIT
& m
->flags
)
406 if ( ! mdoc_pmsg(m
, line
, *pos
, MANDOCERR_BADQUOTE
))
409 m
->flags
&= ~MDOC_PHRASELIT
;
414 * If the first character is a closing delimiter and we're to
415 * look for delimited strings, then pass down the buffer seeing
416 * if it follows the pattern of [[::delim::][ ]+]+. Note that
417 * we ONLY care about closing delimiters.
420 if ((fl
& ARGS_DELIM
) && DELIM_CLOSE
== mdoc_iscdelim(buf
[*pos
])) {
421 for (i
= *pos
; buf
[i
]; ) {
422 d
= mdoc_iscdelim(buf
[i
]);
423 if (DELIM_NONE
== d
|| DELIM_OPEN
== d
)
426 if ('\0' == buf
[i
] || ' ' != buf
[i
])
429 while (buf
[i
] && ' ' == buf
[i
])
433 if ('\0' == buf
[i
]) {
435 if (i
&& ' ' != buf
[i
- 1])
437 if (ARGS_NOWARN
& fl
)
439 if ( ! mdoc_pmsg(m
, line
, *pos
, MANDOCERR_EOLNSPACE
))
448 * First handle TABSEP items, restricted to `Bl -column'. This
449 * ignores conventional token parsing and instead uses tabs or
450 * `Ta' macros to separate phrases. Phrases are parsed again
451 * for arguments at a later phase.
454 if (ARGS_TABSEP
& fl
) {
455 /* Scan ahead to tab (can't be escaped). */
456 p
= strchr(*v
, '\t');
459 /* Scan ahead to unescaped `Ta'. */
460 if ( ! (MDOC_PHRASELIT
& m
->flags
))
461 for (pp
= *v
; ; pp
++) {
462 if (NULL
== (pp
= strstr(pp
, "Ta")))
464 if (pp
> *v
&& ' ' != *(pp
- 1))
466 if (' ' == *(pp
+ 2) || '\0' == *(pp
+ 2))
470 /* By default, assume a phrase. */
474 * Adjust new-buffer position to be beyond delimiter
475 * mark (e.g., Ta -> end + 2).
478 *pos
+= pp
< p
? 2 : 1;
479 rc
= pp
< p
? ARGS_PHRASE
: ARGS_PPHRASE
;
481 } else if (p
&& ! pp
) {
484 } else if (pp
&& ! p
) {
492 /* Whitespace check for eoln case... */
493 if ('\0' == *p
&& ' ' == *(p
- 1) && ! (ARGS_NOWARN
& fl
))
494 if ( ! mdoc_pmsg(m
, line
, *pos
, MANDOCERR_EOLNSPACE
))
497 *pos
+= (int)(p
- *v
);
499 /* Strip delimiter's preceding whitespace. */
501 while (pp
> *v
&& ' ' == *pp
) {
502 if (pp
> *v
&& '\\' == *(pp
- 1))
508 /* Strip delimiter's proceeding whitespace. */
509 for (pp
= &buf
[*pos
]; ' ' == *pp
; pp
++, (*pos
)++)
516 * Process a quoted literal. A quote begins with a double-quote
517 * and ends with a double-quote NOT preceded by a double-quote.
518 * Whitespace is NOT involved in literal termination.
521 if (MDOC_PHRASELIT
& m
->flags
|| '\"' == buf
[*pos
]) {
522 if ( ! (MDOC_PHRASELIT
& m
->flags
))
525 if (MDOC_PPHRASE
& m
->flags
)
526 m
->flags
|= MDOC_PHRASELIT
;
528 for ( ; buf
[*pos
]; (*pos
)++) {
529 if ('\"' != buf
[*pos
])
531 if ('\"' != buf
[*pos
+ 1])
536 if ('\0' == buf
[*pos
]) {
537 if (ARGS_NOWARN
& fl
|| MDOC_PPHRASE
& m
->flags
)
539 if ( ! mdoc_pmsg(m
, line
, *pos
, MANDOCERR_BADQUOTE
))
544 m
->flags
&= ~MDOC_PHRASELIT
;
545 buf
[(*pos
)++] = '\0';
547 if ('\0' == buf
[*pos
])
550 while (' ' == buf
[*pos
])
553 if (0 == buf
[*pos
] && ! (ARGS_NOWARN
& fl
))
554 if ( ! mdoc_pmsg(m
, line
, *pos
, MANDOCERR_EOLNSPACE
))
561 * A non-quoted term progresses until either the end of line or
562 * a non-escaped whitespace.
565 for ( ; buf
[*pos
]; (*pos
)++)
566 if (*pos
&& ' ' == buf
[*pos
] && '\\' != buf
[*pos
- 1])
569 if ('\0' == buf
[*pos
])
572 buf
[(*pos
)++] = '\0';
574 while (' ' == buf
[*pos
])
577 if ('\0' == buf
[*pos
] && ! (ARGS_NOWARN
& fl
))
578 if ( ! mdoc_pmsg(m
, line
, *pos
, MANDOCERR_EOLNSPACE
))
586 argv_a2arg(enum mdoct tok
, const char *p
)
590 * Parse an argument identifier from its text. XXX - this
591 * should really be table-driven to clarify the code.
593 * If you add an argument to the list, make sure that you
594 * register it here with its one or more macros!
599 if (0 == strcmp(p
, "split"))
601 else if (0 == strcmp(p
, "nosplit"))
602 return(MDOC_Nosplit
);
606 if (0 == strcmp(p
, "ragged"))
608 else if (0 == strcmp(p
, "unfilled"))
609 return(MDOC_Unfilled
);
610 else if (0 == strcmp(p
, "filled"))
612 else if (0 == strcmp(p
, "literal"))
613 return(MDOC_Literal
);
614 else if (0 == strcmp(p
, "file"))
616 else if (0 == strcmp(p
, "offset"))
618 else if (0 == strcmp(p
, "compact"))
619 return(MDOC_Compact
);
620 else if (0 == strcmp(p
, "centered"))
621 return(MDOC_Centred
);
625 if (0 == strcmp(p
, "emphasis"))
626 return(MDOC_Emphasis
);
627 else if (0 == strcmp(p
, "literal"))
628 return(MDOC_Literal
);
629 else if (0 == strcmp(p
, "symbolic"))
630 return(MDOC_Symbolic
);
634 if (0 == strcmp(p
, "words"))
639 if (0 == strcmp(p
, "bullet"))
641 else if (0 == strcmp(p
, "dash"))
643 else if (0 == strcmp(p
, "hyphen"))
645 else if (0 == strcmp(p
, "item"))
647 else if (0 == strcmp(p
, "enum"))
649 else if (0 == strcmp(p
, "tag"))
651 else if (0 == strcmp(p
, "diag"))
653 else if (0 == strcmp(p
, "hang"))
655 else if (0 == strcmp(p
, "ohang"))
657 else if (0 == strcmp(p
, "inset"))
659 else if (0 == strcmp(p
, "column"))
661 else if (0 == strcmp(p
, "width"))
663 else if (0 == strcmp(p
, "offset"))
665 else if (0 == strcmp(p
, "compact"))
666 return(MDOC_Compact
);
667 else if (0 == strcmp(p
, "nested"))
674 if (0 == strcmp(p
, "std"))
681 return(MDOC_ARG_MAX
);
686 argv_multi(struct mdoc
*m
, int line
,
687 struct mdoc_argv
*v
, int *pos
, char *buf
)
692 for (v
->sz
= 0; ; v
->sz
++) {
693 if ('-' == buf
[*pos
])
695 ac
= args(m
, line
, pos
, buf
, 0, &p
);
696 if (ARGS_ERROR
== ac
)
698 else if (ARGS_EOLN
== ac
)
701 if (0 == v
->sz
% MULTI_STEP
)
702 v
->value
= mandoc_realloc(v
->value
,
703 (v
->sz
+ MULTI_STEP
) * sizeof(char *));
705 v
->value
[(int)v
->sz
] = mandoc_strdup(p
);
713 argv_opt_single(struct mdoc
*m
, int line
,
714 struct mdoc_argv
*v
, int *pos
, char *buf
)
719 if ('-' == buf
[*pos
])
722 ac
= args(m
, line
, pos
, buf
, 0, &p
);
723 if (ARGS_ERROR
== ac
)
729 v
->value
= mandoc_malloc(sizeof(char *));
730 v
->value
[0] = mandoc_strdup(p
);
737 * Parse a single, mandatory value from the stream.
740 argv_single(struct mdoc
*m
, int line
,
741 struct mdoc_argv
*v
, int *pos
, char *buf
)
749 ac
= args(m
, line
, pos
, buf
, 0, &p
);
750 if (ARGS_EOLN
== ac
) {
751 mdoc_pmsg(m
, line
, ppos
, MANDOCERR_SYNTARGVCOUNT
);
753 } else if (ARGS_ERROR
== ac
)
757 v
->value
= mandoc_malloc(sizeof(char *));
758 v
->value
[0] = mandoc_strdup(p
);
765 * Determine rules for parsing arguments. Arguments can either accept
766 * no parameters, an optional single parameter, one parameter, or
767 * multiple parameters.
770 argv(struct mdoc
*mdoc
, int line
,
771 struct mdoc_argv
*v
, int *pos
, char *buf
)
777 switch (mdoc_argvflags
[v
->arg
]) {
779 return(argv_single(mdoc
, line
, v
, pos
, buf
));
781 return(argv_multi(mdoc
, line
, v
, pos
, buf
));
782 case (ARGV_OPT_SINGLE
):
783 return(argv_opt_single(mdoc
, line
, v
, pos
, buf
));