]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_macro.c
MANWIDTH
[mandoc.git] / mdoc_macro.c
index 4cb69976f2e8eb08060125e3645a55a8f1496986..dd3885c702b737dfc992d04a1eb5467ead161605 100644 (file)
@@ -1,7 +1,7 @@
-/*     $Id: mdoc_macro.c,v 1.227 2018/12/14 05:18:02 schwarze Exp $ */
+/*     $Id: mdoc_macro.c,v 1.234 2020/01/19 18:02:00 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2010, 2012-2018 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2010, 2012-2020 Ingo Schwarze <schwarze@openbsd.org>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -49,7 +49,7 @@ static        void            dword(struct roff_man *, int, int, const char *,
 static int             find_pending(struct roff_man *, enum roff_tok,
                                int, int, struct roff_node *);
 static int             lookup(struct roff_man *, int, int, int, const char *);
-static int             macro_or_word(MACRO_PROT_ARGS, int);
+static int             macro_or_word(MACRO_PROT_ARGS, char *, int);
 static void            break_intermediate(struct roff_node *,
                                struct roff_node *);
 static int             parse_rest(struct roff_man *, enum roff_tok,
@@ -61,7 +61,7 @@ static        void            rew_pending(struct roff_man *,
                                const struct roff_node *);
 
 static const struct mdoc_macro mdoc_macros[MDOC_MAX - MDOC_Dd] = {
-       { in_line_eoln, MDOC_PROLOGUE }, /* Dd */
+       { in_line_eoln, MDOC_PROLOGUE | MDOC_JOIN }, /* Dd */
        { in_line_eoln, MDOC_PROLOGUE }, /* Dt */
        { in_line_eoln, MDOC_PROLOGUE }, /* Os */
        { blk_full, MDOC_PARSED | MDOC_JOIN }, /* Sh */
@@ -200,6 +200,7 @@ static const struct mdoc_macro mdoc_macros[MDOC_MAX - MDOC_Dd] = {
        { in_line_eoln, MDOC_JOIN }, /* %Q */
        { in_line_eoln, 0 }, /* %U */
        { phrase_ta, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Ta */
+       { in_line_eoln, 0 }, /* Tg */
 };
 
 
@@ -233,8 +234,7 @@ mdoc_endparse(struct roff_man *mdoc)
 
        /* Rewind to the first. */
 
-       rew_last(mdoc, mdoc->first);
-       mdoc_state_reset(mdoc);
+       rew_last(mdoc, mdoc->meta.first);
 }
 
 /*
@@ -296,6 +296,8 @@ rew_pending(struct roff_man *mdoc, const struct roff_node *n)
                        case ROFFT_HEAD:
                                roff_body_alloc(mdoc, n->line, n->pos,
                                    n->tok);
+                               if (n->tok == MDOC_Ss)
+                                       mdoc->flags &= ~ROFF_NONOFILL;
                                break;
                        case ROFFT_BLOCK:
                                break;
@@ -474,14 +476,15 @@ append_delims(struct roff_man *mdoc, int line, int *pos, char *buf)
 {
        char            *p;
        int              la;
+       enum margserr    ac;
 
        if (buf[*pos] == '\0')
                return;
 
        for (;;) {
                la = *pos;
-               if (mdoc_args(mdoc, line, pos, buf, TOKEN_NONE, &p) ==
-                   ARGS_EOLN)
+               ac = mdoc_args(mdoc, line, pos, buf, TOKEN_NONE, &p);
+               if (ac == ARGS_EOLN)
                        break;
                dword(mdoc, line, la, p, DELIM_MAX, 1);
 
@@ -499,6 +502,8 @@ append_delims(struct roff_man *mdoc, int line, int *pos, char *buf)
 
                if (mandoc_eos(p, strlen(p)))
                        mdoc->last->flags |= NODE_EOS;
+               if (ac == ARGS_ALLOC)
+                       free(p);
        }
 }
 
@@ -508,17 +513,13 @@ append_delims(struct roff_man *mdoc, int line, int *pos, char *buf)
  * Otherwise, allocate it and return 0.
  */
 static int
