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

Diff for /mandoc/term.c between version 1.136 and 1.147

version 1.136, 2010/05/17 02:03:49 version 1.147, 2010/06/11 07:23:04
Line 22 
Line 22 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
   #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <time.h>  
   
   #include "mandoc.h"
 #include "chars.h"  #include "chars.h"
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
Line 34 
Line 35 
 #include "mdoc.h"  #include "mdoc.h"
 #include "main.h"  #include "main.h"
   
 static  struct termp     *term_alloc(enum termenc, size_t);  
 static  void              term_free(struct termp *);  
 static  void              spec(struct termp *, const char *, size_t);  static  void              spec(struct termp *, const char *, size_t);
 static  void              res(struct termp *, const char *, size_t);  static  void              res(struct termp *, const char *, size_t);
 static  void              buffera(struct termp *, const char *, size_t);  static  void              buffera(struct termp *, const char *, size_t);
Line 44  static void    adjbuf(struct termp *p, size_t);
Line 43  static void    adjbuf(struct termp *p, size_t);
 static  void              encode(struct termp *, const char *, size_t);  static  void              encode(struct termp *, const char *, size_t);
   
   
 void *  void
 ascii_alloc(size_t width)  term_free(struct termp *p)
 {  {
   
         return(term_alloc(TERMENC_ASCII, width));          if (p->buf)
                   free(p->buf);
           if (p->symtab)
                   chars_free(p->symtab);
   
           free(p);
 }  }
   
   
 void  void
 terminal_free(void *arg)  term_begin(struct termp *p, term_margin head,
                   term_margin foot, const void *arg)
 {  {
   
         term_free((struct termp *)arg);          p->headf = head;
           p->footf = foot;
           p->argf = arg;
           (*p->begin)(p);
 }  }
   
   
 static void  void
 term_free(struct termp *p)  term_end(struct termp *p)
 {  {
   
         if (p->buf)          (*p->end)(p);
                 free(p->buf);  
         if (p->symtab)  
                 chars_free(p->symtab);  
   
         free(p);  
 }  }
   
   
 static struct termp *  struct termp *
 term_alloc(enum termenc enc, size_t width)  term_alloc(enum termenc enc)
 {  {
         struct termp *p;          struct termp    *p;
   
         p = calloc(1, sizeof(struct termp));          p = calloc(1, sizeof(struct termp));
         if (NULL == p) {          if (NULL == p) {
                 perror(NULL);                  perror(NULL);
                 exit(EXIT_FAILURE);                  exit(EXIT_FAILURE);
         }          }
   
           p->tabwidth = 5;
         p->enc = enc;          p->enc = enc;
         /* Enforce some lower boundary. */          p->defrmargin = 78;
         if (width < 60)  
                 width = 60;  
         p->defrmargin = width - 2;  
         return(p);          return(p);
 }  }
   
