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

Diff for /mandoc/Attic/mdocterm.c between version 1.40 and 1.48

version 1.40, 2009/03/12 06:32:17 version 1.48, 2009/03/17 13:35:46
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@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
Line 25 
Line 25 
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   #include <unistd.h>
   
 #include "mmain.h"  #include "mmain.h"
 #include "term.h"  #include "term.h"
   
 struct  termenc {  struct  nroffopt {
         const char       *enc;          int               fl_h;
         int               sym;          int               fl_i;
           char             *arg_m;
           char             *arg_n;
           char             *arg_o;
           char             *arg_r;
           char             *arg_T;
           struct termp     *termp; /* Ephemeral. */
 };  };
   
   __dead void               punt(struct nroffopt *, char *);
   static  int               option(void *, int, char *);
   static  int               optsopt(struct termp *, char *);
 static  void              body(struct termp *,  static  void              body(struct termp *,
                                 struct termpair *,                                  struct termpair *,
                                 const struct mdoc_meta *,                                  const struct mdoc_meta *,
Line 51  static void    nescape(struct termp *,
Line 61  static void    nescape(struct termp *,
 static  void              chara(struct termp *, char);  static  void              chara(struct termp *, char);
 static  void              stringa(struct termp *,  static  void              stringa(struct termp *,
                                 const char *, size_t);                                  const char *, size_t);
 static  void              symbola(struct termp *, enum tsym);  
 static  void              sanity(const struct mdoc_node *);  static  void              sanity(const struct mdoc_node *);
 static  void              stylea(struct termp *, enum tstyle);  
   
 #ifdef __linux__  
 extern  size_t            strlcat(char *, const char *, size_t);  
 extern  size_t            strlcpy(char *, const char *, size_t);  
 #endif  
   
 static  struct termenc    termenc1[] = {  
         { "\\",           TERMSYM_SLASH },  
         { "\'",           TERMSYM_RSQUOTE },  
         { "`",            TERMSYM_LSQUOTE },  
         { "-",            TERMSYM_HYPHEN },  
         { " ",            TERMSYM_SPACE },  
         { ".",            TERMSYM_PERIOD },  
         { "&",            TERMSYM_BREAK },  
         { "e",            TERMSYM_SLASH },  
         { "q",            TERMSYM_DQUOTE },  
         { NULL,           0 }  
 };  
   
 static  struct termenc    termenc2[] = {  
         { "rC",           TERMSYM_RBRACE },  
         { "lC",           TERMSYM_LBRACE },  
         { "rB",           TERMSYM_RBRACK },  
         { "lB",           TERMSYM_LBRACK },  
         { "ra",           TERMSYM_RANGLE },  
         { "la",           TERMSYM_LANGLE },  
         { "Lq",           TERMSYM_LDQUOTE },  
         { "lq",           TERMSYM_LDQUOTE },  
         { "Rq",           TERMSYM_RDQUOTE },  
         { "rq",           TERMSYM_RDQUOTE },  
         { "oq",           TERMSYM_LSQUOTE },  
         { "aq",           TERMSYM_RSQUOTE },  
   
         { "<-",           TERMSYM_LARROW },  
         { "->",           TERMSYM_RARROW },  
         { "ua",           TERMSYM_UARROW },  
         { "da",           TERMSYM_DARROW },  
   
         { "bu",           TERMSYM_BULLET },  
         { "Ba",           TERMSYM_BAR },  
         { "ba",           TERMSYM_BAR },  
         { "co",           TERMSYM_COPY },  
         { "Am",           TERMSYM_AMP },  
   
         { "Le",           TERMSYM_LE },  
         { "<=",           TERMSYM_LE },  
         { "Ge",           TERMSYM_GE },  
         { ">=",           TERMSYM_GE },  
         { "==",           TERMSYM_EQ },  
         { "Ne",           TERMSYM_NEQ },  
         { "!=",           TERMSYM_NEQ },  
         { "Pm",           TERMSYM_PLUSMINUS },  
         { "+-",           TERMSYM_PLUSMINUS },  
         { "If",           TERMSYM_INF2 },  
         { "if",           TERMSYM_INF },  
         { "Na",           TERMSYM_NAN },  
         { "na",           TERMSYM_NAN },  
         { "**",           TERMSYM_ASTERISK },  
         { "Gt",           TERMSYM_GT },  
         { "Lt",           TERMSYM_LT },  
   
         { "aa",           TERMSYM_ACUTE },  
         { "ga",           TERMSYM_GRAVE },  
   
         { "en",           TERMSYM_EN },  
         { "em",           TERMSYM_EM },  
   
         { "Pi",           TERMSYM_PI },  
         { NULL,           0 }  
 };  
   
 static  struct termsym    termsym_ansi[] = {  
         { "]", 1 },             /* TERMSYM_RBRACK */  
         { "[", 1 },             /* TERMSYM_LBRACK */  
         { "<-", 2 },            /* TERMSYM_LARROW */  
         { "->", 2 },            /* TERMSYM_RARROW */  
         { "^", 1 },             /* TERMSYM_UARROW */  
         { "v", 1 },             /* TERMSYM_DARROW */  
         { "`", 1 },             /* TERMSYM_LSQUOTE */  
         { "\'", 1 },            /* TERMSYM_RSQUOTE */  
         { "\'", 1 },            /* TERMSYM_SQUOTE */  
         { "``", 2 },            /* TERMSYM_LDQUOTE */  
         { "\'\'", 2 },          /* TERMSYM_RDQUOTE */  
         { "\"", 1 },            /* TERMSYM_DQUOTE */  
         { "<", 1 },             /* TERMSYM_LT */  
         { ">", 1 },             /* TERMSYM_GT */  
         { "<=", 2 },            /* TERMSYM_LE */  
         { ">=", 2 },            /* TERMSYM_GE */  
         { "==", 2 },            /* TERMSYM_EQ */  
         { "!=", 2 },            /* TERMSYM_NEQ */  
         { "\'", 1 },            /* TERMSYM_ACUTE */  
         { "`", 1 },             /* TERMSYM_GRAVE */  
         { "pi", 2 },            /* TERMSYM_PI */  
         { "+=", 2 },            /* TERMSYM_PLUSMINUS */  
         { "oo", 2 },            /* TERMSYM_INF */  
         { "infinity", 8 },      /* TERMSYM_INF2 */  
         { "NaN", 3 },           /* TERMSYM_NAN */  
         { "|", 1 },             /* TERMSYM_BAR */  
         { "o", 1 },             /* TERMSYM_BULLET */  
         { "&", 1 },             /* TERMSYM_AMP */  
         { "--", 2 },            /* TERMSYM_EM */  
         { "-", 1 },             /* TERMSYM_EN */  
         { "(C)", 3 },           /* TERMSYM_COPY */  
         { "*", 1 },             /* TERMSYM_ASTERISK */  
         { "\\", 1 },            /* TERMSYM_SLASH */  
         { "-", 1 },             /* TERMSYM_HYPHEN */  
         { " ", 1 },             /* TERMSYM_SPACE */  
         { ".", 1 },             /* TERMSYM_PERIOD */  
         { "", 0 },              /* TERMSYM_BREAK */  
         { "<", 1 },             /* TERMSYM_LANGLE */  
         { ">", 1 },             /* TERMSYM_RANGLE */  
         { "{", 1 },             /* TERMSYM_LBRACE */  
         { "}", 1 },             /* TERMSYM_RBRACE */  
 };  
   
 static  const char        ansi_clear[]  = { 27, '[', '0', 'm' };  
 static  const char        ansi_bold[]  = { 27, '[', '1', 'm' };  
 static  const char        ansi_under[]  = { 27, '[', '4', 'm' };  
   
 static  struct termsym    termstyle_ansi[] = {  
         { ansi_clear, 4 },  
         { ansi_bold, 4 },  
         { ansi_under, 4 }  
 };  
   
   
 int  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         struct mmain      *p;          struct mmain      *p;
         int                c;  
         const struct mdoc *mdoc;          const struct mdoc *mdoc;
           struct nroffopt    nroff;
         struct termp       termp;          struct termp       termp;
           int                c;
           char              *in;
   
           (void)memset(&termp, 0, sizeof(struct termp));
           (void)memset(&nroff, 0, sizeof(struct nroffopt));
   
           termp.maxrmargin = termp.rmargin = 78; /* FIXME */
           termp.maxcols = 1024; /* FIXME */
           termp.flags = TERMP_NOSPACE;
           termp.symtab = ascii2htab();
   
           nroff.termp = &termp;
   
         p = mmain_alloc();          p = mmain_alloc();
   
         c = mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL);          c = mmain_getopt(p, argc, argv, "[-Ooption...]",
         if (1 != c)                          "[infile]", "him:n:o:r:T:O:", &nroff, option);
                 mmain_exit(p, -1 == c ? 1 : 0);  
   
         if (NULL == (mdoc = mmain_mdoc(p)))          /* FIXME: this needs to accept multiple outputs. */
                 mmain_exit(p, 1);          argv += c;
           if ((argc -= c) > 0)
                   in = *argv++;
           else
                   in = "-";
   
         termp.maxrmargin = termp.rmargin = 78; /* XXX */          mmain_prepare(p, in);
         termp.maxcols = 1024;  
         termp.offset = termp.col = 0;  
         termp.flags = TERMP_NOSPACE;  
         termp.symtab = termsym_ansi;  
         termp.styletab = termstyle_ansi;  
   
           if (NULL == (mdoc = mmain_process(p))) {
                   if (TERMP_NOPUNT & termp.iflags)
                           mmain_exit(p, 1);
                   mmain_free(p);
                   punt(&nroff, in);
                   /* NOTREACHED */
           }
   
         if (NULL == (termp.buf = malloc(termp.maxcols)))          if (NULL == (termp.buf = malloc(termp.maxcols)))
                 err(1, "malloc");                  err(1, "malloc");
   
Line 212  main(int argc, char *argv[])
Line 113  main(int argc, char *argv[])
         footer(&termp, mdoc_meta(mdoc));          footer(&termp, mdoc_meta(mdoc));
   
         free(termp.buf);          free(termp.buf);
           asciifree(termp.symtab);
   
         mmain_exit(p, 0);          mmain_exit(p, 0);
         /* NOTREACHED */          /* NOTREACHED */
 }  }
   
   
   static int
   optsopt(struct termp *p, char *arg)
   {
           char            *v;
           char            *toks[] = { "nopunt", NULL };
   
           while (*arg)
                   switch (getsubopt(&arg, toks, &v)) {
                   case (0):
                           p->iflags |= TERMP_NOPUNT;
                           break;
                   default:
                           warnx("unknown -O argument");
                           return(0);
                   }
   
           return(1);
   }
   
   
   static int
   option(void *ptr, int c, char *arg)
   {
           struct termp    *termp;
           struct nroffopt *nroff;
   
           nroff = (struct nroffopt *)ptr;
           termp = nroff->termp;
   
           switch (c) {
           case ('h'):
                   nroff->fl_h = 1;
                   break;
           case ('i'):
                   nroff->fl_i = 1;
                   break;
           case ('m'):
                   nroff->arg_m = arg;
                   break;
           case ('n'):
                   nroff->arg_n = arg;
                   break;
           case ('o'):
                   nroff->arg_o = arg;
                   break;
           case ('r'):
                   nroff->arg_r = arg;
                   break;
           case ('T'):
                   nroff->arg_T = arg;
                   break;
           case ('O'):
                   return(optsopt(termp, arg));
           default:
                   break;
           }
   
           return(1);
   }
   
   
 /*  /*
  * Flush a line of text.  A "line" is loosely defined as being something   * Flush a line of text.  A "line" is loosely defined as being something
  * that should be followed by a newline, regardless of whether it's   * that should be followed by a newline, regardless of whether it's
Line 287  flushln(struct termp *p)
Line 250  flushln(struct termp *p)
                  * space is printed according to regular spacing rules).                   * space is printed according to regular spacing rules).
                  */                   */
   
                 /* FIXME: make non-ANSI friendly. */  
   
                 /* LINTED */                  /* LINTED */
                 for (j = i, vsz = 0; j < p->col; j++) {                  for (j = i, vsz = 0; j < p->col; j++) {
                         if (isspace((u_char)p->buf[j]))                          if (' ' == p->buf[j])
                                 break;                                  break;
                         else if (27 == p->buf[j]) {                          else if (8 == p->buf[j])
                                 assert(j + 4 <= p->col);                                  j += 1;
                                 j += 3;                          else
                         } else  
                                 vsz++;                                  vsz++;
                 }                  }
   
Line 338  flushln(struct termp *p)
Line 298  flushln(struct termp *p)
                  */                   */
   
                 for ( ; i < p->col; i++) {                  for ( ; i < p->col; i++) {
                         if (isspace((u_char)p->buf[i]))                          if (' ' == p->buf[i])
                                 break;                                  break;
                         putchar(p->buf[i]);                          putchar(p->buf[i]);
                 }                  }
Line 441  word(struct termp *p, const char *word)
Line 401  word(struct termp *p, const char *word)
   
         /* LINTED */          /* LINTED */
         for (j = i = 0; i < len; i++) {          for (j = i = 0; i < len; i++) {
                 if ( ! isspace((u_char)word[i])) {                  if (' ' != word[i]) {
                         j++;                          j++;
                         continue;                          continue;
                 }                  }
   
                 /* Escaped spaces don't delimit... */                  /* Escaped spaces don't delimit... */
                 if (i > 0 && isspace((u_char)word[i]) &&                  if (i && ' ' == word[i] && '\\' == word[i - 1]) {
                                 '\\' == word[i - 1]) {  
                         j++;                          j++;
                         continue;                          continue;
                 }                  }
Line 655  header(struct termp *p, const struct mdoc_meta *meta)
Line 614  header(struct termp *p, const struct mdoc_meta *meta)
 static void  static void
 nescape(struct termp *p, const char *word, size_t len)  nescape(struct termp *p, const char *word, size_t len)
 {  {
         struct termenc  *enc;          const char      *rhs;
           size_t           sz;
   
         switch (len) {          if (NULL == (rhs = a2ascii(p->symtab, word, len, &sz))) {
         case (1):  
                 enc = termenc1;  
                 break;  
         case (2):  
                 enc = termenc2;  
                 break;  
         default:  
                 warnx("unsupported %zu-byte escape sequence", len);                  warnx("unsupported %zu-byte escape sequence", len);
                 return;                  return;
         }          }
   
         for ( ; enc->enc; enc++)          stringa(p, rhs, sz);
                 if (0 == memcmp(enc->enc, word, len)) {  
                         symbola(p, enc->sym);  
                         return;  
                 }  
   
         warnx("unsupported %zu-byte escape sequence", len);  
 }  }
   
   
Line 762  pword(struct termp *p, const char *word, size_t len)
Line 709  pword(struct termp *p, const char *word, size_t len)
                 p->flags &= ~TERMP_NOSPACE;                  p->flags &= ~TERMP_NOSPACE;
   
         /*          /*
          * XXX - if literal and underlining, this will underline the           * If ANSI (word-length styling), then apply our style now,
          * spaces between literal words.           * before the word.
          */           */
   
         if (p->flags & TERMP_BOLD)  
                 stylea(p, TERMSTYLE_BOLD);  
         if (p->flags & TERMP_UNDERLINE)  
                 stylea(p, TERMSTYLE_UNDER);  
   
         for (i = 0; i < len; i++) {          for (i = 0; i < len; i++) {
                 if ('\\' == word[i]) {                  if ('\\' == word[i]) {
                         pescape(p, word, &i, len);                          pescape(p, word, &i, len);
                         continue;                          continue;
                 }                  }
   
                   if (TERMP_STYLE & p->flags) {
                           if (TERMP_BOLD & p->flags) {
                                   chara(p, word[i]);
                                   chara(p, 8);
                           }
                           if (TERMP_UNDER & p->flags) {
                                   chara(p, '_');
                                   chara(p, 8);
                           }
                   }
   
                 chara(p, word[i]);                  chara(p, word[i]);
         }          }
   
         if (p->flags & TERMP_BOLD ||  
                         p->flags & TERMP_UNDERLINE)  
                 stylea(p, TERMSTYLE_CLEAR);  
 }  }
   
   
 /*  /*
  * Add a symbol to the output line buffer.  
  */  
 static void  
 symbola(struct termp *p, enum tsym sym)  
 {  
   
         assert(p->symtab[sym].sym);  
         stringa(p, p->symtab[sym].sym, p->symtab[sym].sz);  
 }  
   
   
 /*  
  * Add a style to the output line buffer.  
  */  
 static void  
 stylea(struct termp *p, enum tstyle style)  
 {  
   
         assert(p->styletab[style].sym);  
         stringa(p, p->styletab[style].sym, p->styletab[style].sz);  
 }  
   
   
 /*  
  * Like chara() but for arbitrary-length buffers.  Resize the buffer by   * Like chara() but for arbitrary-length buffers.  Resize the buffer by
  * a factor of two (if the buffer is less than that) or the buffer's   * a factor of two (if the buffer is less than that) or the buffer's
  * size.   * size.
Line 963  sanity(const struct mdoc_node *n)
Line 889  sanity(const struct mdoc_node *n)
                 }                  }
                 break;                  break;
         }          }
   }
   
   
   __dead void
   punt(struct nroffopt *nroff, char *in)
   {
           char            *args[32];
           char             arg0[32], argm[32];
           int              i;
   
           warnx("punting to nroff!");
   
           i = 0;
   
           (void)strlcpy(arg0, "nroff", 32);
           args[i++] = arg0;
   
           if (nroff->fl_h)
                   args[i++] = "-h";
           if (nroff->fl_i)
                   args[i++] = "-i";
   
           if (nroff->arg_m) {
                   (void)strlcpy(argm, "-m", 32);
                   (void)strlcat(argm, nroff->arg_m, 32);
                   args[i++] = argm;
           } else
                   args[i++] = "-mandoc";
   
           args[i++] = in;
           args[i++] = (char *)NULL;
   
           (void)execvp("nroff", args);
           errx(1, "exec");
           /* NOTREACHED */
 }  }
   

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.48

CVSweb