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

Diff for /mandoc/term.c between version 1.221 and 1.222

version 1.221, 2014/04/08 07:13:12 version 1.222, 2014/04/20 16:46:05
Line 39  static void   bufferc(struct termp *, char);
Line 39  static void   bufferc(struct termp *, char);
 static  void             encode(struct termp *, const char *, size_t);  static  void             encode(struct termp *, const char *, size_t);
 static  void             encode1(struct termp *, int);  static  void             encode1(struct termp *, int);
   
   
 void  void
 term_free(struct termp *p)  term_free(struct termp *p)
 {  {
Line 51  term_free(struct termp *p)
Line 52  term_free(struct termp *p)
         free(p);          free(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 void *arg)
 {  {
   
Line 63  term_begin(struct termp *p, term_margin head, 
Line 63  term_begin(struct termp *p, term_margin head, 
         (*p->begin)(p);          (*p->begin)(p);
 }  }
   
   
 void  void
 term_end(struct termp *p)  term_end(struct termp *p)
 {  {
Line 171  term_flushln(struct termp *p)
Line 170  term_flushln(struct termp *p)
   
                         /* Regular word. */                          /* Regular word. */
                         /* Break at the hyphen point if we overrun. */                          /* Break at the hyphen point if we overrun. */
                         if (vend > vis && vend < bp &&                          if (vend > vis && vend < bp &&
                             (ASCII_HYPH == p->buf[j] ||                              (ASCII_HYPH == p->buf[j] ||
                              ASCII_BREAK == p->buf[j]))                               ASCII_BREAK == p->buf[j]))
                                 jhy = j;                                  jhy = j;
Line 251  term_flushln(struct termp *p)
Line 250  term_flushln(struct termp *p)
                         (*p->letter)(p, p->buf[i]);                          (*p->letter)(p, p->buf[i]);
                         if (8 == p->buf[i])                          if (8 == p->buf[i])
                                 p->viscol -= (*p->width)(p, p->buf[i-1]);                                  p->viscol -= (*p->width)(p, p->buf[i-1]);
                         else                          else
                                 p->viscol += (*p->width)(p, p->buf[i]);                                  p->viscol += (*p->width)(p, p->buf[i]);
                 }                  }
                 vis = vend;                  vis = vend;
Line 275  term_flushln(struct termp *p)
Line 274  term_flushln(struct termp *p)
   
         if (TERMP_HANG & p->flags) {          if (TERMP_HANG & p->flags) {
                 p->overstep = (int)(vis - maxvis +                  p->overstep = (int)(vis - maxvis +
                                 p->trailspace * (*p->width)(p, ' '));                      p->trailspace * (*p->width)(p, ' '));
   
                 /*                  /*
                  * If we have overstepped the margin, temporarily move                   * If we have overstepped the margin, temporarily move
Line 298  term_flushln(struct termp *p)
Line 297  term_flushln(struct termp *p)
         }          }
 }  }
   
   /*
 /*  
  * A newline only breaks an existing line; it won't assert vertical   * A newline only breaks an existing line; it won't assert vertical
  * space.  All data in the output buffer is flushed prior to the newline   * space.  All data in the output buffer is flushed prior to the newline
  * assertion.   * assertion.
Line 313  term_newln(struct termp *p)
Line 311  term_newln(struct termp *p)
                 term_flushln(p);                  term_flushln(p);
 }  }
   
   
 /*  /*
  * Asserts a vertical space (a full, empty line-break between lines).   * Asserts a vertical space (a full, empty line-break between lines).
  * Note that if used twice, this will cause two blank spaces and so on.   * Note that if used twice, this will cause two blank spaces and so on.
Line 342  term_fontlast(struct termp *p)
Line 339  term_fontlast(struct termp *p)
         p->fontq[p->fonti] = f;          p->fontq[p->fonti] = f;
 }  }
   
   
 void  void
 term_fontrepl(struct termp *p, enum termfont f)  term_fontrepl(struct termp *p, enum termfont f)
 {  {
Line 351  term_fontrepl(struct termp *p, enum termfont f)
Line 347  term_fontrepl(struct termp *p, enum termfont f)
         p->fontq[p->fonti] = f;          p->fontq[p->fonti] = f;
 }  }
   
   
 void  void
 term_fontpush(struct termp *p, enum termfont f)  term_fontpush(struct termp *p, enum termfont f)
 {  {
Line 361  term_fontpush(struct termp *p, enum termfont f)
Line 356  term_fontpush(struct termp *p, enum termfont f)
         p->fontq[++p->fonti] = f;          p->fontq[++p->fonti] = f;
 }  }
   
   
 const void *  const void *
 term_fontq(struct termp *p)  term_fontq(struct termp *p)
 {  {
Line 369  term_fontq(struct termp *p)
Line 363  term_fontq(struct termp *p)
         return(&p->fontq[p->fonti]);          return(&p->fontq[p->fonti]);
 }  }
   
   
 enum termfont  enum termfont
 term_fonttop(struct termp *p)  term_fonttop(struct termp *p)
 {  {
Line 377  term_fonttop(struct termp *p)
Line 370  term_fonttop(struct termp *p)
         return(p->fontq[p->fonti]);          return(p->fontq[p->fonti]);
 }  }
   
   
 void  void
 term_fontpopq(struct termp *p, const void *key)  term_fontpopq(struct termp *p, const void *key)
 {  {
Line 387  term_fontpopq(struct termp *p, const void *key)
Line 379  term_fontpopq(struct termp *p, const void *key)
         assert(p->fonti >= 0);          assert(p->fonti >= 0);
 }  }
   
   
 void  void
 term_fontpop(struct termp *p)  term_fontpop(struct termp *p)
 {  {
Line 457  term_word(struct termp *p, const char *word)
Line 448  term_word(struct termp *p, const char *word)
   
                 if (TERMENC_ASCII != p->enc)                  if (TERMENC_ASCII != p->enc)
                         switch (esc) {                          switch (esc) {
                         case (ESCAPE_UNICODE):                          case ESCAPE_UNICODE:
                                 uc = mchars_num2uc(seq + 1, sz - 1);                                  uc = mchars_num2uc(seq + 1, sz - 1);
                                 if ('\0' == uc)                                  if ('\0' == uc)
                                         break;                                          break;
                                 encode1(p, uc);                                  encode1(p, uc);
                                 continue;                                  continue;
                         case (ESCAPE_SPECIAL):                          case ESCAPE_SPECIAL:
                                 uc = mchars_spec2cp(p->symtab, seq, sz);                                  uc = mchars_spec2cp(p->symtab, seq, sz);
                                 if (uc <= 0)                                  if (uc <= 0)
                                         break;                                          break;
Line 474  term_word(struct termp *p, const char *word)
Line 465  term_word(struct termp *p, const char *word)
                         }                          }
   
                 switch (esc) {                  switch (esc) {
                 case (ESCAPE_UNICODE):                  case ESCAPE_UNICODE:
                         encode1(p, '?');                          encode1(p, '?');
                         break;                          break;
                 case (ESCAPE_NUMBERED):                  case ESCAPE_NUMBERED:
                         c = mchars_num2char(seq, sz);                          c = mchars_num2char(seq, sz);
                         if ('\0' != c)                          if ('\0' != c)
                                 encode(p, &c, 1);                                  encode(p, &c, 1);
                         break;                          break;
                 case (ESCAPE_SPECIAL):                  case ESCAPE_SPECIAL:
                         cp = mchars_spec2str(p->symtab, seq, sz, &ssz);                          cp = mchars_spec2str(p->symtab, seq, sz, &ssz);
                         if (NULL != cp)                          if (NULL != cp)
                                 encode(p, cp, ssz);                                  encode(p, cp, ssz);
                         else if (1 == ssz)                          else if (1 == ssz)
                                 encode(p, seq, sz);                                  encode(p, seq, sz);
                         break;                          break;
                 case (ESCAPE_FONTBOLD):                  case ESCAPE_FONTBOLD:
                         term_fontrepl(p, TERMFONT_BOLD);                          term_fontrepl(p, TERMFONT_BOLD);
                         break;                          break;
                 case (ESCAPE_FONTITALIC):                  case ESCAPE_FONTITALIC:
                         term_fontrepl(p, TERMFONT_UNDER);                          term_fontrepl(p, TERMFONT_UNDER);
                         break;                          break;
                 case (ESCAPE_FONTBI):                  case ESCAPE_FONTBI:
                         term_fontrepl(p, TERMFONT_BI);                          term_fontrepl(p, TERMFONT_BI);
                         break;                          break;
                 case (ESCAPE_FONT):                  case ESCAPE_FONT:
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ESCAPE_FONTROMAN):                  case ESCAPE_FONTROMAN:
                         term_fontrepl(p, TERMFONT_NONE);                          term_fontrepl(p, TERMFONT_NONE);
                         break;                          break;
                 case (ESCAPE_FONTPREV):                  case ESCAPE_FONTPREV:
                         term_fontlast(p);                          term_fontlast(p);
                         break;                          break;
                 case (ESCAPE_NOSPACE):                  case ESCAPE_NOSPACE:
                         if (TERMP_SKIPCHAR & p->flags)                          if (TERMP_SKIPCHAR & p->flags)
                                 p->flags &= ~TERMP_SKIPCHAR;                                  p->flags &= ~TERMP_SKIPCHAR;
                         else if ('\0' == *word)                          else if ('\0' == *word)
                                 p->flags |= TERMP_NOSPACE;                                  p->flags |= TERMP_NOSPACE;
                         break;                          break;
                 case (ESCAPE_SKIPCHAR):                  case ESCAPE_SKIPCHAR:
                         p->flags |= TERMP_SKIPCHAR;                          p->flags |= TERMP_SKIPCHAR;
                         break;                          break;
                 default:                  default:
Line 595  encode(struct termp *p, const char *word, size_t sz)
Line 586  encode(struct termp *p, const char *word, size_t sz)
          */           */
   
         if (TERMFONT_NONE == term_fonttop(p)) {          if (TERMFONT_NONE == term_fonttop(p)) {
                 if (p->col + sz >= p->maxcols)                  if (p->col + sz >= p->maxcols)
                         adjbuf(p, p->col + sz);                          adjbuf(p, p->col + sz);
                 for (i = 0; i < sz; i++)                  for (i = 0; i < sz; i++)
                         p->buf[p->col++] = word[i];                          p->buf[p->col++] = word[i];
Line 627  term_setwidth(struct termp *p, const char *wstr)
Line 618  term_setwidth(struct termp *p, const char *wstr)
         width = 0;          width = 0;
         if (NULL != wstr) {          if (NULL != wstr) {
                 switch (*wstr) {                  switch (*wstr) {
                 case ('+'):                  case '+':
                         iop = 1;                          iop = 1;
                         wstr++;                          wstr++;
                         break;                          break;
                 case ('-'):                  case '-':
                         iop = -1;                          iop = -1;
                         wstr++;                          wstr++;
                         break;                          break;
Line 688  term_strlen(const struct termp *p, const char *cp)
Line 679  term_strlen(const struct termp *p, const char *cp)
                         sz += cond_width(p, *cp++, &skip);                          sz += cond_width(p, *cp++, &skip);
   
                 switch (*cp) {                  switch (*cp) {
                 case ('\\'):                  case '\\':
                         cp++;                          cp++;
                         esc = mandoc_escape(&cp, &seq, &ssz);                          esc = mandoc_escape(&cp, &seq, &ssz);
                         if (ESCAPE_ERROR == esc)                          if (ESCAPE_ERROR == esc)
Line 696  term_strlen(const struct termp *p, const char *cp)
Line 687  term_strlen(const struct termp *p, const char *cp)
   
                         if (TERMENC_ASCII != p->enc)                          if (TERMENC_ASCII != p->enc)
                                 switch (esc) {                                  switch (esc) {
                                 case (ESCAPE_UNICODE):                                  case ESCAPE_UNICODE:
                                         c = mchars_num2uc                                          c = mchars_num2uc(seq + 1,
                                                 (seq + 1, ssz - 1);                                              ssz - 1);
                                         if ('\0' == c)                                          if ('\0' == c)
                                                 break;                                                  break;
                                         sz += cond_width(p, c, &skip);                                          sz += cond_width(p, c, &skip);
                                         continue;                                          continue;
                                 case (ESCAPE_SPECIAL):                                  case ESCAPE_SPECIAL:
                                         c = mchars_spec2cp                                          c = mchars_spec2cp(p->symtab,
                                                 (p->symtab, seq, ssz);                                              seq, ssz);
                                         if (c <= 0)                                          if (c <= 0)
                                                 break;                                                  break;
                                         sz += cond_width(p, c, &skip);                                          sz += cond_width(p, c, &skip);
Line 717  term_strlen(const struct termp *p, const char *cp)
Line 708  term_strlen(const struct termp *p, const char *cp)
                         rhs = NULL;                          rhs = NULL;
   
                         switch (esc) {                          switch (esc) {
                         case (ESCAPE_UNICODE):                          case ESCAPE_UNICODE:
                                 sz += cond_width(p, '?', &skip);                                  sz += cond_width(p, '?', &skip);
                                 break;                                  break;
                         case (ESCAPE_NUMBERED):                          case ESCAPE_NUMBERED:
                                 c = mchars_num2char(seq, ssz);                                  c = mchars_num2char(seq, ssz);
                                 if ('\0' != c)                                  if ('\0' != c)
                                         sz += cond_width(p, c, &skip);                                          sz += cond_width(p, c, &skip);
                                 break;                                  break;
                         case (ESCAPE_SPECIAL):                          case ESCAPE_SPECIAL:
                                 rhs = mchars_spec2str                                  rhs = mchars_spec2str(p->symtab,
                                         (p->symtab, seq, ssz, &rsz);                                      seq, ssz, &rsz);
   
                                 if (ssz != 1 || rhs)                                  if (ssz != 1 || rhs)
                                         break;                                          break;
Line 735  term_strlen(const struct termp *p, const char *cp)
Line 726  term_strlen(const struct termp *p, const char *cp)
                                 rhs = seq;                                  rhs = seq;
                                 rsz = ssz;                                  rsz = ssz;
                                 break;                                  break;
                         case (ESCAPE_SKIPCHAR):                          case ESCAPE_SKIPCHAR:
                                 skip = 1;                                  skip = 1;
                                 break;                                  break;
                         default:                          default:
Line 753  term_strlen(const struct termp *p, const char *cp)
Line 744  term_strlen(const struct termp *p, const char *cp)
                         for (i = 0; i < rsz; i++)                          for (i = 0; i < rsz; i++)
                                 sz += (*p->width)(p, *rhs++);                                  sz += (*p->width)(p, *rhs++);
                         break;                          break;
                 case (ASCII_NBRSP):                  case ASCII_NBRSP:
                         sz += cond_width(p, ' ', &skip);                          sz += cond_width(p, ' ', &skip);
                         cp++;                          cp++;
                         break;                          break;
                 case (ASCII_HYPH):                  case ASCII_HYPH:
                         sz += cond_width(p, '-', &skip);                          sz += cond_width(p, '-', &skip);
                         cp++;                          cp++;
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ASCII_BREAK):                  case ASCII_BREAK:
                         break;                          break;
                 default:                  default:
                         break;                          break;
Line 771  term_strlen(const struct termp *p, const char *cp)
Line 762  term_strlen(const struct termp *p, const char *cp)
         return(sz);          return(sz);
 }  }
   
 /* ARGSUSED */  
 size_t  size_t
 term_vspan(const struct termp *p, const struct roffsu *su)  term_vspan(const struct termp *p, const struct roffsu *su)
 {  {
         double           r;          double           r;
   
         switch (su->unit) {          switch (su->unit) {
         case (SCALE_CM):          case SCALE_CM:
                 r = su->scale * 2;                  r = su->scale * 2;
                 break;                  break;
         case (SCALE_IN):          case SCALE_IN:
                 r = su->scale * 6;                  r = su->scale * 6;
                 break;                  break;
         case (SCALE_PC):          case SCALE_PC:
                 r = su->scale;                  r = su->scale;
                 break;                  break;
         case (SCALE_PT):          case SCALE_PT:
                 r = su->scale / 8;                  r = su->scale / 8;
                 break;                  break;
         case (SCALE_MM):          case SCALE_MM:
                 r = su->scale / 1000;                  r = su->scale / 1000;
                 break;                  break;
         case (SCALE_VS):          case SCALE_VS:
                 r = su->scale;                  r = su->scale;
                 break;                  break;
         default:          default:
Line 803  term_vspan(const struct termp *p, const struct roffsu 
Line 793  term_vspan(const struct termp *p, const struct roffsu 
   
         if (r < 0.0)          if (r < 0.0)
                 r = 0.0;                  r = 0.0;
         return(/* LINTED */(size_t)          return((size_t)r);
                         r);  
 }  }
   
 size_t  size_t
Line 815  term_hspan(const struct termp *p, const struct roffsu 
Line 804  term_hspan(const struct termp *p, const struct roffsu 
         v = ((*p->hspan)(p, su));          v = ((*p->hspan)(p, su));
         if (v < 0.0)          if (v < 0.0)
                 v = 0.0;                  v = 0.0;
         return((size_t) /* LINTED */          return((size_t)v);
                         v);  
 }  }

Legend:
Removed from v.1.221  
changed lines
  Added in v.1.222

CVSweb