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

Diff for /mandoc/term.c between version 1.137 and 1.141

version 1.137, 2010/05/17 22:11:42 version 1.141, 2010/06/07 10:52:44
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>
Line 35 
Line 36 
 #include "mdoc.h"  #include "mdoc.h"
 #include "main.h"  #include "main.h"
   
 static  struct termp     *term_alloc(enum termenc, size_t);  static  struct termp     *term_alloc(char *, enum termenc);
 static  void              term_free(struct termp *);  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);
Line 46  static void    encode(struct termp *, const char *, si
Line 47  static void    encode(struct termp *, const char *, si
   
   
 void *  void *
 ascii_alloc(size_t width)  ascii_alloc(char *outopts)
 {  {
   
         return(term_alloc(TERMENC_ASCII, width));          return(term_alloc(outopts, TERMENC_ASCII));
 }  }
   
   
Line 75  term_free(struct termp *p)
Line 76  term_free(struct termp *p)
   
   
 static struct termp *  static struct termp *
 term_alloc(enum termenc enc, size_t width)  term_alloc(char *outopts, enum termenc enc)
 {  {
         struct termp *p;          struct termp    *p;
           const char      *toks[2];
           char            *v;
           size_t           width;
   
           toks[0] = "width";
           toks[1] = NULL;
   
         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;
           width = 80;
   
           while (outopts && *outopts)
                   switch (getsubopt(&outopts, UNCONST(toks), &v)) {
                   case (0):
                           width = atoi(v);
                           break;
                   default:
                           break;
                   }
   
         /* Enforce some lower boundary. */          /* Enforce some lower boundary. */
         if (width < 60)          if (width < 60)
                 width = 60;                  width = 60;
Line 137  term_flushln(struct termp *p)
Line 157  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 171  term_flushln(struct termp *p)
Line 192  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 178  term_flushln(struct termp *p)
Line 210  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');                          putchar('\n');
                         if (TERMP_NOBREAK & p->flags) {                          if (TERMP_NOBREAK & p->flags) {
                                   p->viscol = p->rmargin;
                                 for (j = 0; j < (int)p->rmargin; j++)                                  for (j = 0; j < (int)p->rmargin; j++)
                                         putchar(' ');                                          putchar(' ');
                                 vend += p->rmargin - p->offset;                                  vend += p->rmargin - p->offset;
                         } else {                          } else {
                                   p->viscol = 0;
                                 vbl = p->offset;                                  vbl = p->offset;
                         }                          }
   
Line 209  term_flushln(struct termp *p)
Line 246  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 231  term_flushln(struct termp *p)
Line 278  term_flushln(struct termp *p)
                         if (vbl) {                          if (vbl) {
                                 for (j = 0; j < (int)vbl; j++)                                  for (j = 0; j < (int)vbl; j++)
                                         putchar(' ');                                          putchar(' ');
                                   p->viscol += vbl;
                                 vbl = 0;                                  vbl = 0;
                         }                          }
                         putchar(p->buf[i]);  
                           if (ASCII_HYPH == p->buf[i])
                                   putchar('-');
                           else
                                   putchar(p->buf[i]);
   
                           p->viscol += 1;
                 }                  }
                 vend += vbl;                  vend += vbl;
                 vis = vend;                  vis = vend;
Line 243  term_flushln(struct termp *p)
Line 297  term_flushln(struct termp *p)
         p->overstep = 0;          p->overstep = 0;
   
         if ( ! (TERMP_NOBREAK & p->flags)) {          if ( ! (TERMP_NOBREAK & p->flags)) {
                   p->viscol = 0;
                 putchar('\n');                  putchar('\n');
                 return;                  return;
         }          }
Line 274  term_flushln(struct termp *p)
Line 329  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)) {
                   p->viscol += maxvis - vis;
                 for ( ; vis < maxvis; vis++)                  for ( ; vis < maxvis; vis++)
                         putchar(' ');                          putchar(' ');
         else {  /* ...or newline break. */          } else {        /* ...or newline break. */
                 putchar('\n');                  putchar('\n');
                   p->viscol = p->rmargin;
                 for (i = 0; i < (int)p->rmargin; i++)                  for (i = 0; i < (int)p->rmargin; i++)
                         putchar(' ');                          putchar(' ');
         }          }
Line 295  term_newln(struct termp *p)
Line 352  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 315  term_vspace(struct termp *p)
Line 372  term_vspace(struct termp *p)
 {  {
   
         term_newln(p);          term_newln(p);
           p->viscol = 0;
         putchar('\n');          putchar('\n');
 }  }
   

Legend:
Removed from v.1.137  
changed lines
  Added in v.1.141

CVSweb