[BACK]Return to roff.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/roff.c between version 1.22 and 1.104

version 1.22, 2008/11/30 18:53:11 version 1.104, 2010/12/01 10:31:35
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the   * purpose with or without fee is hereby granted, provided that the above
  * above copyright notice and this permission notice appear in all   * copyright notice and this permission notice appear in all copies.
  * copies.  
  *   *
  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  * PERFORMANCE OF THIS SOFTWARE.  
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <assert.h>  #include <assert.h>
   #include <errno.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  #include <limits.h>
 #include <stdarg.h>  
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdio.h>  
 #include <string.h>  #include <string.h>
 #include <time.h>  #include <stdio.h>
   
 #include "libmdocml.h"  #include "mandoc.h"
 #include "private.h"  #include "roff.h"
   #include "libmandoc.h"
   
 /* FIXME: warn if Pp occurs before/after Sh etc. (see mdoc.samples). */  #define RSTACK_MAX      128
   
 /* FIXME: warn about "X section only" macros. */  #define ROFF_CTL(c) \
           ('.' == (c) || '\'' == (c))
   
 /* FIXME: warn about empty lists. */  #if 1
   #define ROFF_DEBUG(fmt, args...) \
           do { /* Nothing. */ } while (/*CONSTCOND*/ 0)
   #else
   #define ROFF_DEBUG(fmt, args...) \
           do { fprintf(stderr, fmt , ##args); } while (/*CONSTCOND*/ 0)
   #endif
   
 /* FIXME: roff_layout and roff_text have identical-ish lower bodies. */  enum    rofft {
           ROFF_ad,
 /* FIXME: NAME section needs specific elements. */          ROFF_am,
           ROFF_ami,
 #define ROFF_MAXARG       32          ROFF_am1,
           ROFF_de,
 enum    roffd {          ROFF_dei,
         ROFF_ENTER = 0,          ROFF_de1,
         ROFF_EXIT          ROFF_ds,
           ROFF_el,
           ROFF_hy,
           ROFF_ie,
           ROFF_if,
           ROFF_ig,
           ROFF_ne,
           ROFF_nh,
           ROFF_nr,
           ROFF_rm,
           ROFF_tr,
           ROFF_cblock,
           ROFF_ccond, /* FIXME: remove this. */
           ROFF_MAX
 };  };
   
 enum    rofftype {  enum    roffrule {
         ROFF_COMMENT,          ROFFRULE_ALLOW,
         ROFF_TEXT,          ROFFRULE_DENY
         ROFF_LAYOUT,  
         ROFF_SPECIAL  
 };  };
   
 #define ROFFCALL_ARGS \  
         int tok, struct rofftree *tree, \  
         char *argv[], enum roffd type  
   
 struct  rofftree;  struct  roffstr {
           char            *name; /* key of symbol */
 struct  rofftok {          char            *string; /* current value */
         int             (*cb)(ROFFCALL_ARGS);   /* Callback. */          struct roffstr  *next; /* next in list */
         const int        *args;                 /* Args (or NULL). */  
         const int        *parents;  
         const int        *children;  
         int               ctx;  
         enum rofftype     type;                 /* Type of macro. */  
         int               flags;  
 #define ROFF_PARSED      (1 << 0)               /* "Parsed". */  
 #define ROFF_CALLABLE    (1 << 1)               /* "Callable". */  
 #define ROFF_SHALLOW     (1 << 2)               /* Nesting block. */  
 };  };
   
 struct  roffarg {  struct  roff {
         int               flags;          struct roffnode *last; /* leaf of stack */
 #define ROFF_VALUE       (1 << 0)               /* Has a value. */          mandocmsg        msg; /* err/warn/fatal messages */
           void            *data; /* privdata for messages */
           enum roffrule    rstack[RSTACK_MAX]; /* stack of !`ie' rules */
           int              rstackpos; /* position in rstack */
           struct regset   *regs; /* read/writable registers */
           struct roffstr  *first_string;
 };  };
   
 struct  roffnode {  struct  roffnode {
         int               tok;                  /* Token id. */          enum rofft       tok; /* type of node */
         struct roffnode  *parent;               /* Parent (or NULL). */          struct roffnode *parent; /* up one in stack */
           int              line; /* parse line */
           int              col; /* parse col */
           char            *end; /* end-rules: custom token */
           int              endspan; /* end-rules: next-line or infty */
           enum roffrule    rule; /* current evaluation rule */
 };  };
   
 struct  rofftree {  #define ROFF_ARGS        struct roff *r, /* parse ctx */ \
         struct roffnode  *last;                 /* Last parsed node. */                           enum rofft tok, /* tok of macro */ \
         char             *cur;                           char **bufp, /* input buffer */ \
                            size_t *szp, /* size of input buffer */ \
                            int ln, /* parse line */ \
                            int ppos, /* original pos in buffer */ \
                            int pos, /* current pos in buffer */ \
                            int *offs /* reset offset of buffer data */
   
         time_t            date;                 /* `Dd' results. */  typedef enum rofferr (*roffproc)(ROFF_ARGS);
         char              os[64];               /* `Os' results. */  
         char              title[64];            /* `Dt' results. */  
         char              section[64];          /* `Dt' results. */  
         char              volume[64];           /* `Dt' results. */  
   
         int               state;  struct  roffmac {
 #define ROFF_PRELUDE     (1 << 1)               /* In roff prelude. */          const char      *name; /* macro name */
 #define ROFF_PRELUDE_Os  (1 << 2)               /* `Os' is parsed. */          roffproc         proc; /* process new macro */
 #define ROFF_PRELUDE_Dt  (1 << 3)               /* `Dt' is parsed. */          roffproc         text; /* process as child text of macro */
 #define ROFF_PRELUDE_Dd  (1 << 4)               /* `Dd' is parsed. */          roffproc         sub; /* process as child of macro */
 #define ROFF_BODY        (1 << 5)               /* In roff body. */          int              flags;
   #define ROFFMAC_STRUCT  (1 << 0) /* always interpret */
         struct roffcb     cb;          struct roffmac  *next;
         void             *arg;  
 };  };
   
 static  int               roff_Dd(ROFFCALL_ARGS);  static  enum rofferr     roff_block(ROFF_ARGS);
 static  int               roff_Dt(ROFFCALL_ARGS);  static  enum rofferr     roff_block_text(ROFF_ARGS);
 static  int               roff_Os(ROFFCALL_ARGS);  static  enum rofferr     roff_block_sub(ROFF_ARGS);
   static  enum rofferr     roff_cblock(ROFF_ARGS);
   static  enum rofferr     roff_ccond(ROFF_ARGS);
   static  enum rofferr     roff_cond(ROFF_ARGS);
   static  enum rofferr     roff_cond_text(ROFF_ARGS);
   static  enum rofferr     roff_cond_sub(ROFF_ARGS);
   static  enum rofferr     roff_ds(ROFF_ARGS);
   static  enum roffrule    roff_evalcond(const char *, int *);
   static  void             roff_freestr(struct roff *);
   static  const char      *roff_getstrn(const struct roff *,
                                   const char *, size_t);
   static  enum rofferr     roff_line_ignore(ROFF_ARGS);
   static  enum rofferr     roff_line_error(ROFF_ARGS);
   static  enum rofferr     roff_nr(ROFF_ARGS);
   static  int              roff_res(struct roff *,
                                   char **, size_t *, int);
   static  void             roff_setstr(struct roff *,
                                   const char *, const char *);
   static  char            *roff_strdup(const char *);
   
 static  int               roff_layout(ROFFCALL_ARGS);  /* See roff_hash_find() */
 static  int               roff_text(ROFFCALL_ARGS);  
 static  int               roff_comment(ROFFCALL_ARGS);  
 static  int               roff_close(ROFFCALL_ARGS);  
 static  int               roff_special(ROFFCALL_ARGS);  
   
 static  struct roffnode  *roffnode_new(int, struct rofftree *);  #define ASCII_HI         126
 static  void              roffnode_free(struct rofftree *);  #define ASCII_LO         33
   #define HASHWIDTH       (ASCII_HI - ASCII_LO + 1)
   
 static  void              roff_warn(const struct rofftree *,  static  struct roffmac  *hash[HASHWIDTH];
                                 const char *, char *, ...);  
 static  void              roff_err(const struct rofftree *,  
                                 const char *, char *, ...);  
   
 static  int               roffscan(int, const int *);  static  struct roffmac   roffs[ROFF_MAX] = {
 static  int               rofffindtok(const char *);          { "ad", roff_line_ignore, NULL, NULL, 0, NULL },
 static  int               rofffindarg(const char *);          { "am", roff_block, roff_block_text, roff_block_sub, 0, NULL },
 static  int               rofffindcallable(const char *);          { "ami", roff_block, roff_block_text, roff_block_sub, 0, NULL },
 static  int               roffargs(const struct rofftree *,          { "am1", roff_block, roff_block_text, roff_block_sub, 0, NULL },
                                 int, char *, char **);          { "de", roff_block, roff_block_text, roff_block_sub, 0, NULL },
 static  int               roffargok(int, int);          { "dei", roff_block, roff_block_text, roff_block_sub, 0, NULL },
 static  int               roffnextopt(const struct rofftree *,          { "de1", roff_block, roff_block_text, roff_block_sub, 0, NULL },
                                 int, char ***, char **);          { "ds", roff_ds, NULL, NULL, 0, NULL },
 static  int               roffparse(struct rofftree *, char *);          { "el", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL },
 static  int               textparse(const struct rofftree *, char *);          { "hy", roff_line_ignore, NULL, NULL, 0, NULL },
           { "ie", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL },
           { "if", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL },
           { "ig", roff_block, roff_block_text, roff_block_sub, 0, NULL },
           { "ne", roff_line_ignore, NULL, NULL, 0, NULL },
           { "nh", roff_line_ignore, NULL, NULL, 0, NULL },
           { "nr", roff_nr, NULL, NULL, 0, NULL },
           { "rm", roff_line_error, NULL, NULL, 0, NULL },
           { "tr", roff_line_ignore, NULL, NULL, 0, NULL },
           { ".", roff_cblock, NULL, NULL, 0, NULL },
           { "\\}", roff_ccond, NULL, NULL, 0, NULL },
   };
   
   static  void             roff_free1(struct roff *);
   static  enum rofft       roff_hash_find(const char *);
   static  void             roff_hash_init(void);
   static  void             roffnode_cleanscope(struct roff *);
   static  void             roffnode_push(struct roff *,
                                   enum rofft, int, int);
   static  void             roffnode_pop(struct roff *);
   static  enum rofft       roff_parse(const char *, int *);
   static  int              roff_parse_nat(const char *, unsigned int *);
   
 static  const int roffarg_An[] = { ROFF_Split, ROFF_Nosplit,  /* See roff_hash_find() */
         ROFF_ARGMAX };  #define ROFF_HASH(p)    (p[0] - ASCII_LO)
 static  const int roffarg_Bd[] = { ROFF_Ragged, ROFF_Unfilled,  
         ROFF_Literal, ROFF_File, ROFF_Offset, ROFF_Filled,  
         ROFF_Compact, ROFF_ARGMAX };  
 static  const int roffarg_Bk[] = { ROFF_Words, ROFF_ARGMAX };  
 static  const int roffarg_Ex[] = { ROFF_Std, ROFF_ARGMAX };  
 static  const int roffarg_Rv[] = { ROFF_Std, ROFF_ARGMAX };  
 static  const int roffarg_Bl[] = { ROFF_Bullet, ROFF_Dash,  
         ROFF_Hyphen, ROFF_Item, ROFF_Enum, ROFF_Tag, ROFF_Diag,  
         ROFF_Hang, ROFF_Ohang, ROFF_Inset, ROFF_Column, ROFF_Offset,  
         ROFF_Width, ROFF_Compact, ROFF_ARGMAX };  
 static  const int roffarg_St[] = {  
         ROFF_p1003_1_88, ROFF_p1003_1_90, ROFF_p1003_1_96,  
         ROFF_p1003_1_2001, ROFF_p1003_1_2004, ROFF_p1003_1,  
         ROFF_p1003_1b, ROFF_p1003_1b_93, ROFF_p1003_1c_95,  
         ROFF_p1003_1g_2000, ROFF_p1003_2_92, ROFF_p1387_2_95,  
         ROFF_p1003_2, ROFF_p1387_2, ROFF_isoC_90, ROFF_isoC_amd1,  
         ROFF_isoC_tcor1, ROFF_isoC_tcor2, ROFF_isoC_99, ROFF_ansiC,  
         ROFF_ansiC_89, ROFF_ansiC_99, ROFF_ieee754, ROFF_iso8802_3,  
         ROFF_xpg3, ROFF_xpg4, ROFF_xpg4_2, ROFF_xpg4_3, ROFF_xbd5,  
         ROFF_xcu5, ROFF_xsh5, ROFF_xns5, ROFF_xns5_2d2_0,  
         ROFF_xcurses4_2, ROFF_susv2, ROFF_susv3, ROFF_svid4,  
         ROFF_ARGMAX };  
   
 static  const int roffchild_Bl[] = { ROFF_It, ROFF_El, ROFF_MAX };  static void
 static  const int roffchild_Fo[] = { ROFF_Fa, ROFF_Fc, ROFF_MAX };  roff_hash_init(void)
 static  const int roffchild_Oo[] = { ROFF_Op, ROFF_Oc, ROFF_MAX };  {
 static  const int roffchild_Rs[] = { ROFF_Re, ROFF__A, ROFF__B,          struct roffmac   *n;
         ROFF__D, ROFF__I, ROFF__J, ROFF__N, ROFF__O, ROFF__P,          int               buc, i;
         ROFF__R, ROFF__T, ROFF__V, ROFF_MAX };  
   
 static  const int roffparent_El[] = { ROFF_Bl, ROFF_It, ROFF_MAX };          for (i = 0; i < (int)ROFF_MAX; i++) {
 static  const int roffparent_Fc[] = { ROFF_Fo, ROFF_Fa, ROFF_MAX };                  assert(roffs[i].name[0] >= ASCII_LO);
 static  const int roffparent_Oc[] = { ROFF_Oo, ROFF_Oc, ROFF_MAX };                  assert(roffs[i].name[0] <= ASCII_HI);
 static  const int roffparent_It[] = { ROFF_Bl, ROFF_It, ROFF_MAX };  
 static  const int roffparent_Re[] = { ROFF_Rs, ROFF_MAX };  
   
 /* Table of all known tokens. */                  buc = ROFF_HASH(roffs[i].name);
 static  const struct rofftok tokens[ROFF_MAX] = {  
         {roff_comment, NULL, NULL, NULL, 0, ROFF_COMMENT, 0 }, /* \" */  
         {     roff_Dd, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dd */  
         {     roff_Dt, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dt */  
         {     roff_Os, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Os */  
         { roff_layout, NULL, NULL, NULL, ROFF_Sh, ROFF_LAYOUT, 0 }, /* Sh */  
         { roff_layout, NULL, NULL, NULL, ROFF_Ss, ROFF_LAYOUT, 0 }, /* Ss */  
         {   roff_text, NULL, NULL, NULL, ROFF_Pp, ROFF_TEXT, 0 }, /* Pp */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* D1 */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Dl */  
         { roff_layout, roffarg_Bd, NULL, NULL, 0, ROFF_LAYOUT, 0 },     /* Bd */  
         {  roff_close, NULL, NULL, NULL, ROFF_Bd, ROFF_LAYOUT, 0 }, /* Ed */  
         { roff_layout, roffarg_Bl, NULL, roffchild_Bl, 0, ROFF_LAYOUT, 0 }, /* Bl */  
         {  roff_close, NULL, roffparent_El, NULL, ROFF_Bl, ROFF_LAYOUT, 0 }, /* El */  
         { roff_layout, NULL, roffparent_It, NULL, ROFF_It, ROFF_LAYOUT, ROFF_PARSED | ROFF_SHALLOW }, /* It */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ad */ /* FIXME */  
         {   roff_text, roffarg_An, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* An */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ar */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Cd */ /* XXX man.4 only */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Cm */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dv */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Er */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ev */ /* XXX needs arg */  
         {   roff_text, roffarg_Ex, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ex */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Fa */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Fd */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Fl */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Fn */ /* XXX needs arg */ /* FIXME */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ft */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ic */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* In */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Li */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Nd */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Nm */ /* FIXME */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Op */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ot */ /* XXX deprecated */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pa */  
         {   roff_text, roffarg_Rv, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Rv */  
         {   roff_text, roffarg_St, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* St */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Va */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Vt */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Xr */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* %A */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %B */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %D */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %I */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %J */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %N */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %O */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %P */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %R */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* %T */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %V */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ac */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ao */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Aq */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* At */ /* XXX at most 2 args */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bc */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 },  /* Bf */ /* FIXME */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bo */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bq */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Bsx */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Bx */  
         {roff_special, NULL, NULL, NULL, 0, ROFF_SPECIAL, 0 },  /* Db */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dc */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Do */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dq */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ec */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 },  /* Ef */ /* FIXME */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Em */ /* XXX needs arg */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Eo */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Fx */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ms */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* No */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ns */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Nx */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ox */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pc */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Pf */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_LAYOUT, ROFF_PARSED | ROFF_CALLABLE }, /* Po */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pq */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qc */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ql */  
         { roff_layout, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qo */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qq */  
         {  roff_close, NULL, roffparent_Re, NULL, ROFF_Rs, ROFF_LAYOUT, 0 }, /* Re */  
         { roff_layout, NULL, NULL, roffchild_Rs, 0, ROFF_LAYOUT, 0 },   /* Rs */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sc */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* So */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sq */  
         {roff_special, NULL, NULL, NULL, 0, ROFF_SPECIAL, 0 }, /* Sm */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sx */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sy */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Tn */  
         {   roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ux */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Xc */  
         {   NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Xo */  
         { roff_layout, NULL, NULL, roffchild_Fo, 0, ROFF_LAYOUT, 0 }, /* Fo */  
         {  roff_close, NULL, roffparent_Fc, NULL, ROFF_Fo, ROFF_LAYOUT, 0 }, /* Fc */  
         { roff_layout, NULL, NULL, roffchild_Oo, 0, ROFF_LAYOUT, 0 }, /* Oo */  
         {  roff_close, NULL, roffparent_Oc, NULL, ROFF_Oo, ROFF_LAYOUT, 0 }, /* Oc */  
         { roff_layout, roffarg_Bk, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Bk */  
         {  roff_close, NULL, NULL, NULL, ROFF_Bk, ROFF_LAYOUT, 0 }, /* Ek */  
         };  
   
 /* Table of all known token arguments. */                  if (NULL != (n = hash[buc])) {
 static  const int tokenargs[ROFF_ARGMAX] = {                          for ( ; n->next; n = n->next)
         0,              0,              0,              0,                                  /* Do nothing. */ ;
         0,              ROFF_VALUE,     ROFF_VALUE,     0,                          n->next = &roffs[i];
         0,              0,              0,              0,                  } else
         0,              0,              0,              0,                          hash[buc] = &roffs[i];
         0,              0,              ROFF_VALUE,     0,          }
         0,              0,              0,              0,  }
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         0,              0,              0,              0,  
         };  
   
 const   char *const toknamesp[ROFF_MAX] = {  
         "\\\"",         "Dd",           "Dt",           "Os",  
         "Sh",           "Ss",           "Pp",           "D1",  
         "Dl",           "Bd",           "Ed",           "Bl",  
         "El",           "It",           "Ad",           "An",  
         "Ar",           "Cd",           "Cm",           "Dv",  
         "Er",           "Ev",           "Ex",           "Fa",  
         "Fd",           "Fl",           "Fn",           "Ft",  
         "Ic",           "In",           "Li",           "Nd",  
         "Nm",           "Op",           "Ot",           "Pa",  
         "Rv",           "St",           "Va",           "Vt",  
         "Xr",           "\%A",          "\%B",          "\%D",  
         "\%I",          "\%J",          "\%N",          "\%O",  
         "\%P",          "\%R",          "\%T",          "\%V",  
         "Ac",           "Ao",           "Aq",           "At",  
         "Bc",           "Bf",           "Bo",           "Bq",  
         "Bsx",          "Bx",           "Db",           "Dc",  
         "Do",           "Dq",           "Ec",           "Ef",  
         "Em",           "Eo",           "Fx",           "Ms",  
         "No",           "Ns",           "Nx",           "Ox",  
         "Pc",           "Pf",           "Po",           "Pq",  
         "Qc",           "Ql",           "Qo",           "Qq",  
         "Re",           "Rs",           "Sc",           "So",  
         "Sq",           "Sm",           "Sx",           "Sy",  
         "Tn",           "Ux",           "Xc",           "Xo",  
         "Fo",           "Fc",           "Oo",           "Oc",  
         "Bk",           "Ek",  
         };  
   
 const   char *const tokargnamesp[ROFF_ARGMAX] = {  /*
         "split",                "nosplit",              "ragged",   * Look up a roff token by its name.  Returns ROFF_MAX if no macro by
         "unfilled",             "literal",              "file",   * the nil-terminated string name could be found.
         "offset",               "bullet",               "dash",   */
         "hyphen",               "item",                 "enum",  static enum rofft
         "tag",                  "diag",                 "hang",  roff_hash_find(const char *p)
         "ohang",                "inset",                "column",  
         "width",                "compact",              "std",  
         "p1003.1-88",           "p1003.1-90",           "p1003.1-96",  
         "p1003.1-2001",         "p1003.1-2004",         "p1003.1",  
         "p1003.1b",             "p1003.1b-93",          "p1003.1c-95",  
         "p1003.1g-2000",        "p1003.2-92",           "p1387.2-95",  
         "p1003.2",              "p1387.2",              "isoC-90",  
         "isoC-amd1",            "isoC-tcor1",           "isoC-tcor2",  
         "isoC-99",              "ansiC",                "ansiC-89",  
         "ansiC-99",             "ieee754",              "iso8802-3",  
         "xpg3",                 "xpg4",                 "xpg4.2",  
         "xpg4.3",               "xbd5",                 "xcu5",  
         "xsh5",                 "xns5",                 "xns5.2d2.0",  
         "xcurses4.2",           "susv2",                "susv3",  
         "svid4",                "filled",               "words",  
         };  
   
 const   char *const *toknames = toknamesp;  
 const   char *const *tokargnames = tokargnamesp;  
   
   
 int  
 roff_free(struct rofftree *tree, int flush)  
 {  {
         int              error, t;          int              buc;
         struct roffnode *n;          struct roffmac  *n;
   
         error = 0;          /*
            * libroff has an extremely simple hashtable, for the time
            * being, which simply keys on the first character, which must
            * be printable, then walks a chain.  It works well enough until
            * optimised.
            */
   
         if ( ! flush)          if (p[0] < ASCII_LO || p[0] > ASCII_HI)
                 goto end;                  return(ROFF_MAX);
   
         error = 1;          buc = ROFF_HASH(p);
   
         if (ROFF_PRELUDE & tree->state) {          if (NULL == (n = hash[buc]))
                 roff_warn(tree, NULL, "prelude never finished");                  return(ROFF_MAX);
                 goto end;          for ( ; n; n = n->next)
         }                  if (0 == strcmp(n->name, p))
                           return((enum rofft)(n - roffs));
   
         for (n = tree->last; n->parent; n = n->parent) {          return(ROFF_MAX);
                 if (0 != tokens[n->tok].ctx)  }
                         continue;  
                 roff_warn(tree, NULL, "closing explicit scope `%s'",  
                                 toknames[n->tok]);  
                 goto end;  
         }  
   
         while (tree->last) {  
                 t = tree->last->tok;  
                 if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT))  
                         goto end;  
         }  
   
         error = 0;  /*
    * Pop the current node off of the stack of roff instructions currently
    * pending.
    */
   static void
   roffnode_pop(struct roff *r)
   {
           struct roffnode *p;
   
 end:          assert(r->last);
           p = r->last;
   
         while (tree->last)          if (ROFF_el == p->tok)
                 roffnode_free(tree);                  if (r->rstackpos > -1)
                           r->rstackpos--;
   
         free(tree);          ROFF_DEBUG("roff: popping scope\n");
           r->last = r->last->parent;
         return(error ? 0 : 1);          if (p->end)
                   free(p->end);
           free(p);
 }  }
   
   
 struct rofftree *  /*
 roff_alloc(const struct roffcb *cb, void *args)   * Push a roff node onto the instruction stack.  This must later be
    * removed with roffnode_pop().
    */
   static void
   roffnode_push(struct roff *r, enum rofft tok, int line, int col)
 {  {
         struct rofftree *tree;          struct roffnode *p;
   
         assert(args);          p = mandoc_calloc(1, sizeof(struct roffnode));
         assert(cb);          p->tok = tok;
           p->parent = r->last;
           p->line = line;
           p->col = col;
           p->rule = p->parent ? p->parent->rule : ROFFRULE_DENY;
   
         if (NULL == (tree = calloc(1, sizeof(struct rofftree))))          r->last = p;
                 err(1, "calloc");  }
   
         tree->state = ROFF_PRELUDE;  
         tree->arg = args;  
   
         (void)memcpy(&tree->cb, cb, sizeof(struct roffcb));  static void
   roff_free1(struct roff *r)
   {
   
         return(tree);          while (r->last)
                   roffnode_pop(r);
           roff_freestr(r);
 }  }
   
   
 int  void
 roff_engine(struct rofftree *tree, char *buf)  roff_reset(struct roff *r)
 {  {
   
         tree->cur = buf;          roff_free1(r);
         assert(buf);  
   
         if (0 == *buf) {  
                 roff_warn(tree, buf, "blank line");  
                 return(0);  
         } else if ('.' != *buf)  
                 return(textparse(tree, buf));  
   
         return(roffparse(tree, buf));  
 }  }
   
   
 static int  void
 textparse(const struct rofftree *tree, char *buf)  roff_free(struct roff *r)
 {  {
   
         return((*tree->cb.roffdata)(tree->arg, 1, buf));          roff_free1(r);
           free(r);
 }  }
   
   
 static int  struct roff *
 roffargs(const struct rofftree *tree,  roff_alloc(struct regset *regs, void *data, const mandocmsg msg)
                 int tok, char *buf, char **argv)  
 {  {
         int              i;          struct roff     *r;
         char            *p;  
   
         assert(tok >= 0 && tok < ROFF_MAX);          r = mandoc_calloc(1, sizeof(struct roff));
         assert('.' == *buf);          r->regs = regs;
           r->msg = msg;
         p = buf;          r->data = data;
           r->rstackpos = -1;
         /* LINTED */  
         for (i = 0; *buf && i < ROFF_MAXARG; i++) {  
                 if ('\"' == *buf) {  
                         argv[i] = ++buf;  
                         while (*buf && '\"' != *buf)  
                                 buf++;  
                         if (0 == *buf) {  
                                 roff_err(tree, argv[i], "unclosed "  
                                                 "quote in argument "  
                                                 "list for `%s'",  
                                                 toknames[tok]);  
                                 return(0);  
                         }  
                 } else {  
                         argv[i] = buf++;  
                         while (*buf && ! isspace(*buf))  
                                 buf++;  
                         if (0 == *buf)  
                                 continue;  
                 }  
                 *buf++ = 0;  
                 while (*buf && isspace(*buf))  
                         buf++;  
         }  
   
         assert(i > 0);          roff_hash_init();
         if (ROFF_MAXARG == i && *buf) {          return(r);
                 roff_err(tree, p, "too many arguments for `%s'", toknames  
                                 [tok]);  
                 return(0);  
         }  
   
         argv[i] = NULL;  
         return(1);  
 }  }
   
   
 /* XXX */  /*
    * Pre-filter each and every line for reserved words (one beginning with
    * `\*', e.g., `\*(ab').  These must be handled before the actual line
    * is processed.
    */
 static int  static int
 roffscan(int tok, const int *tokv)  roff_res(struct roff *r, char **bufp, size_t *szp, int pos)
 {  {
           const char      *cp, *cpp, *st, *res;
           int              i, maxl;
           size_t           nsz;
           char            *n;
   
         if (NULL == tokv)          /* LINTED */
                 return(1);          for (cp = &(*bufp)[pos]; (cpp = strstr(cp, "\\*")); cp++) {
                   cp = cpp + 2;
                   switch (*cp) {
                   case ('('):
                           cp++;
                           maxl = 2;
                           break;
                   case ('['):
                           cp++;
                           maxl = 0;
                           break;
                   default:
                           maxl = 1;
                           break;
                   }
   
         for ( ; ROFF_MAX != *tokv; tokv++)                  st = cp;
                 if (tok == *tokv)  
                         return(1);  
   
         return(0);                  for (i = 0; 0 == maxl || i < maxl; i++, cp++) {
 }                          if ('\0' == *cp)
                                   return(1); /* Error. */
                           if (0 == maxl && ']' == *cp)
                                   break;
                   }
   
                   res = roff_getstrn(r, st, (size_t)i);
   
 static int                  if (NULL == res) {
 roffparse(struct rofftree *tree, char *buf)                          cp -= maxl ? 1 : 0;
 {                          continue;
         int               tok, t;                  }
         struct roffnode  *n;  
         char             *argv[ROFF_MAXARG];  
         char            **argvp;  
   
         if (ROFF_MAX == (tok = rofffindtok(buf + 1))) {                  ROFF_DEBUG("roff: splicing reserved: [%.*s]\n", i, st);
                 roff_err(tree, buf + 1, "bogus line macro");  
                 return(0);  
         } else if (NULL == tokens[tok].cb) {  
                 roff_err(tree, buf + 1, "unsupported macro `%s'",  
                                 toknames[tok]);  
                 return(0);  
         } else if (ROFF_COMMENT == tokens[tok].type)  
                 return(1);  
   
         if ( ! roffargs(tree, tok, buf, argv))  
                 return(0);  
   
         argvp = (char **)argv;                  nsz = *szp + strlen(res) + 1;
                   n = mandoc_malloc(nsz);
   
         /*                  *n = '\0';
          * Prelude macros break some assumptions, so branch now.  
          */  
   
         if (ROFF_PRELUDE & tree->state) {  
                 assert(NULL == tree->last);  
                 return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER));  
         } else  
                 assert(tree->last);  
   
         assert(ROFF_BODY & tree->state);                  strlcat(n, *bufp, (size_t)(cpp - *bufp + 1));
                   strlcat(n, res, nsz);
                   strlcat(n, cp + (maxl ? 0 : 1), nsz);
   
         /*                  free(*bufp);
          * First check that our possible parents and parent's possible  
          * children are satisfied.  
          */  
   
         if ( ! roffscan(tree->last->tok, tokens[tok].parents)) {                  *bufp = n;
                 roff_err(tree, *argvp, "`%s' has invalid parent `%s'",                  *szp = nsz;
                                 toknames[tok],  
                                 toknames[tree->last->tok]);  
                 return(0);                  return(0);
         }  
   
         if ( ! roffscan(tok, tokens[tree->last->tok].children)) {  
                 roff_err(tree, *argvp, "`%s' is invalid child of `%s'",  
                                 toknames[tok],  
                                 toknames[tree->last->tok]);  
                 return(0);  
         }          }
   
           return(1);
   }
   
   
   enum rofferr
   roff_parseln(struct roff *r, int ln, char **bufp,
                   size_t *szp, int pos, int *offs)
   {
           enum rofft       t;
           int              ppos;
   
         /*          /*
          * Branch if we're not a layout token.           * Run the reserved-word filter only if we have some reserved
            * words to fill in.
          */           */
   
         if (ROFF_LAYOUT != tokens[tok].type)          if (r->first_string && ! roff_res(r, bufp, szp, pos))
                 return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER));                  return(ROFF_RERUN);
   
         /*          /*
          * Check our scope rules.           * First, if a scope is open and we're not a macro, pass the
            * text through the macro's filter.  If a scope isn't open and
            * we're not a macro, just let it through.
          */           */
   
         if (0 == tokens[tok].ctx)          if (r->last && ! ROFF_CTL((*bufp)[pos])) {
                 return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER));                  t = r->last->tok;
                   assert(roffs[t].text);
                   ROFF_DEBUG("roff: intercept scoped text: %s, [%s]\n",
                                   roffs[t].name, &(*bufp)[pos]);
                   return((*roffs[t].text)
                                   (r, t, bufp, szp,
                                    ln, pos, pos, offs));
           } else if ( ! ROFF_CTL((*bufp)[pos]))
                   return(ROFF_CONT);
   
         /*          /*
          * First consider implicit-end tags, like as follows:           * If a scope is open, go to the child handler for that macro,
          *      .Sh SECTION 1           * as it may want to preprocess before doing anything with it.
          *      .Sh SECTION 2  
          * In this, we want to close the scope of the NAME section.  If  
          * there's an intermediary implicit-end tag, such as  
          *      .Sh SECTION 1  
          *      .Ss Subsection 1  
          *      .Sh SECTION 2  
          * then it must be closed as well.  
          */           */
   
         if (tok == tokens[tok].ctx) {          if (r->last) {
                 /*                  t = r->last->tok;
                  * First search up to the point where we must close.                  assert(roffs[t].sub);
                  * If one doesn't exist, then we can open a new scope.                  ROFF_DEBUG("roff: intercept scoped context: %s, [%s]\n",
                  */                                  roffs[t].name, &(*bufp)[pos]);
                   return((*roffs[t].sub)
                 for (n = tree->last; n; n = n->parent) {                                  (r, t, bufp, szp,
                         assert(0 == tokens[n->tok].ctx ||                                   ln, pos, pos, offs));
                                         n->tok == tokens[n->tok].ctx);  
                         if (n->tok == tok)  
                                 break;  
                         if (ROFF_SHALLOW & tokens[tok].flags) {  
                                 n = NULL;  
                                 break;  
                         }  
                 }  
   
                 /*  
                  * Create a new scope, as no previous one exists to  
                  * close out.  
                  */  
   
                 if (NULL == n)  
                         return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER));  
   
                 /*  
                  * Close out all intermediary scoped blocks, then hang  
                  * the current scope from our predecessor's parent.  
                  */  
   
                 do {  
                         t = tree->last->tok;  
                         if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT))  
                                 return(0);  
                 } while (t != tok);  
   
                 return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER));  
         }          }
   
         /*          /*
          * Now consider explicit-end tags, where we want to close back           * Lastly, as we've no scope open, try to look up and execute
          * to a specific tag.  Example:           * the new macro.  If no macro is found, simply return and let
          *      .Bl           * the compilers handle it.
          *      .It Item.  
          *      .El  
          * In this, the `El' tag closes out the scope of `Bl'.  
          */           */
   
         assert(tree->last);          ppos = pos;
         assert(tok != tokens[tok].ctx && 0 != tokens[tok].ctx);          if (ROFF_MAX == (t = roff_parse(*bufp, &pos)))
                   return(ROFF_CONT);
   
         /* LINTED */          ROFF_DEBUG("roff: intercept new-scope: %s, [%s]\n",
         do {                          roffs[t].name, &(*bufp)[pos]);
                 t = tree->last->tok;          assert(roffs[t].proc);
                 if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT))          return((*roffs[t].proc)
                         return(0);                          (r, t, bufp, szp,
         } while (t != tokens[tok].ctx);                           ln, ppos, pos, offs));
   
         assert(tree->last);  
         return(1);  
 }  }
   
   
 static int  int
 rofffindarg(const char *name)  roff_endparse(struct roff *r)
 {  {
         size_t           i;  
   
         /* FIXME: use a table, this is slow but ok for now. */          if (NULL == r->last)
                   return(1);
         /* LINTED */          return((*r->msg)(MANDOCERR_SCOPEEXIT, r->data, r->last->line,
         for (i = 0; i < ROFF_ARGMAX; i++)                                  r->last->col, NULL));
                 /* LINTED */  
                 if (0 == strcmp(name, tokargnames[i]))  
                         return((int)i);  
   
         return(ROFF_ARGMAX);  
 }  }
   
   
 static int  /*
 rofffindtok(const char *buf)   * Parse a roff node's type from the input buffer.  This must be in the
    * form of ".foo xxx" in the usual way.
    */
   static enum rofft
   roff_parse(const char *buf, int *pos)
 {  {
         char             token[4];          int              j;
         size_t           i;          char             mac[5];
           enum rofft       t;
   
         for (i = 0; *buf && ! isspace(*buf) && i < 3; i++, buf++)          assert(ROFF_CTL(buf[*pos]));
                 token[i] = *buf;          (*pos)++;
   
         if (i == 3)          while (buf[*pos] && (' ' == buf[*pos] || '\t' == buf[*pos]))
                   (*pos)++;
   
           if ('\0' == buf[*pos])
                 return(ROFF_MAX);                  return(ROFF_MAX);
   
         token[i] = 0;          for (j = 0; j < 4; j++, (*pos)++)
                   if ('\0' == (mac[j] = buf[*pos]))
                           break;
                   else if (' ' == buf[*pos] || (j && '\\' == buf[*pos]))
                           break;
   
         /* FIXME: use a table, this is slow but ok for now. */          if (j == 4 || j < 1)
                   return(ROFF_MAX);
   
         /* LINTED */          mac[j] = '\0';
         for (i = 0; i < ROFF_MAX; i++)  
                 /* LINTED */  
                 if (0 == strcmp(toknames[i], token))  
                         return((int)i);  
   
         return(ROFF_MAX);          if (ROFF_MAX == (t = roff_hash_find(mac)))
                   return(t);
   
           while (buf[*pos] && ' ' == buf[*pos])
                   (*pos)++;
   
           return(t);
 }  }
   
   
 static int  static int
 roffispunct(const char *p)  roff_parse_nat(const char *buf, unsigned int *res)
 {  {
           char            *ep;
           long             lval;
   
         if (0 == *p)          errno = 0;
           lval = strtol(buf, &ep, 10);
           if (buf[0] == '\0' || *ep != '\0')
                 return(0);                  return(0);
         if (0 != *(p + 1))          if ((errno == ERANGE &&
                           (lval == LONG_MAX || lval == LONG_MIN)) ||
                           (lval > INT_MAX || lval < 0))
                 return(0);                  return(0);
   
         switch (*p) {          *res = (unsigned int)lval;
         case('{'):          return(1);
   }
   
   
   /* ARGSUSED */
   static enum rofferr
   roff_cblock(ROFF_ARGS)
   {
   
           /*
            * A block-close `..' should only be invoked as a child of an
            * ignore macro, otherwise raise a warning and just ignore it.
            */
   
           if (NULL == r->last) {
                   if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL))
                           return(ROFF_ERR);
                   return(ROFF_IGN);
           }
   
           switch (r->last->tok) {
           case (ROFF_am):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('.'):          case (ROFF_ami):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case(','):          case (ROFF_am1):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case(';'):          case (ROFF_de):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case(':'):          case (ROFF_dei):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('?'):          case (ROFF_de1):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('!'):          case (ROFF_ig):
                 /* FALLTHROUGH */  
         case('('):  
                 /* FALLTHROUGH */  
         case(')'):  
                 /* FALLTHROUGH */  
         case('['):  
                 /* FALLTHROUGH */  
         case(']'):  
                 /* FALLTHROUGH */  
         case('}'):  
                 return(1);  
         default:  
                 break;                  break;
           default:
                   if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL))
                           return(ROFF_ERR);
                   return(ROFF_IGN);
         }          }
   
         return(0);          if ((*bufp)[pos])
                   if ( ! (*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL))
                           return(ROFF_ERR);
   
           roffnode_pop(r);
           roffnode_cleanscope(r);
           return(ROFF_IGN);
   
 }  }
   
   
 static int  static void
 rofffindcallable(const char *name)  roffnode_cleanscope(struct roff *r)
 {  {
         int              c;  
   
         if (ROFF_MAX == (c = rofffindtok(name)))          while (r->last) {
                 return(ROFF_MAX);                  if (--r->last->endspan < 0)
         assert(c >= 0 && c < ROFF_MAX);                          break;
         return(ROFF_CALLABLE & tokens[c].flags ? c : ROFF_MAX);                  roffnode_pop(r);
           }
 }  }
   
   
 static struct roffnode *  /* ARGSUSED */
 roffnode_new(int tokid, struct rofftree *tree)  static enum rofferr
   roff_ccond(ROFF_ARGS)
 {  {
         struct roffnode *p;  
   
         if (NULL == (p = malloc(sizeof(struct roffnode))))  
                 err(1, "malloc");  
   
         p->tok = tokid;          if (NULL == r->last) {
         p->parent = tree->last;                  if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL))
         tree->last = p;                          return(ROFF_ERR);
                   return(ROFF_IGN);
           }
   
         return(p);          switch (r->last->tok) {
           case (ROFF_el):
                   /* FALLTHROUGH */
           case (ROFF_ie):
                   /* FALLTHROUGH */
           case (ROFF_if):
                   break;
           default:
                   if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL))
                           return(ROFF_ERR);
                   return(ROFF_IGN);
           }
   
           if (r->last->endspan > -1) {
                   if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL))
                           return(ROFF_ERR);
                   return(ROFF_IGN);
           }
   
           if ((*bufp)[pos])
                   if ( ! (*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL))
                           return(ROFF_ERR);
   
           roffnode_pop(r);
           roffnode_cleanscope(r);
           return(ROFF_IGN);
 }  }
   
   
 static int  /* ARGSUSED */
 roffargok(int tokid, int argid)  static enum rofferr
   roff_block(ROFF_ARGS)
 {  {
         const int       *c;          int             sv;
           size_t          sz;
   
         if (NULL == (c = tokens[tokid].args))          if (ROFF_ig != tok && '\0' == (*bufp)[pos]) {
                 return(0);                  if ( ! (*r->msg)(MANDOCERR_NOARGS, r->data, ln, ppos, NULL))
                           return(ROFF_ERR);
                   return(ROFF_IGN);
           } else if (ROFF_ig != tok) {
                   while ((*bufp)[pos] && ' ' != (*bufp)[pos])
                           pos++;
                   while (' ' == (*bufp)[pos])
                           pos++;
           }
   
         for ( ; ROFF_ARGMAX != *c; c++)          roffnode_push(r, tok, ln, ppos);
                 if (argid == *c)  
                         return(1);  
   
         return(0);          if ('\0' == (*bufp)[pos])
 }                  return(ROFF_IGN);
   
           sv = pos;
           while ((*bufp)[pos] && ' ' != (*bufp)[pos] &&
                           '\t' != (*bufp)[pos])
                   pos++;
   
 static void          /*
 roffnode_free(struct rofftree *tree)           * Note: groff does NOT like escape characters in the input.
 {           * Instead of detecting this, we're just going to let it fly and
         struct roffnode *p;           * to hell with it.
            */
   
         assert(tree->last);          assert(pos > sv);
           sz = (size_t)(pos - sv);
   
         p = tree->last;          if (1 == sz && '.' == (*bufp)[sv])
         tree->last = tree->last->parent;                  return(ROFF_IGN);
         free(p);  
           r->last->end = mandoc_malloc(sz + 1);
   
           memcpy(r->last->end, *bufp + sv, sz);
           r->last->end[(int)sz] = '\0';
   
           if ((*bufp)[pos])
                   if ( ! (*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL))
                           return(ROFF_ERR);
   
           return(ROFF_IGN);
 }  }
   
   
 static int  /* ARGSUSED */
 roffnextopt(const struct rofftree *tree, int tok,  static enum rofferr
                 char ***in, char **val)  roff_block_sub(ROFF_ARGS)
 {  {
         char            *arg, **argv;          enum rofft      t;
         int              v;          int             i, j;
   
         *val = NULL;          /*
         argv = *in;           * First check whether a custom macro exists at this level.  If
         assert(argv);           * it does, then check against it.  This is some of groff's
            * stranger behaviours.  If we encountered a custom end-scope
            * tag and that tag also happens to be a "real" macro, then we
            * need to try interpreting it again as a real macro.  If it's
            * not, then return ignore.  Else continue.
            */
   
         if (NULL == (arg = *argv))          if (r->last->end) {
                 return(-1);                  i = pos + 1;
         if ('-' != *arg)                  while (' ' == (*bufp)[i] || '\t' == (*bufp)[i])
                 return(-1);                          i++;
   
         if (ROFF_ARGMAX == (v = rofffindarg(arg + 1))) {                  for (j = 0; r->last->end[j]; j++, i++)
                 roff_warn(tree, arg, "argument-like parameter `%s' to "                          if ((*bufp)[i] != r->last->end[j])
                                 "`%s'", &arg[1], toknames[tok]);                                  break;
                 return(-1);  
         }  
   
         if ( ! roffargok(tok, v)) {  
                 roff_warn(tree, arg, "invalid argument parameter `%s' to "  
                                 "`%s'", tokargnames[v], toknames[tok]);  
                 return(-1);  
         }  
   
         if ( ! (ROFF_VALUE & tokenargs[v]))  
                 return(v);  
   
         *in = ++argv;                  if ('\0' == r->last->end[j] &&
                                   ('\0' == (*bufp)[i] ||
                                    ' ' == (*bufp)[i] ||
                                    '\t' == (*bufp)[i])) {
                           roffnode_pop(r);
                           roffnode_cleanscope(r);
   
         if (NULL == *argv) {                          if (ROFF_MAX != roff_parse(*bufp, &pos))
                 roff_err(tree, arg, "empty value of `%s' for `%s'",                                  return(ROFF_RERUN);
                                 tokargnames[v], toknames[tok]);                          return(ROFF_IGN);
                 return(ROFF_ARGMAX);                  }
         }          }
   
         return(v);          /*
            * If we have no custom end-query or lookup failed, then try
            * pulling it out of the hashtable.
            */
   
           ppos = pos;
           t = roff_parse(*bufp, &pos);
   
           /* If we're not a comment-end, then throw it away. */
           if (ROFF_cblock != t)
                   return(ROFF_IGN);
   
           assert(roffs[t].proc);
           return((*roffs[t].proc)(r, t, bufp, szp,
                                   ln, ppos, pos, offs));
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static  int  static enum rofferr
 roff_Dd(ROFFCALL_ARGS)  roff_block_text(ROFF_ARGS)
 {  {
   
         if (ROFF_BODY & tree->state) {          return(ROFF_IGN);
                 assert( ! (ROFF_PRELUDE & tree->state));  }
                 assert(ROFF_PRELUDE_Dd & tree->state);  
                 return(roff_text(tok, tree, argv, type));  
         }  
   
         assert(ROFF_PRELUDE & tree->state);  
         assert( ! (ROFF_BODY & tree->state));  
   
         if (ROFF_PRELUDE_Dd & tree->state) {  /* ARGSUSED */
                 roff_err(tree, *argv, "repeated `Dd' in prelude");  static enum rofferr
                 return(0);  roff_cond_sub(ROFF_ARGS)
         } else if (ROFF_PRELUDE_Dt & tree->state) {  {
                 roff_err(tree, *argv, "out-of-order `Dd' in prelude");          enum rofft       t;
                 return(0);          enum roffrule    rr;
         }  
   
         /* TODO: parse date. */          ppos = pos;
           rr = r->last->rule;
   
         assert(NULL == tree->last);          /*
         tree->state |= ROFF_PRELUDE_Dd;           * Clean out scope.  If we've closed ourselves, then don't
            * continue.
            */
   
         return(1);          roffnode_cleanscope(r);
   
           if (ROFF_MAX == (t = roff_parse(*bufp, &pos))) {
                   if ('\\' == (*bufp)[pos] && '}' == (*bufp)[pos + 1])
                           return(roff_ccond
                                   (r, ROFF_ccond, bufp, szp,
                                    ln, pos, pos + 2, offs));
                   return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);
           }
   
           /*
            * A denied conditional must evaluate its children if and only
            * if they're either structurally required (such as loops and
            * conditionals) or a closing macro.
            */
           if (ROFFRULE_DENY == rr)
                   if ( ! (ROFFMAC_STRUCT & roffs[t].flags))
                           if (ROFF_ccond != t)
                                   return(ROFF_IGN);
   
           assert(roffs[t].proc);
           return((*roffs[t].proc)(r, t, bufp, szp,
                                   ln, ppos, pos, offs));
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static  int  static enum rofferr
 roff_Dt(ROFFCALL_ARGS)  roff_cond_text(ROFF_ARGS)
 {  {
           char            *ep, *st;
           enum roffrule    rr;
   
         if (ROFF_BODY & tree->state) {          rr = r->last->rule;
                 assert( ! (ROFF_PRELUDE & tree->state));  
                 assert(ROFF_PRELUDE_Dt & tree->state);  
                 return(roff_text(tok, tree, argv, type));  
         }  
   
         assert(ROFF_PRELUDE & tree->state);          /*
         assert( ! (ROFF_BODY & tree->state));           * We display the value of the text if out current evaluation
            * scope permits us to do so.
            */
   
         if ( ! (ROFF_PRELUDE_Dd & tree->state)) {          /* FIXME: use roff_ccond? */
                 roff_err(tree, *argv, "out-of-order `Dt' in prelude");  
                 return(0);          st = &(*bufp)[pos];
         } else if (ROFF_PRELUDE_Dt & tree->state) {          if (NULL == (ep = strstr(st, "\\}"))) {
                 roff_err(tree, *argv, "repeated `Dt' in prelude");                  roffnode_cleanscope(r);
                 return(0);                  return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);
         }          }
   
         /* TODO: parse date. */          if (ep == st || (ep > st && '\\' != *(ep - 1)))
                   roffnode_pop(r);
   
         assert(NULL == tree->last);          roffnode_cleanscope(r);
         tree->state |= ROFF_PRELUDE_Dt;          return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);
   
         return(1);  
 }  }
   
   
 /* ARGSUSED */  static enum roffrule
 static  int  roff_evalcond(const char *v, int *pos)
 roff_Os(ROFFCALL_ARGS)  
 {  {
   
         if (ROFF_EXIT == type) {          switch (v[*pos]) {
                 roffnode_free(tree);          case ('n'):
                 return((*tree->cb.rofftail)(tree->arg));                  (*pos)++;
         } else if (ROFF_BODY & tree->state) {                  return(ROFFRULE_ALLOW);
                 assert( ! (ROFF_PRELUDE & tree->state));          case ('e'):
                 assert(ROFF_PRELUDE_Os & tree->state);                  /* FALLTHROUGH */
                 return(roff_text(tok, tree, argv, type));          case ('o'):
                   /* FALLTHROUGH */
           case ('t'):
                   (*pos)++;
                   return(ROFFRULE_DENY);
           default:
                   break;
         }          }
   
         assert(ROFF_PRELUDE & tree->state);          while (v[*pos] && ' ' != v[*pos])
         if ( ! (ROFF_PRELUDE_Dt & tree->state) ||                  (*pos)++;
                         ! (ROFF_PRELUDE_Dd & tree->state)) {          return(ROFFRULE_DENY);
                 roff_err(tree, *argv, "out-of-order `Os' in prelude");  }
                 return(0);  
         }  
   
         /* TODO: extract OS. */  /* ARGSUSED */
   static enum rofferr
   roff_line_ignore(ROFF_ARGS)
   {
   
         tree->state |= ROFF_PRELUDE_Os;          return(ROFF_IGN);
         tree->state &= ~ROFF_PRELUDE;  }
         tree->state |= ROFF_BODY;  
   
         assert(NULL == tree->last);  /* ARGSUSED */
   static enum rofferr
   roff_line_error(ROFF_ARGS)
   {
   
         if (NULL == roffnode_new(tok, tree))          (*r->msg)(MANDOCERR_REQUEST, r->data, ln, ppos, roffs[tok].name);
                 return(0);          return(ROFF_IGN);
   
         return((*tree->cb.roffhead)(tree->arg));  
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static enum rofferr
 roff_layout(ROFFCALL_ARGS)  roff_cond(ROFF_ARGS)
 {  {
         int              i, c, argcp[ROFF_MAXARG];          int              sv;
         char            *v, *argvp[ROFF_MAXARG];          enum roffrule    rule;
   
         if (ROFF_PRELUDE & tree->state) {          /* Stack overflow! */
                 roff_err(tree, *argv, "`%s' disallowed in prelude",  
                                 toknames[tok]);          if (ROFF_ie == tok && r->rstackpos == RSTACK_MAX - 1) {
                 return(0);                  (*r->msg)(MANDOCERR_MEM, r->data, ln, ppos, NULL);
                   return(ROFF_ERR);
         }          }
   
         if (ROFF_EXIT == type) {          /* First, evaluate the conditional. */
                 roffnode_free(tree);  
                 return((*tree->cb.roffblkout)(tree->arg, tok));  
         }  
   
         i = 0;          if (ROFF_el == tok) {
         argv++;                  /*
                    * An `.el' will get the value of the current rstack
                    * entry set in prior `ie' calls or defaults to DENY.
                    */
                   if (r->rstackpos < 0)
                           rule = ROFFRULE_DENY;
                   else
                           rule = r->rstack[r->rstackpos];
           } else
                   rule = roff_evalcond(*bufp, &pos);
   
         while (-1 != (c = roffnextopt(tree, tok, &argv, &v))) {          sv = pos;
                 if (ROFF_ARGMAX == c)  
                         return(0);  
   
                 argcp[i] = c;          while (' ' == (*bufp)[pos])
                 argvp[i] = v;                  pos++;
                 i++;  
                 argv++;  
         }  
   
         argcp[i] = ROFF_ARGMAX;          /*
         argvp[i] = NULL;           * Roff is weird.  If we have just white-space after the
            * conditional, it's considered the BODY and we exit without
            * really doing anything.  Warn about this.  It's probably
            * wrong.
            */
   
         if (NULL == roffnode_new(tok, tree))          if ('\0' == (*bufp)[pos] && sv != pos) {
                 return(0);                  if ((*r->msg)(MANDOCERR_NOARGS, r->data, ln, ppos, NULL))
                           return(ROFF_IGN);
                   return(ROFF_ERR);
           }
   
         if ( ! (*tree->cb.roffblkin)(tree->arg, tok, argcp, argvp))          roffnode_push(r, tok, ln, ppos);
                 return(0);  
   
         if (NULL == *argv)          r->last->rule = rule;
                 return(1);  
   
         if ( ! (*tree->cb.roffin)(tree->arg, tok, argcp, argvp))          ROFF_DEBUG("roff: cond: %s -> %s\n", roffs[tok].name,
                 return(0);                          ROFFRULE_ALLOW == rule ?  "allow" : "deny");
   
         if ( ! (ROFF_PARSED & tokens[tok].flags)) {          if (ROFF_ie == tok) {
                 i = 0;                  /*
                 while (*argv) {                   * An if-else will put the NEGATION of the current
                         if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++))                   * evaluated conditional into the stack.
                                 return(0);                   */
                         i = 1;                  r->rstackpos++;
                 }                  if (ROFFRULE_DENY == r->last->rule)
                 return((*tree->cb.roffout)(tree->arg, tok));                          r->rstack[r->rstackpos] = ROFFRULE_ALLOW;
                   else
                           r->rstack[r->rstackpos] = ROFFRULE_DENY;
         }          }
   
         i = 0;          /* If the parent has false as its rule, then so do we. */
         while (*argv) {  
                 if (ROFF_MAX != (c = rofffindcallable(*argv))) {  
                         if (NULL == tokens[c].cb) {  
                                 roff_err(tree, *argv, "unsupported "  
                                                 "macro `%s'",  
                                                 toknames[c]);  
                                 return(0);  
                         }  
                         if ( ! (*tokens[c].cb)(c, tree, argv, ROFF_ENTER))  
                                 return(0);  
                         break;  
                 }  
   
                 assert(tree->arg);          if (r->last->parent && ROFFRULE_DENY == r->last->parent->rule) {
                 if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++))                  r->last->rule = ROFFRULE_DENY;
                         return(0);                  ROFF_DEBUG("roff: cond override: %s -> deny\n",
                 i = 1;                                  roffs[tok].name);
         }          }
   
         /*          /*
          * If we're the first parser (*argv == tree->cur) then purge out           * Determine scope.  If we're invoked with "\{" trailing the
          * any additional punctuation, should there be any remaining at           * conditional, then we're in a multiline scope.  Else our scope
          * the end of line.           * expires on the next line.
          */           */
   
         if (ROFF_PARSED & tokens[tok].flags && *argv) {          r->last->endspan = 1;
                 i = 0;  
                 while (argv[i])  
                         i++;  
   
                 assert(i > 0);          if ('\\' == (*bufp)[pos] && '{' == (*bufp)[pos + 1]) {
                 if ( ! roffispunct(argv[--i]))                  r->last->endspan = -1;
                         return((*tree->cb.roffout)(tree->arg, tok));                  pos += 2;
                   ROFF_DEBUG("roff: cond-scope: %s, multi-line\n",
                                   roffs[tok].name);
           } else
                   ROFF_DEBUG("roff: cond-scope: %s, one-line\n",
                                   roffs[tok].name);
   
                 while (i >= 0 && roffispunct(argv[i]))          /*
                         i--;           * If there are no arguments on the line, the next-line scope is
            * assumed.
            */
   
                 assert(0 != i);          if ('\0' == (*bufp)[pos])
                 i++;                  return(ROFF_IGN);
   
                 while (argv[i])          /* Otherwise re-run the roff parser after recalculating. */
                         if ( ! (*tree->cb.roffdata)(tree->arg, 0, argv[i++]))  
                                 return(0);  
         }  
   
         return((*tree->cb.roffout)(tree->arg, tok));          *offs = pos;
           return(ROFF_RERUN);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static enum rofferr
 roff_text(ROFFCALL_ARGS)  roff_ds(ROFF_ARGS)
 {  {
         int              i, j, first, c, argcp[ROFF_MAXARG];          char            *name, *string;
         char            *v, *argvp[ROFF_MAXARG];  
   
         if (ROFF_PRELUDE & tree->state) {          /*
                 roff_err(tree, *argv, "`%s' disallowed in prelude",           * A symbol is named by the first word following the macro
                                 toknames[tok]);           * invocation up to a space.  Its value is anything after the
                 return(0);           * name's trailing whitespace and optional double-quote.  Thus,
         }           *
            *  [.ds foo "bar  "     ]
            *
            * will have `bar  "     ' as its value.
            */
   
         /* FIXME: breaks if passed from roff_layout. */          name = *bufp + pos;
         first = *argv == tree->cur;          if ('\0' == *name)
                   return(ROFF_IGN);
   
         i = 0;          string = name;
         argv++;          /* Read until end of name. */
           while (*string && ' ' != *string)
                   string++;
   
         while (-1 != (c = roffnextopt(tree, tok, &argv, &v))) {          /* Nil-terminate name. */
                 if (ROFF_ARGMAX == c)          if (*string)
                         return(0);                  *(string++) = '\0';
   
           /* Read past spaces. */
           while (*string && ' ' == *string)
                   string++;
   
                 argcp[i] = c;          /* Read passed initial double-quote. */
                 argvp[i] = v;          if (*string && '"' == *string)
                 i++;                  string++;
                 argv++;  
         }  
   
         argcp[i] = ROFF_ARGMAX;          /* The rest is the value. */
         argvp[i] = NULL;          roff_setstr(r, name, string);
           return(ROFF_IGN);
   }
   
         if ( ! (*tree->cb.roffin)(tree->arg, tok, argcp, argvp))  
                 return(0);  
   
         if ( ! (ROFF_PARSED & tokens[tok].flags)) {  /* ARGSUSED */
                 i = 0;  static enum rofferr
                 while (*argv) {  roff_nr(ROFF_ARGS)
                         if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++))  {
                                 return(0);          const char      *key, *val;
                         i = 1;          struct reg      *rg;
                 }  
                 return((*tree->cb.roffout)(tree->arg, tok));  
         }  
   
         i = 0;          key = &(*bufp)[pos];
         while (*argv) {          rg = r->regs->regs;
                 if (ROFF_MAX == (c = rofffindcallable(*argv))) {  
                         /*  
                          * If all that remains is roff punctuation, then  
                          * close out our scope and return.  
                          */  
                         if (roffispunct(*argv)) {  
                                 for (j = 0; argv[j]; j++)  
                                         if ( ! roffispunct(argv[j]))  
                                                 break;  
                                 if (NULL == argv[j])  
                                         break;  
                                 i = 1;  
                         }  
   
                         if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++))  
                                 return(0);  
   
                         i = 1;          /* Parse register request. */
                         continue;          while ((*bufp)[pos] && ' ' != (*bufp)[pos])
                 }                  pos++;
   
                 /*          /*
                  * A sub-command has been found.  Execute it and           * Set our nil terminator.  Because this line is going to be
                  * discontinue parsing for arguments.           * ignored anyway, we can munge it as we please.
                  */  
   
                 if (NULL == tokens[c].cb) {  
                         roff_err(tree, *argv, "unsupported macro `%s'",  
                                         toknames[c]);  
                         return(0);  
                 }  
   
                 if ( ! (*tokens[c].cb)(c, tree, argv, ROFF_ENTER))  
                         return(0);  
   
                 break;  
         }  
   
         if ( ! (*tree->cb.roffout)(tree->arg, tok))  
                 return(0);  
   
         /*  
          * If we're the first parser (*argv == tree->cur) then purge out  
          * any additional punctuation, should there be any remaining at  
          * the end of line.  
          */           */
           if ((*bufp)[pos])
                   (*bufp)[pos++] = '\0';
   
         if (first && *argv) {          /* Skip whitespace to register token. */
                 i = 0;          while ((*bufp)[pos] && ' ' == (*bufp)[pos])
                 while (argv[i])                  pos++;
                         i++;  
   
                 assert(i > 0);          val = &(*bufp)[pos];
                 if ( ! roffispunct(argv[--i]))  
                         return(1);  
   
                 while (i >= 0 && roffispunct(argv[i]))          /* Process register token. */
                         i--;  
   
                 assert(0 != i);          if (0 == strcmp(key, "nS")) {
                 i++;                  rg[(int)REG_nS].set = 1;
                   if ( ! roff_parse_nat(val, &rg[(int)REG_nS].v.u))
                           rg[(int)REG_nS].v.u = 0;
   
                 while (argv[i])                  ROFF_DEBUG("roff: register nS: %u\n",
                         if ( ! (*tree->cb.roffdata)(tree->arg, 0, argv[i++]))                                  rg[(int)REG_nS].v.u);
                                 return(0);          } else
         }                  ROFF_DEBUG("roff: ignoring register: %s\n", key);
   
         return(1);          return(ROFF_IGN);
 }  }
   
   
 /* ARGSUSED */  static char *
 static int  roff_strdup(const char *name)
 roff_comment(ROFFCALL_ARGS)  
 {  {
           char            *namecopy, *sv;
   
         return(1);          /*
            * This isn't a nice simple mandoc_strdup() because we must
            * handle roff's stupid double-escape rule.
            */
           sv = namecopy = mandoc_malloc(strlen(name) + 1);
           while (*name) {
                   if ('\\' == *name && '\\' == *(name + 1))
                           name++;
                   *namecopy++ = *name++;
           }
   
           *namecopy = '\0';
           return(sv);
 }  }
   
   
 /* ARGSUSED */  static void
 static int  roff_setstr(struct roff *r, const char *name, const char *string)
 roff_close(ROFFCALL_ARGS)  
 {  {
           struct roffstr   *n;
           char             *namecopy;
   
         return(1);          n = r->first_string;
 }          while (n && strcmp(name, n->name))
                   n = n->next;
   
           if (NULL == n) {
                   namecopy = mandoc_strdup(name);
                   n = mandoc_malloc(sizeof(struct roffstr));
                   n->name = namecopy;
                   n->next = r->first_string;
                   r->first_string = n;
           } else
                   free(n->string);
   
 /* ARGSUSED */          /* Don't use mandoc_strdup: clean out double-escapes. */
 static int          n->string = string ? roff_strdup(string) : NULL;
 roff_special(ROFFCALL_ARGS)          ROFF_DEBUG("roff: new symbol: [%s] = [%s]\n", name, n->string);
 {  
   
         return((*tree->cb.roffspecial)(tree->arg, tok));  
 }  }
   
   
 static void  static const char *
 roff_warn(const struct rofftree *tree, const char *pos, char *fmt, ...)  roff_getstrn(const struct roff *r, const char *name, size_t len)
 {  {
         va_list          ap;          const struct roffstr *n;
         char             buf[128];  
   
         va_start(ap, fmt);          n = r->first_string;
         (void)vsnprintf(buf, sizeof(buf), fmt, ap);          while (n && (strncmp(name, n->name, len) || '\0' != n->name[(int)len]))
         va_end(ap);                  n = n->next;
   
         (*tree->cb.roffmsg)(tree->arg,          return(n ? n->string : NULL);
                         ROFF_WARN, tree->cur, pos, buf);  
 }  }
   
   
 static void  static void
 roff_err(const struct rofftree *tree, const char *pos, char *fmt, ...)  roff_freestr(struct roff *r)
 {  {
         va_list          ap;          struct roffstr   *n, *nn;
         char             buf[128];  
   
         va_start(ap, fmt);          for (n = r->first_string; n; n = nn) {
         (void)vsnprintf(buf, sizeof(buf), fmt, ap);                  free(n->name);
         va_end(ap);                  free(n->string);
                   nn = n->next;
                   free(n);
           }
   
         (*tree->cb.roffmsg)(tree->arg,          r->first_string = NULL;
                         ROFF_ERROR, tree->cur, pos, buf);  
 }  }

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.104

CVSweb