Line 136  term_flushln(struct termp *p)
Line 138  term_flushln(struct termp *p)
         size_t           vend;  /* end of word visual position on output */          size_t           vend;  /* end of word visual position on output */
         size_t           bp;    /* visual right border position */          size_t           bp;    /* visual right border position */
         int              j;     /* temporary loop index */          int              j;     /* temporary loop index */
           int              jhy;   /* last hyphen before line overflow */
         size_t           maxvis, mmax;          size_t           maxvis, mmax;
   
         /*          /*
Line 170  term_flushln(struct termp *p)
Line 173  term_flushln(struct termp *p)
         while (i < (int)p->col) {          while (i < (int)p->col) {
   
                 /*                  /*
                    * Handle literal tab characters.
                    */
                   for (j = i; j < (int)p->col; j++) {
                           if ('\t' != p->buf[j])
                                   break;
                           vend = (vis/p->tabwidth+1)*p->tabwidth;
                           vbl += vend - vis;
                           vis = vend;
                   }
   
                   /*
                  * Count up visible word characters.  Control sequences                   * Count up visible word characters.  Control sequences
                  * (starting with the CSI) aren't counted.  A space                   * (starting with the CSI) aren't counted.  A space
                  * generates a non-printing word, which is valid (the                   * generates a non-printing word, which is valid (the
Line 177  term_flushln(struct termp *p)
Line 191  term_flushln(struct termp *p)
                  */                   */
   
                 /* LINTED */                  /* LINTED */
                 for (j = i; j < (int)p->col; j++) {                  for (jhy = 0; j < (int)p->col; j++) {
                         if (j && ' ' == p->buf[j])                          if ((j && ' ' == p->buf[j]) || '\t' == p->buf[j])
                                 break;                                  break;
                         if (8 == p->buf[j])                          if (8 != p->buf[j]) {
                                 vend--;                                  if (vend > vis && vend < bp &&
                         else                                      ASCII_HYPH == p->buf[j])
                                           jhy = j;
                                 vend++;                                  vend++;
                           } else
                                   vend--;
                 }                  }
   
                 /*                  /*
                  * Find out whether we would exceed the right margin.                   * Find out whether we would exceed the right margin.
                  * If so, break to the next line.                   * If so, break to the next line.
                  */                   */
                 if (vend > bp && vis > 0) {                  if (vend > bp && 0 == jhy && vis > 0) {
                         vend -= vis;                          vend -= vis;
                         putchar('\n');                          (*p->endline)(p);
                         if (TERMP_NOBREAK & p->flags) {                          if (TERMP_NOBREAK & p->flags) {
                                 for (j = 0; j < (int)p->rmargin; j++)                                  p->viscol = p->rmargin;
                                         putchar(' ');                                  (*p->advance)(p, p->rmargin);
                                 vend += p->rmargin - p->offset;                                  vend += p->rmargin - p->offset;
                         } else {                          } else {
                                   p->viscol = 0;
                                 vbl = p->offset;                                  vbl = p->offset;
                         }                          }
   
Line 208  term_flushln(struct termp *p)
Line 226  term_flushln(struct termp *p)
                         p->overstep = 0;                          p->overstep = 0;
                 }                  }
   
                   /*
                    * Skip leading tabs, they were handled above.
                    */
                   while (i < (int)p->col && '\t' == p->buf[i])
                           i++;
   
                 /* Write out the [remaining] word. */                  /* Write out the [remaining] word. */
                 for ( ; i < (int)p->col; i++) {                  for ( ; i < (int)p->col; i++) {
                           if (vend > bp && jhy > 0 && i > jhy)
                                   break;
                           if ('\t' == p->buf[i])
                                   break;
                         if (' ' == p->buf[i]) {                          if (' ' == p->buf[i]) {
                                 while (' ' == p->buf[i]) {                                  while (' ' == p->buf[i]) {
                                         vbl++;                                          vbl++;
Line 228  term_flushln(struct termp *p)
Line 256  term_flushln(struct termp *p)
                          * so write preceding white space now.                           * so write preceding white space now.
                          */                           */
                         if (vbl) {                          if (vbl) {
                                 for (j = 0; j < (int)vbl; j++)                                  (*p->advance)(p, vbl);
                                         putchar(' ');                                  p->viscol += vbl;
                                 vbl = 0;                                  vbl = 0;
                         }                          }
                         putchar(p->buf[i]);  
                           if (ASCII_HYPH == p->buf[i])
                                   (*p->letter)(p, '-');
                           else
                                   (*p->letter)(p, p->buf[i]);
   
                           p->viscol += 1;
                 }                  }
                 vend += vbl;                  vend += vbl;
                 vis = vend;                  vis = vend;
Line 242  term_flushln(struct termp *p)
Line 276  term_flushln(struct termp *p)
         p->overstep = 0;          p->overstep = 0;
   
         if ( ! (TERMP_NOBREAK & p->flags)) {          if ( ! (TERMP_NOBREAK & p->flags)) {
                 putchar('\n');                  p->viscol = 0;
                   (*p->endline)(p);
                 return;                  return;
         }          }
   
Line 273  term_flushln(struct termp *p)
Line 308  term_flushln(struct termp *p)
   
         /* Right-pad. */          /* Right-pad. */
         if (maxvis > vis + /* LINTED */          if (maxvis > vis + /* LINTED */
                         ((TERMP_TWOSPACE & p->flags) ? 1 : 0))                          ((TERMP_TWOSPACE & p->flags) ? 1 : 0)) {
                 for ( ; vis < maxvis; vis++)                  p->viscol += maxvis - vis;
                         putchar(' ');                  (*p->advance)(p, maxvis - vis);
         else {  /* ...or newline break. */                  vis += (maxvis - vis);
                 putchar('\n');          } else {        /* ...or newline break. */
                 for (i = 0; i < (int)p->rmargin; i++)                  (*p->endline)(p);
                         putchar(' ');                  p->viscol = p->rmargin;
                   (*p->advance)(p, p->rmargin);
         }          }
 }  }
   
Line 294  term_newln(struct termp *p)
Line 330  term_newln(struct termp *p)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         if (0 == p->col) {          if (0 == p->col && 0 == p->viscol) {
                 p->flags &= ~TERMP_NOLPAD;                  p->flags &= ~TERMP_NOLPAD;
                 return;                  return;
         }          }
Line 314  term_vspace(struct termp *p)
Line 350  term_vspace(struct termp *p)
 {  {
   
         term_newln(p);          term_newln(p);
         putchar('\n');          p->viscol = 0;
           (*p->endline)(p);
 }  }
   
   

Legend:
Removed from v.1.136  
changed lines
  Added in v.1.147

CVSweb