-macro_or_word(MACRO_PROT_ARGS, int parsed)
+macro_or_word(MACRO_PROT_ARGS, char *p, int parsed)
 {
-       char            *p;
        int              ntok;
 
-       p = buf + ppos;
-       ntok = TOKEN_NONE;
-       if (*p == '"')
-               p++;
-       else if (parsed && ! (mdoc->flags & MDOC_PHRASELIT))
-               ntok = lookup(mdoc, tok, line, ppos, p);
+       ntok = buf[ppos] == '"' || parsed == 0 ||
+           mdoc->flags & MDOC_PHRASELIT ? TOKEN_NONE :
+           lookup(mdoc, tok, line, ppos, p);
 
        if (ntok == TOKEN_NONE) {
                dword(mdoc, line, ppos, p, DELIM_MAX, tok == TOKEN_NONE ||
@@ -698,6 +699,19 @@ blk_exp_close(MACRO_PROT_ARGS)
                            "%s %s", roff_name[tok], buf + *pos);
                if (endbody == NULL && n != NULL)
                        rew_pending(mdoc, n);
+
+               /*
+                * Restore the fill mode that was set before the display.
+                * This needs to be done here rather than during validation
+                * such that subsequent nodes get the right flags.
+                */
+
+               if (tok == MDOC_Ed && body != NULL) {
+                       if (body->flags & NODE_NOFILL)
+                               mdoc->flags |= ROFF_NOFILL;
+                       else
+                               mdoc->flags &= ~ROFF_NOFILL;
+               }
                return;
        }
 
@@ -720,8 +734,12 @@ blk_exp_close(MACRO_PROT_ARGS)
                if (ntok == TOKEN_NONE) {
                        dword(mdoc, line, lastarg, p, DELIM_MAX,
                            mdoc_macro(tok)->flags & MDOC_JOIN);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        continue;
                }
+               if (ac == ARGS_ALLOC)
+                       free(p);
 
                if (n != NULL)
                        rew_last(mdoc, n);
@@ -836,6 +854,8 @@ in_line(MACRO_PROT_ARGS)
                            line, la, pos, buf);
                        if (nl)
                                append_delims(mdoc, line, pos, buf);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        return;
                }
 
@@ -879,6 +899,9 @@ in_line(MACRO_PROT_ARGS)
                dword(mdoc, line, la, p, d,
                    mdoc_macro(tok)->flags & MDOC_JOIN);
 
+               if (ac == ARGS_ALLOC)
+                       free(p);
+
                /*
                 * If the first argument is a closing delimiter,
                 * do not suppress spacing before it.
@@ -929,14 +952,15 @@ in_line(MACRO_PROT_ARGS)
 static void
 blk_full(MACRO_PROT_ARGS)
 {
-       int               la, nl, parsed;
        struct mdoc_arg  *arg;
        struct roff_node *blk; /* Our own or a broken block. */
        struct roff_node *head; /* Our own head. */
        struct roff_node *body; /* Our own body. */
        struct roff_node *n;
-       enum margserr     ac, lac;
        char             *p;
+       size_t            iarg;
+       int               done, la, nl, parsed;
+       enum margserr     ac, lac;
 
        nl = MDOC_NEWLINE & mdoc->flags;
 
@@ -1032,6 +1056,16 @@ blk_full(MACRO_PROT_ARGS)
         * regular child nodes.
         */
 
+       switch (tok) {
+       case MDOC_Sh:
+               mdoc->flags &= ~ROFF_NOFILL;
+               break;
+       case MDOC_Ss:
+               mdoc->flags |= ROFF_NONOFILL;
+               break;
+       default:
+               break;
+       }
        mdoc_argv(mdoc, line, tok, &arg, pos, buf);
        blk = mdoc_block_alloc(mdoc, line, ppos, tok, arg);
        head = body = NULL;
@@ -1095,11 +1129,15 @@ blk_full(MACRO_PROT_ARGS)
                if (tok == MDOC_Bd || tok == MDOC_Bk) {
                        mandoc_msg(MANDOCERR_ARG_EXCESS, line, la,
                            "%s ... %s", roff_name[tok], buf + la);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        break;
                }
                if (tok == MDOC_Rs) {
                        mandoc_msg(MANDOCERR_ARG_SKIP,
                            line, la, "Rs %s", buf + la);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        break;
                }
                if (ac == ARGS_PUNCT)
@@ -1114,6 +1152,8 @@ blk_full(MACRO_PROT_ARGS)
                    ac != ARGS_PHRASE &&
                    mdoc_isdelim(p) == DELIM_OPEN) {
                        dword(mdoc, line, la, p, DELIM_OPEN, 0);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        continue;
                }
 
@@ -1145,7 +1185,10 @@ blk_full(MACRO_PROT_ARGS)
                        continue;
                }
 
-               if (macro_or_word(mdoc, tok, line, la, pos, buf, parsed))
+               done = macro_or_word(mdoc, tok, line, la, pos, buf, p, parsed);
+               if (ac == ARGS_ALLOC)
+                       free(p);
+               if (done)
                        break;
        }
 
@@ -1164,6 +1207,33 @@ blk_full(MACRO_PROT_ARGS)
 
        rew_last(mdoc, head);
        body = roff_body_alloc(mdoc, line, ppos, tok);
