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

Diff for /mandoc/Attic/mdocterm.c between version 1.41 and 1.42

version 1.41, 2009/03/14 05:36:07 version 1.42, 2009/03/14 12:35:02
Line 29 
Line 29 
 #include "mmain.h"  #include "mmain.h"
 #include "term.h"  #include "term.h"
   
 struct  termenc {  struct  termseq {
         const char       *enc;          const char       *enc;
         int               sym;          int               sym;
 };  };
   
   static  int               option(void *, int, const char *);
 static  void              body(struct termp *,  static  void              body(struct termp *,
                                 struct termpair *,                                  struct termpair *,
                                 const struct mdoc_meta *,                                  const struct mdoc_meta *,
Line 53  static void    stringa(struct termp *, 
Line 54  static void    stringa(struct termp *, 
                                 const char *, size_t);                                  const char *, size_t);
 static  void              symbola(struct termp *, enum tsym);  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__  #ifdef __linux__
 extern  size_t            strlcat(char *, const char *, size_t);  extern  size_t            strlcat(char *, const char *, size_t);
 extern  size_t            strlcpy(char *, const char *, size_t);  extern  size_t            strlcpy(char *, const char *, size_t);
 #endif  #endif
   
 static  struct termenc    termenc1[] = {  static  struct termseq    termenc1[] = {
         { "\\",           TERMSYM_SLASH },          { "\\",           TERMSYM_SLASH },
         { "\'",           TERMSYM_RSQUOTE },          { "\'",           TERMSYM_RSQUOTE },
         { "`",            TERMSYM_LSQUOTE },          { "`",            TERMSYM_LSQUOTE },
Line 74  static struct termenc   termenc1[] = {
Line 74  static struct termenc   termenc1[] = {
         { NULL,           0 }          { NULL,           0 }
 };  };
   
 static  struct termenc    termenc2[] = {  static  struct termseq    termenc2[] = {
         { "rC",           TERMSYM_RBRACE },          { "rC",           TERMSYM_RBRACE },
         { "lC",           TERMSYM_LBRACE },          { "lC",           TERMSYM_LBRACE },
         { "rB",           TERMSYM_RBRACK },          { "rB",           TERMSYM_RBRACK },
Line 126  static struct termenc   termenc2[] = {
Line 126  static struct termenc   termenc2[] = {
         { NULL,           0 }          { NULL,           0 }
 };  };
   
 static  struct termsym    termsym_ansi[TERMSYM_MAX] = {  static  struct termsym    termsym_ascii[TERMSYM_MAX] = {
         { "]", 1 },             /* TERMSYM_RBRACK */          { "]", 1 },             /* TERMSYM_RBRACK */
         { "[", 1 },             /* TERMSYM_LBRACK */          { "[", 1 },             /* TERMSYM_LBRACK */
         { "<-", 2 },            /* TERMSYM_LARROW */          { "<-", 2 },            /* TERMSYM_LARROW */
Line 170  static struct termsym   termsym_ansi[TERMSYM_MAX] = {
Line 170  static struct termsym   termsym_ansi[TERMSYM_MAX] = {
         { "}", 1 },             /* TERMSYM_RBRACE */          { "}", 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[])
 {  {
Line 189  main(int argc, char *argv[])
Line 179  main(int argc, char *argv[])
         const struct mdoc *mdoc;          const struct mdoc *mdoc;
         struct termp       termp;          struct termp       termp;
   
           (void)memset(&termp, 0, sizeof(struct termp));
   
           termp.maxrmargin = termp.rmargin = 78; /* XXX */
           termp.maxcols = 1024;
           termp.offset = termp.col = 0;
           termp.flags = TERMP_NOSPACE;
           termp.symtab = termsym_ascii;
           termp.enc = TERMENC_ANSI;
   
         p = mmain_alloc();          p = mmain_alloc();
           c = mmain_getopt(p, argc, argv, "[-Ooption...]",
                           "O:", &termp, option);
   
         c = mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL);  
         if (1 != c)          if (1 != c)
                 mmain_exit(p, -1 == c ? 1 : 0);                  mmain_exit(p, -1 == c ? 1 : 0);
   
         if (NULL == (mdoc = mmain_mdoc(p)))          if (NULL == (mdoc = mmain_mdoc(p)))
                 mmain_exit(p, 1);                  mmain_exit(p, 1);
   
         termp.maxrmargin = termp.rmargin = 78; /* XXX */  
         termp.maxcols = 1024;  
         termp.offset = termp.col = 0;  
         termp.flags = TERMP_NOSPACE;  
         termp.symtab = termsym_ansi;  
         termp.styletab = termstyle_ansi;  
   
         if (NULL == (termp.buf = malloc(termp.maxcols)))          if (NULL == (termp.buf = malloc(termp.maxcols)))
                 err(1, "malloc");                  err(1, "malloc");
   
Line 219  main(int argc, char *argv[])
Line 212  main(int argc, char *argv[])
 }  }
   
   
   int
   option(void *ptr, int c, const char *arg)
   {
           struct termp    *p;
   
           p = (struct termp *)ptr;
   
           if (0 == strcmp(arg, "nroff")) {
                   p->enc = TERMENC_NROFF;
                   return(1);
           } else if (0 == strcmp(arg, "ansi")) {
                   p->enc = TERMENC_ANSI;
                   return(1);
           }
   
           warnx("unknown option: -O%s", arg);
           return(0);
   }
   
   
 /*  /*
  * 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 288  flushln(struct termp *p)
Line 301  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 (isspace((u_char)p->buf[j])) {
                                 break;                                  break;
                         else if (27 == p->buf[j]) {                          } else if (27 == p->buf[j]) {
                                 assert(j + 4 <= p->col);                                  assert(TERMENC_ANSI == p->enc);
                                 j += 3;                                  assert(j + 5 <= p->col);
                                   j += 4;
                           } else if (8 == p->buf[j]) {
                                   assert(TERMENC_NROFF == p->enc);
                                   assert(j + 2 <= p->col);
                                   j += 1;
                         } else                          } else
                                 vsz++;                                  vsz++;
                 }                  }
Line 656  header(struct termp *p, const struct mdoc_meta *meta)
Line 672  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;          struct termseq  *enc;
   
         switch (len) {          switch (len) {
         case (1):          case (1):
Line 763  pword(struct termp *p, const char *word, size_t len)
Line 779  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)          if (TERMENC_ANSI == p->enc && TERMP_STYLE & p->flags) {
                 stylea(p, TERMSTYLE_BOLD);                  if (TERMP_BOLD & p->flags) {
         if (p->flags & TERMP_UNDERLINE)                          chara(p, 27);
                 stylea(p, TERMSTYLE_UNDER);                          stringa(p, "[01m", 4);
                   }
                   if (TERMP_UNDER & p->flags) {
                           chara(p, 27);
                           stringa(p, "[04m", 4);
                   }
                   if (TERMP_RED & p->flags) {
                           chara(p, 27);
                           stringa(p, "[31m", 4);
                   }
                   if (TERMP_GREEN & p->flags) {
                           chara(p, 27);
                           stringa(p, "[32m", 4);
                   }
                   if (TERMP_YELLOW & p->flags) {
                           chara(p, 27);
                           stringa(p, "[33m", 4);
                   }
                   if (TERMP_BLUE & p->flags) {
                           chara(p, 27);
                           stringa(p, "[34m", 4);
                   }
                   if (TERMP_MAGENTA & p->flags) {
                           chara(p, 27);
                           stringa(p, "[35m", 4);
                   }
                   if (TERMP_CYAN & p->flags) {
                           chara(p, 27);
                           stringa(p, "[36m", 4);
                   }
           }
   
         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 (TERMENC_NROFF == p->enc &&
                                   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 ||          if (TERMENC_ANSI == p->enc && TERMP_STYLE & p->flags) {
                         p->flags & TERMP_UNDERLINE)                  chara(p, 27);
                 stylea(p, TERMSTYLE_CLEAR);                  stringa(p, "[00m", 4);
           }
 }  }
   
   
Line 795  symbola(struct termp *p, enum tsym sym)
Line 855  symbola(struct termp *p, enum tsym sym)
   
         assert(p->symtab[sym].sym);          assert(p->symtab[sym].sym);
         stringa(p, p->symtab[sym].sym, p->symtab[sym].sz);          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);  
 }  }
   
   

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb