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

Diff for /mandoc/term.c between version 1.1 and 1.10

version 1.1, 2009/02/20 11:04:23 version 1.10, 2009/02/23 09:33:34
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
  *   *
  * 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
Line 17 
Line 17 
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
 #include <assert.h>  #include <assert.h>
 #include <curses.h>  
 #include <err.h>  
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdio.h>  
 #include <string.h>  #include <string.h>
 #include <term.h>  
 #include <unistd.h>  
   
 #include "mdoc.h"  #include "term.h"
   
   #define INDENT            4
   
 static  int              termprint_r(size_t, size_t,  /*
                                 const struct mdoc_node *);   * Performs actions on nodes of the abstract syntax tree.  Both pre- and
 static  void             termprint_head(size_t,   * post-fix operations are defined here.
                                 const struct mdoc_meta *);   */
 static  void             termprint_tail(size_t,  
                                 const struct mdoc_meta *);  
   
 static  char            *arch2a(enum mdoc_arch);  /* FIXME: indent/tab. */
 static  char            *vol2a(enum mdoc_vol);  
 static  char            *msec2a(enum mdoc_msec);  
   
 static  size_t           ttitle2a(char *, enum mdoc_vol, enum mdoc_msec,  #define TTYPE_PROG        0
                                 enum mdoc_arch, size_t);  #define TTYPE_CMD_FLAG    1
   #define TTYPE_CMD_ARG     2
   #define TTYPE_SECTION     3
   #define TTYPE_FUNC_DECL   4
   #define TTYPE_VAR_DECL    5
   #define TTYPE_FUNC_TYPE   6
   #define TTYPE_FUNC_NAME   7
   #define TTYPE_FUNC_ARG    8
   #define TTYPE_LINK        9
   #define TTYPE_SSECTION    10
   #define TTYPE_FILE        11
   #define TTYPE_NMAX        12
   
   /*
    * These define "styles" for element types, like command arguments or
    * executable names.  This is useful when multiple macros must decorate
    * the same thing (like .Ex -std cmd and .Nm cmd).
    */
   
 static char *  const   int ttypes[TTYPE_NMAX] = {
 arch2a(enum mdoc_arch arch)          TERMP_BOLD,             /* TTYPE_PROG */
           TERMP_BOLD,             /* TTYPE_CMD_FLAG */
           TERMP_UNDERLINE,        /* TTYPE_CMD_ARG */
           TERMP_BOLD,             /* TTYPE_SECTION */
           TERMP_BOLD,             /* TTYPE_FUNC_DECL */
           TERMP_UNDERLINE,        /* TTYPE_VAR_DECL */
           TERMP_UNDERLINE,        /* TTYPE_FUNC_TYPE */
           TERMP_BOLD,             /* TTYPE_FUNC_NAME */
           TERMP_UNDERLINE,        /* TTYPE_FUNC_ARG */
           TERMP_UNDERLINE,        /* TTYPE_LINK */
           TERMP_BOLD,             /* TTYPE_SSECTION */
           TERMP_UNDERLINE         /* TTYPE_FILE */
   };
   
   static  int               arg_hasattr(int, size_t,
                                   const struct mdoc_arg *);
   static  int               arg_getattr(int, size_t,
                                   const struct mdoc_arg *);
   static  size_t            arg_offset(const char *);
   
   /*
    * What follows describes prefix and postfix operations for the abstract
    * syntax tree descent.
    */
   
   #define DECL_ARGS \
           struct termp *p, \
           const struct mdoc_meta *meta, \
           const struct mdoc_node *node
   
   #define DECL_PRE(name) \
   static  int               name##_pre(DECL_ARGS)
   #define DECL_POST(name) \
   static  void              name##_post(DECL_ARGS)
   #define DECL_PREPOST(name) \
   DECL_PRE(name); \
   DECL_POST(name);
   
   DECL_PREPOST(termp_aq);
   DECL_PREPOST(termp_ar);
   DECL_PREPOST(termp_d1);
   DECL_PREPOST(termp_dq);
   DECL_PREPOST(termp_fa);
   DECL_PREPOST(termp_fd);
   DECL_PREPOST(termp_fl);
   DECL_PREPOST(termp_fn);
   DECL_PREPOST(termp_ft);
   DECL_PREPOST(termp_it);
   DECL_PREPOST(termp_nm);
   DECL_PREPOST(termp_op);
   DECL_PREPOST(termp_pa);
   DECL_PREPOST(termp_pf);
   DECL_PREPOST(termp_qq);
   DECL_PREPOST(termp_sh);
   DECL_PREPOST(termp_ss);
   DECL_PREPOST(termp_sq);
   DECL_PREPOST(termp_sx);
   DECL_PREPOST(termp_va);
   DECL_PREPOST(termp_vt);
   
   DECL_PRE(termp_bd);
   DECL_PRE(termp_bx);
   DECL_PRE(termp_ex);
   DECL_PRE(termp_nd);
   DECL_PRE(termp_ns);
   DECL_PRE(termp_nx);
   DECL_PRE(termp_ox);
   DECL_PRE(termp_pp);
   DECL_PRE(termp_ud);
   DECL_PRE(termp_xr);
   
   DECL_POST(termp_bl);
   
   const   struct termact __termacts[MDOC_MAX] = {
           { NULL, NULL }, /* \" */
           { NULL, NULL }, /* Dd */
           { NULL, NULL }, /* Dt */
           { NULL, NULL }, /* Os */
           { termp_sh_pre, termp_sh_post }, /* Sh */
           { termp_ss_pre, termp_ss_post }, /* Ss */
           { termp_pp_pre, NULL }, /* Pp */
           { termp_d1_pre, termp_d1_post }, /* D1 */
           { NULL, NULL }, /* Dl */
           { termp_bd_pre, NULL }, /* Bd */
           { NULL, NULL }, /* Ed */
           { NULL, termp_bl_post }, /* Bl */
           { NULL, NULL }, /* El */
           { termp_it_pre, termp_it_post }, /* It */
           { NULL, NULL }, /* Ad */
           { NULL, NULL }, /* An */
           { termp_ar_pre, termp_ar_post }, /* Ar */
           { NULL, NULL }, /* Cd */
           { NULL, NULL }, /* Cm */
           { NULL, NULL }, /* Dv */
           { NULL, NULL }, /* Er */
           { NULL, NULL }, /* Ev */
           { termp_ex_pre, NULL }, /* Ex */
           { termp_fa_pre, termp_fa_post }, /* Fa */
           { termp_fd_pre, termp_fd_post }, /* Fd */
           { termp_fl_pre, termp_fl_post }, /* Fl */
           { termp_fn_pre, termp_fn_post }, /* Fn */
           { termp_ft_pre, termp_ft_post }, /* Ft */
           { NULL, NULL }, /* Ic */
           { NULL, NULL }, /* In */
           { NULL, NULL }, /* Li */
           { termp_nd_pre, NULL }, /* Nd */
           { termp_nm_pre, termp_nm_post }, /* Nm */
           { termp_op_pre, termp_op_post }, /* Op */
           { NULL, NULL }, /* Ot */
           { termp_pa_pre, termp_pa_post }, /* Pa */
           { NULL, NULL }, /* Rv */
           { NULL, NULL }, /* St */
           { termp_va_pre, termp_va_post }, /* Va */
           { termp_vt_pre, termp_vt_post }, /* Vt */
           { termp_xr_pre, NULL }, /* Xr */
           { NULL, NULL }, /* %A */
           { NULL, NULL }, /* %B */
           { NULL, NULL }, /* %D */
           { NULL, NULL }, /* %I */
           { NULL, NULL }, /* %J */
           { NULL, NULL }, /* %N */
           { NULL, NULL }, /* %O */
           { NULL, NULL }, /* %P */
           { NULL, NULL }, /* %R */
           { NULL, NULL }, /* %T */
           { NULL, NULL }, /* %V */
           { NULL, NULL }, /* Ac */
           { NULL, NULL }, /* Ao */
           { termp_aq_pre, termp_aq_post }, /* Aq */
           { NULL, NULL }, /* At */
           { NULL, NULL }, /* Bc */
           { NULL, NULL }, /* Bf */
           { NULL, NULL }, /* Bo */
           { NULL, NULL }, /* Bq */
           { NULL, NULL }, /* Bsx */
           { termp_bx_pre, NULL }, /* Bx */
           { NULL, NULL }, /* Db */
           { NULL, NULL }, /* Dc */
           { NULL, NULL }, /* Do */
           { termp_dq_pre, termp_dq_post }, /* Dq */
           { NULL, NULL }, /* Ec */
           { NULL, NULL }, /* Ef */
           { NULL, NULL }, /* Em */
           { NULL, NULL }, /* Eo */
           { NULL, NULL }, /* Fx */
           { NULL, NULL }, /* Ms */
           { NULL, NULL }, /* No */
           { termp_ns_pre, NULL }, /* Ns */
           { termp_nx_pre, NULL }, /* Nx */
           { termp_ox_pre, NULL }, /* Ox */
           { NULL, NULL }, /* Pc */
           { termp_pf_pre, termp_pf_post }, /* Pf */
           { NULL, NULL }, /* Po */
           { NULL, NULL }, /* Pq */
           { NULL, NULL }, /* Qc */
           { NULL, NULL }, /* Ql */
           { NULL, NULL }, /* Qo */
           { termp_qq_pre, termp_qq_post }, /* Qq */
           { NULL, NULL }, /* Re */
           { NULL, NULL }, /* Rs */
           { NULL, NULL }, /* Sc */
           { NULL, NULL }, /* So */
           { termp_sq_pre, termp_sq_post }, /* Sq */
           { NULL, NULL }, /* Sm */
           { termp_sx_pre, termp_sx_post }, /* Sx */
           { NULL, NULL }, /* Sy */
           { NULL, NULL }, /* Tn */
           { NULL, NULL }, /* Ux */
           { NULL, NULL }, /* Xc */
           { NULL, NULL }, /* Xo */
           { NULL, NULL }, /* Fo */
           { NULL, NULL }, /* Fc */
           { NULL, NULL }, /* Oo */
           { NULL, NULL }, /* Oc */
           { NULL, NULL }, /* Bk */
           { NULL, NULL }, /* Ek */
           { NULL, NULL }, /* Bt */
           { NULL, NULL }, /* Hf */
           { NULL, NULL }, /* Fr */
           { termp_ud_pre, NULL }, /* Ud */
   };
   
   const struct termact *termacts = __termacts;
   
   
   static size_t
   arg_offset(const char *v)
 {  {
           if (0 == strcmp(v, "indent"))
                   return(INDENT);
           if (0 == strcmp(v, "indent-two"))
                   return(INDENT * 2);
   
         switch (arch) {          /* TODO */
         case (ARCH_alpha):          return(0);
                 return("Alpha");  }
         case (ARCH_amd64):  
                 return("AMD64");  
         case (ARCH_amiga):  static int
                 return("Amiga");  arg_hasattr(int arg, size_t argc, const struct mdoc_arg *argv)
         case (ARCH_arc):  {
                 return("ARC");  
         case (ARCH_arm):          return(-1 != arg_getattr(arg, argc, argv));
                 return("ARM");  }
         case (ARCH_armish):  
                 return("ARMISH");  
         case (ARCH_aviion):  static int
                 return("AViion");  arg_getattr(int arg, size_t argc, const struct mdoc_arg *argv)
         case (ARCH_hp300):  {
                 return("HP300");          int              i;
         case (ARCH_hppa):  
                 return("HPPA");          for (i = 0; i < (int)argc; i++)
         case (ARCH_hppa64):                  if (argv[i].arg == arg)
                 return("HPPA64");                          return(i);
         case (ARCH_i386):          return(-1);
                 return("i386");  }
         case (ARCH_landisk):  
                 return("LANDISK");  
         case (ARCH_luna88k):  /* ARGSUSED */
                 return("Luna88k");  static int
         case (ARCH_mac68k):  termp_dq_pre(DECL_ARGS)
                 return("Mac68k");  {
         case (ARCH_macppc):  
                 return("MacPPC");          if (MDOC_BODY != node->type)
         case (ARCH_mvme68k):                  return(1);
                 return("MVME68k");  
         case (ARCH_mvme88k):          word(p, "``");
                 return("MVME88k");          p->flags |= TERMP_NOSPACE;
         case (ARCH_mvmeppc):          return(1);
                 return("MVMEPPC");  }
         case (ARCH_pmax):  
                 return("PMAX");  
         case (ARCH_sgi):  /* ARGSUSED */
                 return("SGI");  static void
         case (ARCH_socppc):  termp_dq_post(DECL_ARGS)
                 return("SOCPPC");  {
         case (ARCH_sparc):  
                 return("SPARC");          if (MDOC_BODY != node->type)
         case (ARCH_sparc64):                  return;
                 return("SPARC64");  
         case (ARCH_sun3):          p->flags |= TERMP_NOSPACE;
                 return("Sun3");          word(p, "''");
         case (ARCH_vax):  }
                 return("VAX");  
         case (ARCH_zaurus):  
                 return("Zaurus");  /* ARGSUSED */
         default:  static void
   termp_it_post(DECL_ARGS)
   {
           const struct mdoc_node *n, *it;
           const struct mdoc_block *bl;
           int              i;
           size_t           width;
   
           /*
            * This (and termp_it_pre()) are the most complicated functions
            * here.  They must account for a considerable number of
            * switches that completely change the output behaviour, like
            * -tag versus -column.  Yech.
            */
   
           switch (node->type) {
           case (MDOC_BODY):
                   /* FALLTHROUGH */
           case (MDOC_HEAD):
                 break;                  break;
           default:
                   return;
         }          }
   
         return(NULL);          it = node->parent;
           assert(MDOC_BLOCK == it->type);
           assert(MDOC_It == it->tok);
   
           n = it->parent;
           assert(MDOC_BODY == n->type);
           assert(MDOC_Bl == n->tok);
           n = n->parent;
           bl = &n->data.block;
   
           /* If `-tag', adjust our margins accordingly. */
   
           if (arg_hasattr(MDOC_Tag, bl->argc, bl->argv)) {
                   i = arg_getattr(MDOC_Width, bl->argc, bl->argv);
                   assert(i >= 0);
                   assert(1 == bl->argv[i].sz);
                   width = strlen(*bl->argv[i].value); /* XXX */
   
                   if (MDOC_HEAD == node->type) {
                           flushln(p);
                           /* FIXME: nested lists. */
                           p->rmargin = p->maxrmargin;
                           p->flags &= ~TERMP_NOBREAK;
                   } else {
                           flushln(p);
                           p->offset -= width + 1;
                           p->flags &= ~TERMP_NOLPAD;
                   }
                   return;
           }
   
           if (arg_hasattr(MDOC_Ohang, bl->argc, bl->argv)) {
                   i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
                   width = 0;
                   if (i >= 0) {
                           assert(1 == bl->argv[i].sz);
                           width = arg_offset(*bl->argv[i].value);
                   }
   
                   flushln(p);
                   p->offset -= width;
                   return;
           }
 }  }
   
   
 static char *  /* ARGSUSED */
 vol2a(enum mdoc_vol vol)  static int
   termp_it_pre(DECL_ARGS)
 {  {
           const struct mdoc_node *n, *it;
           const struct mdoc_block *bl;
           int              i;
           size_t           width;
   
         switch (vol) {          /*
         case (VOL_AMD):           * Also see termp_it_post() for general comments.
                 return("OpenBSD Ancestral Manual Documents");           */
         case (VOL_IND):  
                 return("OpenBSD Manual Master Index");          switch (node->type) {
         case (VOL_KM):          case (MDOC_BODY):
                 return("OpenBSD Kernel Manual");                  /* FALLTHROUGH */
         case (VOL_LOCAL):          case (MDOC_HEAD):
                 return("OpenBSD Local Manual");                  it = node->parent;
         case (VOL_PRM):                  break;
                 return("OpenBSD Programmer's Manual");          case (MDOC_BLOCK):
         case (VOL_PS1):                  it = node;
                 return("OpenBSD Programmer's Supplementary Documents");                  break;
         case (VOL_SMM):  
                 return("OpenBSD System Manager's Manual");  
         case (VOL_URM):  
                 return("OpenBSD Reference Manual");  
         case (VOL_USD):  
                 return("OpenBSD User's Supplementary Documents");  
         default:          default:
                   return(1);
           }
   
           assert(MDOC_BLOCK == it->type);
           assert(MDOC_It == it->tok);
   
           n = it->parent;
           assert(MDOC_BODY == n->type);
           assert(MDOC_Bl == n->tok);
           n = n->parent;
           bl = &n->data.block;
   
           /* If `-compact', don't assert vertical space. */
   
           if (MDOC_BLOCK == node->type) {
                   if (arg_hasattr(MDOC_Compact, bl->argc, bl->argv))
                           newln(p);
                   else
                           vspace(p);
                   return(1);
           }
   
           assert(MDOC_HEAD == node->type
                           || MDOC_BODY == node->type);
   
           /* If `-tag', adjust our margins accordingly. */
   
           if (arg_hasattr(MDOC_Tag, bl->argc, bl->argv)) {
                   i = arg_getattr(MDOC_Width, bl->argc, bl->argv);
                   assert(i >= 0); /* XXX */
                   assert(1 == bl->argv[i].sz);
                   width = strlen(*bl->argv[i].value); /* XXX */
   
                   /* FIXME: nested lists. */
   
                   if (MDOC_HEAD == node->type) {
                           p->flags |= TERMP_NOBREAK;
                           p->flags |= TERMP_NOSPACE;
                           p->rmargin = p->offset + width;
                   } else {
                           p->flags |= TERMP_NOSPACE;
                           p->flags |= TERMP_NOLPAD;
                           p->offset += width + 1;
                   }
                   return(1);
           }
   
           /* If `-ohang', adjust left-margin. */
   
           if (arg_hasattr(MDOC_Ohang, bl->argc, bl->argv)) {
                   width = 0;
                   i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
                   if (i >= 0) {
                           assert(1 == bl->argv[i].sz);
                           width = arg_offset(*bl->argv[i].value);
                   }
   
                   p->flags |= TERMP_NOSPACE;
                   p->offset += width;
                   return(1);
           }
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_nm_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_PROG];
   }
   
   
   /* ARGSUSED */
   static void
   termp_fl_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_CMD_FLAG];
   }
   
   
   /* ARGSUSED */
   static int
   termp_ar_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_CMD_ARG];
           if (NULL == node->child)
                   word(p, "...");
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_nm_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_PROG];
           if (NULL == node->child)
                   word(p, meta->name);
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_ns_pre(DECL_ARGS)
   {
   
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_pp_pre(DECL_ARGS)
   {
   
           vspace(p);
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_ar_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_CMD_ARG];
   }
   
   
   /* ARGSUSED */
   static int
   termp_ex_pre(DECL_ARGS)
   {
           int              i;
   
           i = arg_getattr(MDOC_Std, node->data.elem.argc,
                           node->data.elem.argv);
           assert(i >= 0);
   
           word(p, "The");
           p->flags |= ttypes[TTYPE_PROG];
           word(p, *node->data.elem.argv[i].value);
           p->flags &= ~ttypes[TTYPE_PROG];
           word(p, "utility exits 0 on success, and >0 if an error occurs.");
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_nd_pre(DECL_ARGS)
   {
   
           word(p, "\\-");
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_bl_post(DECL_ARGS)
   {
   
           if (MDOC_BLOCK == node->type)
                   newln(p);
   }
   
   
   /* ARGSUSED */
   static void
   termp_op_post(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return;
           p->flags |= TERMP_NOSPACE;
           word(p, "\\(rB");
   }
   
   
   /* ARGSUSED */
   static void
   termp_sh_post(DECL_ARGS)
   {
   
           switch (node->type) {
           case (MDOC_HEAD):
                   p->flags &= ~ttypes[TTYPE_SECTION];
                   newln(p);
                 break;                  break;
           case (MDOC_BODY):
                   newln(p);
                   p->offset = 0;
                   break;
           default:
                   break;
         }          }
   }
   
         return(NULL);  
   /* ARGSUSED */
   static int
   termp_xr_pre(DECL_ARGS)
   {
           const struct mdoc_node *n;
   
           n = node->child;
           assert(n);
   
           assert(MDOC_TEXT == n->type);
           word(p, n->data.text.string);
   
           if (NULL == (n = n->next))
                   return(0);
   
           assert(MDOC_TEXT == n->type);
           p->flags |= TERMP_NOSPACE;
           word(p, "(");
           p->flags |= TERMP_NOSPACE;
           word(p, n->data.text.string);
           p->flags |= TERMP_NOSPACE;
           word(p, ")");
   
           return(0);
 }  }
   
   
 static char *  /* ARGSUSED */
 msec2a(enum mdoc_msec msec)  static int
   termp_vt_pre(DECL_ARGS)
 {  {
   
         switch (msec) {          /* FIXME: this can be "type name". */
         case(MSEC_1):          p->flags |= ttypes[TTYPE_VAR_DECL];
                 return("1");          return(1);
         case(MSEC_2):  }
                 return("2");  
         case(MSEC_3):  
                 return("3");  /* ARGSUSED */
         case(MSEC_3f):  static void
                 return("3f");  termp_vt_post(DECL_ARGS)
         case(MSEC_3p):  {
                 return("3p");  
         case(MSEC_4):          p->flags &= ~ttypes[TTYPE_VAR_DECL];
                 return("4");          if (node->sec == SEC_SYNOPSIS)
         case(MSEC_5):                  vspace(p);
                 return("5");  }
         case(MSEC_6):  
                 return("6");  
         case(MSEC_7):  /* ARGSUSED */
                 return("7");  static int
         case(MSEC_8):  termp_fd_pre(DECL_ARGS)
                 return("8");  {
         case(MSEC_9):  
                 return("9");          /*
         case(MSEC_X11):           * FIXME: this naming is bad.  This value is used, in general,
                 return("X11");           * for the #include header or other preprocessor statement.
         case(MSEC_X11R6):           */
                 return("X11R6");          p->flags |= ttypes[TTYPE_FUNC_DECL];
         case(MSEC_local):          return(1);
                 return("local");  }
         case(MSEC_n):  
                 return("n");  
         case(MSEC_unass):  /* ARGSUSED */
                 /* FALLTHROUGH */  static void
         case(MSEC_draft):  termp_fd_post(DECL_ARGS)
                 return("draft");  {
         case(MSEC_paper):  
                 return("paper");          p->flags &= ~ttypes[TTYPE_FUNC_DECL];
           if (node->sec == SEC_SYNOPSIS)
                   vspace(p);
   
   }
   
   
   /* ARGSUSED */
   static int
   termp_sh_pre(DECL_ARGS)
   {
   
           switch (node->type) {
           case (MDOC_HEAD):
                   vspace(p);
                   p->flags |= ttypes[TTYPE_SECTION];
                   break;
           case (MDOC_BODY):
                   p->offset = INDENT;
                   break;
         default:          default:
                 break;                  break;
         }          }
         return(NULL);          return(1);
 }  }
   
   
 static size_t  /* ARGSUSED */
 ttitle2a(char *dst, enum mdoc_vol vol, enum mdoc_msec msec,  static int
                 enum mdoc_arch arch, size_t sz)  termp_op_pre(DECL_ARGS)
 {  {
         char            *p;  
         size_t           ssz;  
   
         if (NULL == (p = vol2a(vol)))          switch (node->type) {
                 switch (msec) {          case (MDOC_BODY):
                 case (MSEC_1):                  word(p, "\\(lB");
                         /* FALLTHROUGH */                  p->flags |= TERMP_NOSPACE;
                 case (MSEC_6):                  break;
                         /* FALLTHROUGH */          default:
                 case (MSEC_7):                  break;
                         p = vol2a(VOL_URM);          }
                         break;          return(1);
                 case (MSEC_8):  }
                         p = vol2a(VOL_SMM);  
                         break;  
                 case (MSEC_2):  
                         /* FALLTHROUGH */  
                 case (MSEC_3):  
                         /* FALLTHROUGH */  
                 case (MSEC_4):  
                         /* FALLTHROUGH */  
                 case (MSEC_5):  
                         p = vol2a(VOL_PRM);  
                         break;  
                 case (MSEC_9):  
                         p = vol2a(VOL_KM);  
                         break;  
                 default:  
                         /* FIXME: capitalise. */  
                         if (NULL == (p = msec2a(msec)))  
                                 p = msec2a(MSEC_local);  
                         break;  
                 }  
         assert(p);  
   
         if ((ssz = strlcpy(dst, p, sz)) >= sz)  
                 return(ssz);  
   
         if ((p = arch2a(arch))) {  /* ARGSUSED */
                 if ((ssz = strlcat(dst, " (", sz)) >= sz)  static int
                         return(ssz);  termp_ud_pre(DECL_ARGS)
                 if ((ssz = strlcat(dst, p, sz)) >= sz)  {
                         return(ssz);  
                 if ((ssz = strlcat(dst, ")", sz)) >= sz)          word(p, "currently under development.");
                         return(ssz);          return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_fl_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_CMD_FLAG];
           word(p, "\\-");
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_d1_pre(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return(1);
           newln(p);
           p->offset += INDENT;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_d1_post(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return;
           newln(p);
           p->offset -= INDENT;
   }
   
   
   /* ARGSUSED */
   static int
   termp_aq_pre(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return(1);
           word(p, "<");
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_aq_post(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return;
           p->flags |= TERMP_NOSPACE;
           word(p, ">");
   }
   
   
   /* ARGSUSED */
   static int
   termp_ft_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_FUNC_TYPE];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_ft_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_FUNC_TYPE];
           if (node->sec == SEC_SYNOPSIS)
                   newln(p);
   
   }
   
   
   /* ARGSUSED */
   static int
   termp_fn_pre(DECL_ARGS)
   {
           const struct mdoc_node *n;
   
           assert(node->child);
           assert(MDOC_TEXT == node->child->type);
   
           /* FIXME: can be "type funcname" "type varname"... */
   
           p->flags |= ttypes[TTYPE_FUNC_NAME];
           word(p, node->child->data.text.string);
           p->flags &= ~ttypes[TTYPE_FUNC_NAME];
   
           p->flags |= TERMP_NOSPACE;
           word(p, "(");
   
           p->flags |= TERMP_NOSPACE;
           for (n = node->child->next; n; n = n->next) {
                   assert(MDOC_TEXT == n->type);
                   p->flags |= ttypes[TTYPE_FUNC_ARG];
                   word(p, n->data.text.string);
                   p->flags &= ~ttypes[TTYPE_FUNC_ARG];
                   if ((n->next))
                           word(p, ",");
         }          }
   
         return(ssz);          p->flags |= TERMP_NOSPACE;
           word(p, ")");
   
           if (SEC_SYNOPSIS == node->sec)
                   word(p, ";");
   
           return(0);
 }  }
   
   
   /* ARGSUSED */
   static void
   termp_fn_post(DECL_ARGS)
   {
   
           if (node->sec == SEC_SYNOPSIS)
                   vspace(p);
   
   }
   
   
   /* ARGSUSED */
 static int  static int
 termprint_r(size_t cols, size_t indent, const struct mdoc_node *node)  termp_sx_pre(DECL_ARGS)
 {  {
   
           p->flags |= ttypes[TTYPE_LINK];
         return(1);          return(1);
 }  }
   
   
   /* ARGSUSED */
 static void  static void
 termprint_tail(size_t cols, const struct mdoc_meta *meta)  termp_sx_post(DECL_ARGS)
 {  {
         struct tm       *tm;  
         char            *buf, *os;  
         size_t           sz, osz, ssz, i;  
   
         if (NULL == (buf = malloc(cols)))          p->flags &= ~ttypes[TTYPE_LINK];
                 err(1, "malloc");  }
         if (NULL == (os = malloc(cols)))  
                 err(1, "malloc");  
   
         tm = localtime(&meta->date);  
         if (NULL == strftime(buf, cols, "%B %d, %Y", tm))  
                 err(1, "strftime");  
   
         osz = strlcpy(os, meta->os, cols);  /* ARGSUSED */
   static int
   termp_fa_pre(DECL_ARGS)
   {
   
         sz = strlen(buf);          p->flags |= ttypes[TTYPE_FUNC_ARG];
         ssz = sz + osz + 1;          return(1);
   }
   
         if (ssz > cols) {  
                 ssz -= cols;  
                 assert(ssz <= osz);  
                 os[osz - ssz] = 0;  
                 ssz = 1;  
         } else  
                 ssz = cols - ssz + 1;  
   
         printf("%s", os);  /* ARGSUSED */
         for (i = 0; i < ssz; i++)  static void
                 printf(" ");  termp_fa_post(DECL_ARGS)
   {
   
         printf("%s\n", buf);          p->flags &= ~ttypes[TTYPE_FUNC_ARG];
   }
   
         free(buf);  
         free(os);  /* ARGSUSED */
   static int
   termp_va_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_VAR_DECL];
           return(1);
 }  }
   
   
   /* ARGSUSED */
 static void  static void
 termprint_head(size_t cols, const struct mdoc_meta *meta)  termp_va_post(DECL_ARGS)
 {  {
         char            *msec, *buf, *title;  
         size_t           ssz, tsz, ttsz, i;  
   
         if (NULL == (buf = malloc(cols)))          p->flags &= ~ttypes[TTYPE_VAR_DECL];
                 err(1, "malloc");  }
         if (NULL == (title = malloc(cols)))  
                 err(1, "malloc");  
   
         /* Format the manual page header. */  
   
         tsz = ttitle2a(buf, meta->vol, meta->msec, meta->arch, cols);  /* ARGSUSED */
         ttsz = strlcpy(title, meta->title, cols);  static int
   termp_bd_pre(DECL_ARGS)
   {
           const struct mdoc_block *bl;
           const struct mdoc_node *n;
   
         if (NULL == (msec = msec2a(meta->msec)))          if (MDOC_BLOCK == node->type) {
                 msec = "";                  vspace(p);
                   return(1);
           } else if (MDOC_BODY != node->type)
                   return(1);
   
         ssz = (2 * (ttsz + 2 + strlen(msec))) + tsz + 2;          assert(MDOC_BLOCK == node->parent->type);
   
         if (ssz > cols) {          bl = &node->parent->data.block;
                 if ((ssz -= cols) % 2)          if ( ! arg_hasattr(MDOC_Literal, bl->argc, bl->argv))
                         ssz++;                  return(1);
                 ssz /= 2;  
   
                 assert(ssz <= ttsz);  
                 title[ttsz - ssz] = 0;  
                 ssz = 1;  
         } else  
                 ssz = ((cols - ssz) / 2) + 1;  
   
         printf("%s(%s)", title, msec);          p->flags |= TERMP_LITERAL;
   
         for (i = 0; i < ssz; i++)          for (n = node->child; n; n = n->next) {
                 printf(" ");                  assert(MDOC_TEXT == n->type); /* FIXME */
                   if ((*n->data.text.string)) {
                           word(p, n->data.text.string);
                           flushln(p);
                   } else
                           vspace(p);
   
         printf("%s", buf);          }
   
         for (i = 0; i < ssz; i++)          p->flags &= ~TERMP_LITERAL;
                 printf(" ");          return(0);
   }
   
         printf("%s(%s)\n\n", title, msec);  
   
         free(title);  /* ARGSUSED */
         free(buf);  static int
   termp_qq_pre(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return(1);
           word(p, "\"");
           p->flags |= TERMP_NOSPACE;
           return(1);
 }  }
   
   
 int  /* ARGSUSED */
 termprint(const struct mdoc_node *node,  static void
                 const struct mdoc_meta *meta)  termp_qq_post(DECL_ARGS)
 {  {
         size_t           cols;  
   
         if (ERR == setupterm(NULL, STDOUT_FILENO, NULL))          if (MDOC_BODY != node->type)
                 return(0);                  return;
           p->flags |= TERMP_NOSPACE;
           word(p, "\"");
   }
   
         cols = columns < 60 ? 60 : (size_t)columns;  
   
         termprint_head(cols, meta);  /* ARGSUSED */
         if ( ! termprint_r(cols, 0, node))  static int
                 return(0);  termp_bx_pre(DECL_ARGS)
         termprint_tail(cols, meta);  {
   
           word(p, "BSD");
         return(1);          return(1);
 }  }
   
   
   /* ARGSUSED */
   static int
   termp_ox_pre(DECL_ARGS)
   {
   
           word(p, "OpenBSD");
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_nx_pre(DECL_ARGS)
   {
   
           word(p, "NetBSD");
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_sq_pre(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return(1);
           word(p, "`");
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_sq_post(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return;
           p->flags |= TERMP_NOSPACE;
           word(p, "\'");
   }
   
   
   /* ARGSUSED */
   static int
   termp_pf_pre(DECL_ARGS)
   {
   
           p->flags |= TERMP_IGNDELIM;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_pf_post(DECL_ARGS)
   {
   
           p->flags &= ~TERMP_IGNDELIM;
           p->flags |= TERMP_NOSPACE;
   }
   
   
   /* ARGSUSED */
   static int
   termp_ss_pre(DECL_ARGS)
   {
   
           switch (node->type) {
           case (MDOC_HEAD):
                   vspace(p);
                   p->flags |= ttypes[TTYPE_SSECTION];
                   p->offset = INDENT / 2;
                   break;
           default:
                   break;
           }
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_ss_post(DECL_ARGS)
   {
   
           switch (node->type) {
           case (MDOC_HEAD):
                   p->flags &= ~ttypes[TTYPE_SSECTION];
                   newln(p);
                   p->offset = INDENT;
                   break;
           default:
                   break;
           }
   }
   
   
   /* ARGSUSED */
   static int
   termp_pa_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_FILE];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_pa_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_FILE];
   }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.10

CVSweb