+       if (tok == MDOC_Ss)
+               mdoc->flags &= ~ROFF_NONOFILL;
+
+       /*
+        * Set up fill mode for display blocks.
+        * This needs to be done here up front rather than during
+        * validation such that child nodes get the right flags.
+        */
+
+       if (tok == MDOC_Bd && arg != NULL) {
+               for (iarg = 0; iarg < arg->argc; iarg++) {
+                       switch (arg->argv[iarg].arg) {
+                       case MDOC_Unfilled:
+                       case MDOC_Literal:
+                               mdoc->flags |= ROFF_NOFILL;
+                               break;
+                       case MDOC_Filled:
+                       case MDOC_Ragged:
+                       case MDOC_Centred:
+                               mdoc->flags &= ~ROFF_NOFILL;
+                               break;
+                       default:
+                               continue;
+                       }
+                       break;
+               }
+       }
 out:
        if (mdoc->flags & MDOC_FREECOL) {
                rew_last(mdoc, body);
@@ -1175,7 +1245,7 @@ out:
 static void
 blk_part_imp(MACRO_PROT_ARGS)
 {
-       int               la, nl;
+       int               done, la, nl;
        enum margserr     ac;
        char             *p;
        struct roff_node *blk; /* saved block context */
@@ -1210,13 +1280,18 @@ blk_part_imp(MACRO_PROT_ARGS)
 
                if (body == NULL && mdoc_isdelim(p) == DELIM_OPEN) {
                        dword(mdoc, line, la, p, DELIM_OPEN, 0);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        continue;
                }
 
                if (body == NULL)
                        body = roff_body_alloc(mdoc, line, ppos, tok);
 
-               if (macro_or_word(mdoc, tok, line, la, pos, buf, 1))
+               done = macro_or_word(mdoc, tok, line, la, pos, buf, p, 1);
+               if (ac == ARGS_ALLOC)
+                       free(p);
+               if (done)
                        break;
        }
        if (body == NULL)
@@ -1241,7 +1316,7 @@ blk_part_imp(MACRO_PROT_ARGS)
 static void
 blk_part_exp(MACRO_PROT_ARGS)
 {
-       int               la, nl;
+       int               done, la, nl;
        enum margserr     ac;
        struct roff_node *head; /* keep track of head */
        char             *p;
@@ -1266,6 +1341,8 @@ blk_part_exp(MACRO_PROT_ARGS)
 
                if (head == NULL && mdoc_isdelim(p) == DELIM_OPEN) {
                        dword(mdoc, line, la, p, DELIM_OPEN, 0);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        continue;
                }
 
@@ -1275,11 +1352,17 @@ blk_part_exp(MACRO_PROT_ARGS)
                                dword(mdoc, line, la, p, DELIM_MAX, 0);
                        rew_last(mdoc, head);
                        roff_body_alloc(mdoc, line, ppos, tok);
-                       if (tok == MDOC_Eo)
+                       if (tok == MDOC_Eo) {
+                               if (ac == ARGS_ALLOC)
+                                       free(p);
                                continue;
+                       }
                }
 
-               if (macro_or_word(mdoc, tok, line, la, pos, buf, 1))
+               done = macro_or_word(mdoc, tok, line, la, pos, buf, p, 1);
+               if (ac == ARGS_ALLOC)
+                       free(p);
+               if (done)
                        break;
        }
 
@@ -1337,10 +1420,12 @@ in_line_argn(MACRO_PROT_ARGS)
                la = *pos;
                ac = mdoc_args(mdoc, line, pos, buf, tok, &p);
 
-               if (ac == ARGS_WORD && state == -1 &&
+               if ((ac == ARGS_WORD || ac == ARGS_ALLOC) && state == -1 &&
                    (mdoc_macro(tok)->flags & MDOC_IGNDELIM) == 0 &&
                    mdoc_isdelim(p) == DELIM_OPEN) {
                        dword(mdoc, line, la, p, DELIM_OPEN, 0);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        continue;
                }
 
@@ -1373,6 +1458,8 @@ in_line_argn(MACRO_PROT_ARGS)
                        }
                        (*mdoc_macro(ntok)->fp)(mdoc, ntok,
                            line, la, pos, buf);
+                       if (ac == ARGS_ALLOC)
+                               free(p);
                        break;
                }
 
@@ -1390,6 +1477,9 @@ in_line_argn(MACRO_PROT_ARGS)
 
                dword(mdoc, line, la, p, DELIM_MAX,
                    mdoc_macro(tok)->flags & MDOC_JOIN);
+               if (ac == ARGS_ALLOC)
+                       free(p);
+               p = mdoc->last->string;
        }
 
        if (state == -1) {
@@ -1444,13 +1534,19 @@ static int
 parse_rest(struct roff_man *mdoc, enum roff_tok tok,
     int line, int *pos, char *buf)
 {
-       int              la;
+       char            *p;
+       int              done, la;
+       enum margserr    ac;
 
        for (;;) {
                la = *pos;
-               if (mdoc_args(mdoc, line, pos, buf, tok, NULL) == ARGS_EOLN)
+               ac = mdoc_args(mdoc, line, pos, buf, tok, &p);
+               if (ac == ARGS_EOLN)
                        return 0;
-               if (macro_or_word(mdoc, tok, line, la, pos, buf, 1))
+               done = macro_or_word(mdoc, tok, line, la, pos, buf, p, 1);
+               if (ac == ARGS_ALLOC)
+                       free(p);
+               if (done)
                        return 1;
        }
 }