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

Diff for /mandoc/Attic/mdocterm.c between version 1.3 and 1.12

version 1.3, 2009/02/23 07:09:13 version 1.12, 2009/02/25 15:12:26
Line 1 
Line 1 
         /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *   *
Line 24 
Line 24 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
   #ifndef __OpenBSD__
   #include <time.h>
   #endif
   
 #include "mmain.h"  #include "mmain.h"
 #include "term.h"  #include "term.h"
   
   #ifdef __NetBSD__
   #define xisspace(x) isspace((int)(x))
   #else
   #define xisspace(x) isspace((x))
   #endif
   
 enum    termstyle {  enum    termstyle {
         STYLE_CLEAR,          STYLE_CLEAR,
         STYLE_BOLD,          STYLE_BOLD,
Line 34  enum termstyle {
Line 44  enum termstyle {
 };  };
   
 static  void              body(struct termp *,  static  void              body(struct termp *,
                                   struct termpair *,
                                 const struct mdoc_meta *,                                  const struct mdoc_meta *,
                                 const struct mdoc_node *);                                  const struct mdoc_node *);
 static  void              header(struct termp *,  static  void              header(struct termp *,
Line 44  static void    footer(struct termp *,
Line 55  static void    footer(struct termp *,
 static  void              pword(struct termp *, const char *, size_t);  static  void              pword(struct termp *, const char *, size_t);
 static  void              pescape(struct termp *,  static  void              pescape(struct termp *,
                                 const char *, size_t *, size_t);                                  const char *, size_t *, size_t);
   static  void              nescape(struct termp *,
                                   const char *, size_t);
 static  void              chara(struct termp *, char);  static  void              chara(struct termp *, char);
   static  void              stringa(struct termp *, const char *);
 static  void              style(struct termp *, enum termstyle);  static  void              style(struct termp *, enum termstyle);
   
 #ifdef __linux__  #ifdef __linux__
Line 60  main(int argc, char *argv[])
Line 74  main(int argc, char *argv[])
         const struct mdoc *mdoc;          const struct mdoc *mdoc;
         struct termp     termp;          struct termp     termp;
   
         extern int       optreset;  
         extern int       optind;  
   
         p = mmain_alloc();          p = mmain_alloc();
   
         if ( ! mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL))          if ( ! mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL))
Line 81  main(int argc, char *argv[])
Line 92  main(int argc, char *argv[])
                 err(1, "malloc");                  err(1, "malloc");
   
         header(&termp, mdoc_meta(mdoc));          header(&termp, mdoc_meta(mdoc));
         body(&termp, mdoc_meta(mdoc), mdoc_node(mdoc));          body(&termp, NULL, mdoc_meta(mdoc), mdoc_node(mdoc));
         footer(&termp, mdoc_meta(mdoc));          footer(&termp, mdoc_meta(mdoc));
   
         free(termp.buf);          free(termp.buf);
Line 135  flushln(struct termp *p)
Line 146  flushln(struct termp *p)
                  * Count up visible word characters.  Control sequences                   * Count up visible word characters.  Control sequences
                  * (starting with the CSI) aren't counted.                   * (starting with the CSI) aren't counted.
                  */                   */
                 assert( ! isspace(p->buf[i]));                  assert( ! xisspace(p->buf[i]));
   
                 /* LINTED */                  /* LINTED */
                 for (j = i, vsz = 0; j < p->col; j++) {                  for (j = i, vsz = 0; j < p->col; j++) {
                         if (isspace(p->buf[j]))                          if (xisspace(p->buf[j]))
                                 break;                                  break;
                         else if (27 == p->buf[j]) {                          else if (27 == p->buf[j]) {
                                 assert(j + 4 <= p->col);                                  assert(j + 4 <= p->col);
Line 165  flushln(struct termp *p)
Line 176  flushln(struct termp *p)
                         for (j = 0; j < p->offset; j++)                          for (j = 0; j < p->offset; j++)
                                 putchar(' ');                                  putchar(' ');
                         vis = 0;                          vis = 0;
                 } else if (vis + vsz >= maxvis) {                  } else if (vis + vsz >= maxvis)
                         /* FIXME */                          /* FIXME */
                         errx(1, "word breaks right margin");                          errx(1, "word breaks right margin");
                 }  
   
                 /*                  /*
                  * Write out the word and a trailing space.  Omit the                   * Write out the word and a trailing space.  Omit the
Line 176  flushln(struct termp *p)
Line 186  flushln(struct termp *p)
                  */                   */
   
                 for ( ; i < p->col; i++) {                  for ( ; i < p->col; i++) {
                         if (isspace(p->buf[i]))                          if (xisspace(p->buf[i]))
                                 break;                                  break;
                         putchar(p->buf[i]);                          putchar(p->buf[i]);
                 }                  }
Line 193  flushln(struct termp *p)
Line 203  flushln(struct termp *p)
          */           */
   
         if (p->flags & TERMP_NOBREAK) {          if (p->flags & TERMP_NOBREAK) {
                 for ( ; vis <= maxvis; vis++)                  for ( ; vis < maxvis; vis++)
                         putchar(' ');                          putchar(' ');
         } else          } else
                 putchar('\n');                  putchar('\n');
Line 211  newln(struct termp *p)
Line 221  newln(struct termp *p)
          * vertical space.           * vertical space.
          */           */
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         if (0 == p->col)          if (0 == p->col) {
                   p->flags &= ~TERMP_NOLPAD;
                 return;                  return;
           }
         flushln(p);          flushln(p);
           p->flags &= ~TERMP_NOLPAD;
 }  }
   
   
Line 231  vspace(struct termp *p)
Line 244  vspace(struct termp *p)
   
   
 static void  static void
   stringa(struct termp *p, const char *s)
   {
   
           /* XXX - speed up if not passing to chara. */
           for ( ; *s; s++)
                   chara(p, *s);
   }
   
   
   static void
 chara(struct termp *p, char c)  chara(struct termp *p, char c)
 {  {
   
Line 269  style(struct termp *p, enum termstyle esc)
Line 292  style(struct termp *p, enum termstyle esc)
   
   
 static void  static void
   nescape(struct termp *p, const char *word, size_t len)
   {
   
           switch (len) {
           case (2):
                   if ('r' == word[0] && 'B' == word[1])
                           chara(p, ']');
                   else if ('l' == word[0] && 'B' == word[1])
                           chara(p, '[');
                   else if ('<' == word[0] && '-' == word[1])
                           stringa(p, "<-");
                   else if ('-' == word[0] && '>' == word[1])
                           stringa(p, "->");
                   else if ('l' == word[0] && 'q' == word[1])
                           chara(p, '\"');
                   else if ('r' == word[0] && 'q' == word[1])
                           chara(p, '\"');
                   else if ('b' == word[0] && 'u' == word[1])
                           chara(p, 'o');
                   break;
           default:
                   break;
           }
   }
   
   
   static void
 pescape(struct termp *p, const char *word, size_t *i, size_t len)  pescape(struct termp *p, const char *word, size_t *i, size_t len)
 {  {
           size_t           j;
   
         (*i)++;          (*i)++;
         assert(*i < len);          assert(*i < len);
Line 279  pescape(struct termp *p, const char *word, size_t *i, 
Line 330  pescape(struct termp *p, const char *word, size_t *i, 
                 /* Two-character escapes. */                  /* Two-character escapes. */
                 (*i)++;                  (*i)++;
                 assert(*i + 1 < len);                  assert(*i + 1 < len);
                   nescape(p, &word[*i], 2);
                 if ('r' == word[*i] && 'B' == word[*i + 1])  
                         chara(p, ']');  
                 else if ('l' == word[*i] && 'B' == word[*i + 1])  
                         chara(p, '[');  
   
                 (*i)++;                  (*i)++;
                 return;                  return;
   
Line 306  pescape(struct termp *p, const char *word, size_t *i, 
Line 352  pescape(struct termp *p, const char *word, size_t *i, 
                 }                  }
                 return;                  return;
         }          }
         /* n-character escapes. */  
           (*i)++;
           for (j = 0; word[*i] && ']' != word[*i]; (*i)++, j++)
                   /* Loop... */ ;
   
           nescape(p, &word[*i - j], j);
 }  }
   
   
Line 363  word(struct termp *p, const char *word)
Line 414  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(word[i])) {                  if ( ! xisspace(word[i])) {
                         j++;                          j++;
                         continue;                          continue;
                 }                  }
Line 381  word(struct termp *p, const char *word)
Line 432  word(struct termp *p, const char *word)
   
   
 static void  static void
 body(struct termp *p, const struct mdoc_meta *meta,  body(struct termp *p, struct termpair *ppair,
                   const struct mdoc_meta *meta,
                 const struct mdoc_node *node)                  const struct mdoc_node *node)
 {  {
         int              dochild;          int              dochild;
           struct termpair  pair;
   
         /* Pre-processing. */          /* Pre-processing. */
   
         dochild = 1;          dochild = 1;
           pair.ppair = ppair;
           pair.type = 0;
           pair.offset = pair.rmargin = 0;
           pair.flag = 0;
           pair.count = 0;
   
         if (MDOC_TEXT != node->type) {          if (MDOC_TEXT != node->type) {
                 if (termacts[node->tok].pre)                  if (termacts[node->tok].pre)
                         if ( ! (*termacts[node->tok].pre)(p, meta, node))                          if ( ! (*termacts[node->tok].pre)(p, &pair, meta, node))
                                 dochild = 0;                                  dochild = 0;
         } else /* MDOC_TEXT == node->type */          } else /* MDOC_TEXT == node->type */
                 word(p, node->data.text.string);                  word(p, node->data.text.string);
   
         /* Children. */          /* Children. */
   
           if (TERMPAIR_FLAG & pair.type)
                   p->flags |= pair.flag;
   
         if (dochild && node->child)          if (dochild && node->child)
                 body(p, meta, node->child);                  body(p, &pair, meta, node->child);
   
           if (TERMPAIR_FLAG & pair.type)
                   p->flags &= ~pair.flag;
   
         /* Post-processing. */          /* Post-processing. */
   
         if (MDOC_TEXT != node->type)          if (MDOC_TEXT != node->type)
                 if (termacts[node->tok].post)                  if (termacts[node->tok].post)
                         (*termacts[node->tok].post)(p, meta, node);                          (*termacts[node->tok].post)(p, &pair, meta, node);
   
         /* Siblings. */          /* Siblings. */
   
         if (node->next)          if (node->next)
                 body(p, meta, node->next);                  body(p, ppair, meta, node->next);
 }  }
   
   
Line 429  footer(struct termp *p, const struct mdoc_meta *meta)
Line 493  footer(struct termp *p, const struct mdoc_meta *meta)
   
         tm = localtime(&meta->date);          tm = localtime(&meta->date);
   
 #ifdef __linux__  #ifdef __OpenBSD__
         if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))  
 #else  
         if (NULL == strftime(buf, p->rmargin, "%B %d, %Y", tm))          if (NULL == strftime(buf, p->rmargin, "%B %d, %Y", tm))
   #else
           if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))
 #endif  #endif
                 err(1, "strftime");                  err(1, "strftime");
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.12

CVSweb