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

Diff for /mandoc/term.c between version 1.239 and 1.258

version 1.239, 2014/12/23 06:16:46 version 1.258, 2016/08/10 11:03:43
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2016 Ingo Schwarze <schwarze@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 above   * purpose with or without fee is hereby granted, provided that the above
  * copyright notice and this permission notice appear in all copies.   * copyright notice and this permission notice appear in all copies.
  *   *
  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Line 49  term_free(struct termp *p)
Line 49  term_free(struct termp *p)
   
 void  void
 term_begin(struct termp *p, term_margin head,  term_begin(struct termp *p, term_margin head,
                 term_margin foot, const void *arg)                  term_margin foot, const struct roff_meta *arg)
 {  {
   
         p->headf = head;          p->headf = head;
Line 78  term_end(struct termp *p)
Line 78  term_end(struct termp *p)
  *    the next column.  However, if less than p->trailspace blanks,   *    the next column.  However, if less than p->trailspace blanks,
  *    which can be 0, 1, or 2, remain to the right margin, the line   *    which can be 0, 1, or 2, remain to the right margin, the line
  *    will be broken.   *    will be broken.
    *  - TERMP_BRTRSP: Consider trailing whitespace significant
    *    when deciding whether the chunk fits or not.
  *  - TERMP_BRIND: If the chunk does not fit and the output line has   *  - TERMP_BRIND: If the chunk does not fit and the output line has
  *    to be broken, start the next line at the right margin instead   *    to be broken, start the next line at the right margin instead
  *    of at the offset.  Used together with TERMP_NOBREAK for the tags   *    of at the offset.  Used together with TERMP_NOBREAK for the tags
Line 101  term_flushln(struct termp *p)
Line 103  term_flushln(struct termp *p)
         size_t           j;     /* temporary loop index for p->buf */          size_t           j;     /* temporary loop index for p->buf */
         size_t           jhy;   /* last hyph before overflow w/r/t j */          size_t           jhy;   /* last hyph before overflow w/r/t j */
         size_t           maxvis; /* output position of visible boundary */          size_t           maxvis; /* output position of visible boundary */
         size_t           rmargin; /* the rightmost of the two margins */  
   
         /*          /*
          * First, establish the maximum columns of "visible" content.           * First, establish the maximum columns of "visible" content.
Line 114  term_flushln(struct termp *p)
Line 115  term_flushln(struct termp *p)
          * is negative, it gets sign extended.  Subtracting that           * is negative, it gets sign extended.  Subtracting that
          * very large size_t effectively adds a small number to dv.           * very large size_t effectively adds a small number to dv.
          */           */
         rmargin = p->rmargin > p->offset ? p->rmargin : p->offset;          dv = p->rmargin > p->offset ? p->rmargin - p->offset : 0;
         dv = p->rmargin - p->offset;  
         maxvis = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0;          maxvis = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0;
   
         if (p->flags & TERMP_NOBREAK) {          if (p->flags & TERMP_NOBREAK) {
Line 160  term_flushln(struct termp *p)
Line 160  term_flushln(struct termp *p)
                         if (' ' == p->buf[j] || '\t' == p->buf[j])                          if (' ' == p->buf[j] || '\t' == p->buf[j])
                                 break;                                  break;
   
                         /* Back over the the last printed character. */                          /* Back over the last printed character. */
                         if (8 == p->buf[j]) {                          if (8 == p->buf[j]) {
                                 assert(j);                                  assert(j);
                                 vend -= (*p->width)(p, p->buf[j - 1]);                                  vend -= (*p->width)(p, p->buf[j - 1]);
Line 193  term_flushln(struct termp *p)
Line 193  term_flushln(struct termp *p)
                         (*p->endline)(p);                          (*p->endline)(p);
                         p->viscol = 0;                          p->viscol = 0;
                         if (TERMP_BRIND & p->flags) {                          if (TERMP_BRIND & p->flags) {
                                 vbl = rmargin;                                  vbl = p->rmargin;
                                 vend += rmargin - p->offset;                                  vend += p->rmargin;
                                   vend -= p->offset;
                         } else                          } else
                                 vbl = p->offset;                                  vbl = p->offset;
   
Line 266  term_flushln(struct termp *p)
Line 267  term_flushln(struct termp *p)
   
         p->col = 0;          p->col = 0;
         p->overstep = 0;          p->overstep = 0;
           p->flags &= ~(TERMP_BACKAFTER | TERMP_BACKBEFORE);
   
         if ( ! (TERMP_NOBREAK & p->flags)) {          if ( ! (TERMP_NOBREAK & p->flags)) {
                 p->viscol = 0;                  p->viscol = 0;
Line 274  term_flushln(struct termp *p)
Line 276  term_flushln(struct termp *p)
         }          }
   
         if (TERMP_HANG & p->flags) {          if (TERMP_HANG & p->flags) {
                 p->overstep = (int)(vis - maxvis +                  p->overstep += (int)(p->offset + vis - p->rmargin +
                     p->trailspace * (*p->width)(p, ' '));                      p->trailspace * (*p->width)(p, ' '));
   
                 /*                  /*
Line 291  term_flushln(struct termp *p)
Line 293  term_flushln(struct termp *p)
         } else if (TERMP_DANGLE & p->flags)          } else if (TERMP_DANGLE & p->flags)
                 return;                  return;
   
           /* Trailing whitespace is significant in some columns. */
           if (vis && vbl && (TERMP_BRTRSP & p->flags))
                   vis += vbl;
   
         /* If the column was overrun, break the line. */          /* If the column was overrun, break the line. */
         if (maxvis < vis + p->trailspace * (*p->width)(p, ' ')) {          if (maxvis < vis + p->trailspace * (*p->width)(p, ' ')) {
                 (*p->endline)(p);                  (*p->endline)(p);
Line 359  term_fontpush(struct termp *p, enum termfont f)
Line 365  term_fontpush(struct termp *p, enum termfont f)
         if (++p->fonti == p->fontsz) {          if (++p->fonti == p->fontsz) {
                 p->fontsz += 8;                  p->fontsz += 8;
                 p->fontq = mandoc_reallocarray(p->fontq,                  p->fontq = mandoc_reallocarray(p->fontq,
                     p->fontsz, sizeof(enum termfont *));                      p->fontsz, sizeof(*p->fontq));
         }          }
         p->fontq[p->fonti] = f;          p->fontq[p->fonti] = f;
 }  }
   
 /* Retrieve pointer to current font. */  
 const enum termfont *  
 term_fontq(struct termp *p)  
 {  
   
         return(&p->fontq[p->fonti]);  
 }  
   
 /* Flush to make the saved pointer current again. */  /* Flush to make the saved pointer current again. */
 void  void
 term_fontpopq(struct termp *p, const enum termfont *key)  term_fontpopq(struct termp *p, int i)
 {  {
   
         while (p->fonti >= 0 && key < p->fontq + p->fonti)          assert(i >= 0);
                 p->fonti--;          if (p->fonti > i)
         assert(p->fonti >= 0);                  p->fonti = i;
 }  }
   
 /* Pop one font off the stack. */  /* Pop one font off the stack. */
Line 422  term_word(struct termp *p, const char *word)
Line 420  term_word(struct termp *p, const char *word)
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
   
         p->flags &= ~(TERMP_SENTENCE | TERMP_NONEWLINE);          p->flags &= ~(TERMP_SENTENCE | TERMP_NONEWLINE);
           p->skipvsp = 0;
   
         while ('\0' != *word) {          while ('\0' != *word) {
                 if ('\\' != *word) {                  if ('\\' != *word) {
                         if (TERMP_SKIPCHAR & p->flags) {  
                                 p->flags &= ~TERMP_SKIPCHAR;  
                                 word++;  
                                 continue;  
                         }  
                         if (TERMP_NBRWORD & p->flags) {                          if (TERMP_NBRWORD & p->flags) {
                                 if (' ' == *word) {                                  if (' ' == *word) {
                                         encode(p, nbrsp, 1);                                          encode(p, nbrsp, 1);
Line 460  term_word(struct termp *p, const char *word)
Line 454  term_word(struct termp *p, const char *word)
                         break;                          break;
                 case ESCAPE_SPECIAL:                  case ESCAPE_SPECIAL:
                         if (p->enc == TERMENC_ASCII) {                          if (p->enc == TERMENC_ASCII) {
                                 cp = mchars_spec2str(p->symtab,                                  cp = mchars_spec2str(seq, sz, &ssz);
                                     seq, sz, &ssz);  
                                 if (cp != NULL)                                  if (cp != NULL)
                                         encode(p, cp, ssz);                                          encode(p, cp, ssz);
                         } else {                          } else {
                                 uc = mchars_spec2cp(p->symtab, seq, sz);                                  uc = mchars_spec2cp(seq, sz);
                                 if (uc > 0)                                  if (uc > 0)
                                         encode1(p, uc);                                          encode1(p, uc);
                         }                          }
Line 480  term_word(struct termp *p, const char *word)
Line 473  term_word(struct termp *p, const char *word)
                         term_fontrepl(p, TERMFONT_BI);                          term_fontrepl(p, TERMFONT_BI);
                         continue;                          continue;
                 case ESCAPE_FONT:                  case ESCAPE_FONT:
                         /* FALLTHROUGH */  
                 case ESCAPE_FONTROMAN:                  case ESCAPE_FONTROMAN:
                         term_fontrepl(p, TERMFONT_NONE);                          term_fontrepl(p, TERMFONT_NONE);
                         continue;                          continue;
Line 488  term_word(struct termp *p, const char *word)
Line 480  term_word(struct termp *p, const char *word)
                         term_fontlast(p);                          term_fontlast(p);
                         continue;                          continue;
                 case ESCAPE_NOSPACE:                  case ESCAPE_NOSPACE:
                         if (TERMP_SKIPCHAR & p->flags)                          if (p->flags & TERMP_BACKAFTER)
                                 p->flags &= ~TERMP_SKIPCHAR;                                  p->flags &= ~TERMP_BACKAFTER;
                         else if ('\0' == *word)                          else if (*word == '\0')
                                 p->flags |= (TERMP_NOSPACE | TERMP_NONEWLINE);                                  p->flags |= (TERMP_NOSPACE | TERMP_NONEWLINE);
                         continue;                          continue;
                 case ESCAPE_SKIPCHAR:                  case ESCAPE_SKIPCHAR:
                         p->flags |= TERMP_SKIPCHAR;                          p->flags |= TERMP_BACKAFTER;
                         continue;                          continue;
                   case ESCAPE_OVERSTRIKE:
                           cp = seq + sz;
                           while (seq < cp) {
                                   if (*seq == '\\') {
                                           mandoc_escape(&seq, NULL, NULL);
                                           continue;
                                   }
                                   encode1(p, *seq++);
                                   if (seq < cp) {
                                           if (p->flags & TERMP_BACKBEFORE)
                                                   p->flags |= TERMP_BACKAFTER;
                                           else
                                                   p->flags |= TERMP_BACKBEFORE;
                                   }
                           }
                           /* Trim trailing backspace/blank pair. */
                           if (p->col > 2 &&
                               (p->buf[p->col - 1] == ' ' ||
                                p->buf[p->col - 1] == '\t'))
                                   p->col -= 2;
                           continue;
                 default:                  default:
                         continue;                          continue;
                 }                  }
Line 550  encode1(struct termp *p, int c)
Line 563  encode1(struct termp *p, int c)
 {  {
         enum termfont     f;          enum termfont     f;
   
         if (TERMP_SKIPCHAR & p->flags) {          if (p->col + 7 >= p->maxcols)
                 p->flags &= ~TERMP_SKIPCHAR;                  adjbuf(p, p->col + 7);
                 return;  
         }  
   
         if (p->col + 6 >= p->maxcols)          f = (c == ASCII_HYPH || c > 127 || isgraph(c)) ?
                 adjbuf(p, p->col + 6);              p->fontq[p->fonti] : TERMFONT_NONE;
   
         f = *term_fontq(p);          if (p->flags & TERMP_BACKBEFORE) {
                   if (p->buf[p->col - 1] == ' ' || p->buf[p->col - 1] == '\t')
                           p->col--;
                   else
                           p->buf[p->col++] = 8;
                   p->flags &= ~TERMP_BACKBEFORE;
           }
         if (TERMFONT_UNDER == f || TERMFONT_BI == f) {          if (TERMFONT_UNDER == f || TERMFONT_BI == f) {
                 p->buf[p->col++] = '_';                  p->buf[p->col++] = '_';
                 p->buf[p->col++] = 8;                  p->buf[p->col++] = 8;
Line 572  encode1(struct termp *p, int c)
Line 588  encode1(struct termp *p, int c)
                 p->buf[p->col++] = 8;                  p->buf[p->col++] = 8;
         }          }
         p->buf[p->col++] = c;          p->buf[p->col++] = c;
           if (p->flags & TERMP_BACKAFTER) {
                   p->flags |= TERMP_BACKBEFORE;
                   p->flags &= ~TERMP_BACKAFTER;
           }
 }  }
   
 static void  static void
Line 579  encode(struct termp *p, const char *word, size_t sz)
Line 599  encode(struct termp *p, const char *word, size_t sz)
 {  {
         size_t            i;          size_t            i;
   
         if (TERMP_SKIPCHAR & p->flags) {          if (p->col + 2 + (sz * 5) >= p->maxcols)
                 p->flags &= ~TERMP_SKIPCHAR;                  adjbuf(p, p->col + 2 + (sz * 5));
                 return;  
         }  
   
         /*  
          * Encode and buffer a string of characters.  If the current  
          * font mode is unset, buffer directly, else encode then buffer  
          * character by character.  
          */  
   
         if (*term_fontq(p) == TERMFONT_NONE) {  
                 if (p->col + sz >= p->maxcols)  
                         adjbuf(p, p->col + sz);  
                 for (i = 0; i < sz; i++)  
                         p->buf[p->col++] = word[i];  
                 return;  
         }  
   
         /* Pre-buffer, assuming worst-case. */  
   
         if (p->col + 1 + (sz * 5) >= p->maxcols)  
                 adjbuf(p, p->col + 1 + (sz * 5));  
   
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++) {
                 if (ASCII_HYPH == word[i] ||                  if (ASCII_HYPH == word[i] ||
                     isgraph((unsigned char)word[i]))                      isgraph((unsigned char)word[i]))
Line 616  void
Line 615  void
 term_setwidth(struct termp *p, const char *wstr)  term_setwidth(struct termp *p, const char *wstr)
 {  {
         struct roffsu    su;          struct roffsu    su;
         size_t           width;          int              iop, width;
         int              iop;  
   
         iop = 0;          iop = 0;
         width = 0;          width = 0;
Line 646  size_t
Line 644  size_t
 term_len(const struct termp *p, size_t sz)  term_len(const struct termp *p, size_t sz)
 {  {
   
         return((*p->width)(p, ' ') * sz);          return (*p->width)(p, ' ') * sz;
 }  }
   
 static size_t  static size_t
Line 655  cond_width(const struct termp *p, int c, int *skip)
Line 653  cond_width(const struct termp *p, int c, int *skip)
   
         if (*skip) {          if (*skip) {
                 (*skip) = 0;                  (*skip) = 0;
                 return(0);                  return 0;
         } else          } else
                 return((*p->width)(p, c));                  return (*p->width)(p, c);
 }  }
   
 size_t  size_t
Line 703  term_strlen(const struct termp *p, const char *cp)
Line 701  term_strlen(const struct termp *p, const char *cp)
                                 break;                                  break;
                         case ESCAPE_SPECIAL:                          case ESCAPE_SPECIAL:
                                 if (p->enc == TERMENC_ASCII) {                                  if (p->enc == TERMENC_ASCII) {
                                         rhs = mchars_spec2str(p->symtab,                                          rhs = mchars_spec2str(seq, ssz, &rsz);
                                             seq, ssz, &rsz);  
                                         if (rhs != NULL)                                          if (rhs != NULL)
                                                 break;                                                  break;
                                 } else {                                  } else {
                                         uc = mchars_spec2cp(p->symtab,                                          uc = mchars_spec2cp(seq, ssz);
                                             seq, ssz);  
                                         if (uc > 0)                                          if (uc > 0)
                                                 sz += cond_width(p, uc, &skip);                                                  sz += cond_width(p, uc, &skip);
                                 }                                  }
Line 717  term_strlen(const struct termp *p, const char *cp)
Line 713  term_strlen(const struct termp *p, const char *cp)
                         case ESCAPE_SKIPCHAR:                          case ESCAPE_SKIPCHAR:
                                 skip = 1;                                  skip = 1;
                                 continue;                                  continue;
                           case ESCAPE_OVERSTRIKE:
                                   rsz = 0;
                                   rhs = seq + ssz;
                                   while (seq < rhs) {
                                           if (*seq == '\\') {
                                                   mandoc_escape(&seq, NULL, NULL);
                                                   continue;
                                           }
                                           i = (*p->width)(p, *seq++);
                                           if (rsz < i)
                                                   rsz = i;
                                   }
                                   sz += rsz;
                                   continue;
                         default:                          default:
                                 continue;                                  continue;
                         }                          }
Line 759  term_strlen(const struct termp *p, const char *cp)
Line 769  term_strlen(const struct termp *p, const char *cp)
                 case ASCII_HYPH:                  case ASCII_HYPH:
                         sz += cond_width(p, '-', &skip);                          sz += cond_width(p, '-', &skip);
                         cp++;                          cp++;
                         /* FALLTHROUGH */  
                 case ASCII_BREAK:  
                         break;                          break;
                 default:                  default:
                         break;                          break;
                 }                  }
         }          }
   
         return(sz);          return sz;
 }  }
   
 size_t  int
 term_vspan(const struct termp *p, const struct roffsu *su)  term_vspan(const struct termp *p, const struct roffsu *su)
 {  {
         double           r;          double           r;
           int              ri;
   
         switch (su->unit) {          switch (su->unit) {
         case SCALE_BU:          case SCALE_BU:
Line 798  term_vspan(const struct termp *p, const struct roffsu 
Line 807  term_vspan(const struct termp *p, const struct roffsu 
                 r = su->scale / 12.0;                  r = su->scale / 12.0;
                 break;                  break;
         case SCALE_EN:          case SCALE_EN:
                 /* FALLTHROUGH */  
         case SCALE_EM:          case SCALE_EM:
                 r = su->scale * 0.6;                  r = su->scale * 0.6;
                 break;                  break;
Line 807  term_vspan(const struct termp *p, const struct roffsu 
Line 815  term_vspan(const struct termp *p, const struct roffsu 
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
           ri = r > 0.0 ? r + 0.4995 : r - 0.4995;
         if (r < 0.0)          return ri < 66 ? ri : 1;
                 r = 0.0;  
         return((size_t)(r + 0.4995));  
 }  }
   
 size_t  /*
    * Convert a scaling width to basic units, rounding down.
    */
   int
 term_hspan(const struct termp *p, const struct roffsu *su)  term_hspan(const struct termp *p, const struct roffsu *su)
 {  {
         double           v;  
   
         v = (*p->hspan)(p, su);          return (*p->hspan)(p, su);
         if (v < 0.0)  
                 v = 0.0;  
         return((size_t)(v + 0.0005));  
 }  }

Legend:
Removed from v.1.239  
changed lines
  Added in v.1.258

CVSweb