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

Diff for /mandoc/term.c between version 1.83 and 1.88

version 1.83, 2009/06/22 13:13:10 version 1.88, 2009/07/16 12:34:06
Line 31  extern int    mdoc_run(struct termp *, 
Line 31  extern int    mdoc_run(struct termp *, 
   
 static  struct termp     *term_alloc(enum termenc);  static  struct termp     *term_alloc(enum termenc);
 static  void              term_free(struct termp *);  static  void              term_free(struct termp *);
 static  void              term_pword(struct termp *, const char *, int);  static  void              term_pescape(struct termp *, const char **);
 static  void              term_pescape(struct termp *,  
                                 const char *, int *, int);  
 static  void              term_nescape(struct termp *,  static  void              term_nescape(struct termp *,
                                 const char *, size_t);                                  const char *, size_t);
 static  void              term_chara(struct termp *, char);  static  void              term_chara(struct termp *, char);
 static  void              term_encodea(struct termp *, char);  static  void              term_encodea(struct termp *, char);
 static  int               term_isopendelim(const char *, int);  static  int               term_isopendelim(const char *);
 static  int               term_isclosedelim(const char *, int);  static  int               term_isclosedelim(const char *);
   
   
 void *  void *
Line 112  term_alloc(enum termenc enc)
Line 110  term_alloc(enum termenc enc)
   
   
 static int  static int
 term_isclosedelim(const char *p, int len)  term_isclosedelim(const char *p)
 {  {
   
         if (1 != len)          if ( ! (*p && 0 == *(p + 1)))
                 return(0);                  return(0);
   
         switch (*p) {          switch (*p) {
Line 146  term_isclosedelim(const char *p, int len)
Line 144  term_isclosedelim(const char *p, int len)
   
   
 static int  static int
 term_isopendelim(const char *p, int len)  term_isopendelim(const char *p)
 {  {
   
         if (1 != len)          if ( ! (*p && 0 == *(p + 1)))
                 return(0);                  return(0);
   
         switch (*p) {          switch (*p) {
Line 176  term_isopendelim(const char *p, int len)
Line 174  term_isopendelim(const char *p, int len)
  * Specifically, a line is whatever's in p->buf of length p->col, which   * Specifically, a line is whatever's in p->buf of length p->col, which
  * is zeroed after this function returns.   * is zeroed after this function returns.
  *   *
  * The variables TERMP_NOLPAD, TERMP_LITERAL and TERMP_NOBREAK are of   * The usage of termp:flags is as follows:
  * critical importance here.  Their behaviour follows:  
  *   *
  *  - TERMP_NOLPAD: when beginning to write the line, don't left-pad the   *  - TERMP_NOLPAD: when beginning to write the line, don't left-pad the
  *    offset value.  This is useful when doing columnar lists where the   *    offset value.  This is useful when doing columnar lists where the
Line 187  term_isopendelim(const char *p, int len)
Line 184  term_isopendelim(const char *p, int len)
  *    columns.  In short: don't print a newline and instead pad to the   *    columns.  In short: don't print a newline and instead pad to the
  *    right margin.  Used in conjunction with TERMP_NOLPAD.   *    right margin.  Used in conjunction with TERMP_NOLPAD.
  *   *
  *  - TERMP_NONOBREAK: don't newline when TERMP_NOBREAK is specified.   *  - TERMP_DANGLE: don't newline when TERMP_NOBREAK is specified and
    *    the line is overrun, and don't pad-right if it's underrun.
  *   *
    *  - TERMP_HANG: like TERMP_DANGLE, but doesn't newline when
    *    overruning, instead save the position and continue at that point
    *    when the next invocation.
    *
  *  In-line line breaking:   *  In-line line breaking:
  *   *
  *  If TERMP_NOBREAK is specified and the line overruns the right   *  If TERMP_NOBREAK is specified and the line overruns the right
Line 209  term_flushln(struct termp *p)
Line 211  term_flushln(struct termp *p)
 {  {
         int              i, j;          int              i, j;
         size_t           vbl, vsz, vis, maxvis, mmax, bp;          size_t           vbl, vsz, vis, maxvis, mmax, bp;
           static int       sv = -1;
   
         /*          /*
          * First, establish the maximum columns of "visible" content.           * First, establish the maximum columns of "visible" content.
Line 223  term_flushln(struct termp *p)
Line 226  term_flushln(struct termp *p)
         bp = TERMP_NOBREAK & p->flags ? mmax : maxvis;          bp = TERMP_NOBREAK & p->flags ? mmax : maxvis;
         vis = 0;          vis = 0;
   
           if (sv >= 0) {
                   vis = (size_t)sv;
                   sv = -1;
           }
   
         /*          /*
          * If in the standard case (left-justified), then begin with our           * If in the standard case (left-justified), then begin with our
          * indentation, otherwise (columns, etc.) just start spitting           * indentation, otherwise (columns, etc.) just start spitting
Line 298  term_flushln(struct termp *p)
Line 306  term_flushln(struct termp *p)
          */           */
   
         if ((TERMP_NOBREAK & p->flags) && vis >= maxvis) {          if ((TERMP_NOBREAK & p->flags) && vis >= maxvis) {
                 if ( ! (TERMP_NONOBREAK & p->flags)) {                  if ( ! (TERMP_DANGLE & p->flags) &&
                                   ! (TERMP_HANG & p->flags)) {
                         putchar('\n');                          putchar('\n');
                         for (i = 0; i < (int)p->rmargin; i++)                          for (i = 0; i < (int)p->rmargin; i++)
                                 putchar(' ');                                  putchar(' ');
                 }                  }
                   if (TERMP_HANG & p->flags)
                           sv = (int)(vis - maxvis);
                 p->col = 0;                  p->col = 0;
                 return;                  return;
         }          }
Line 313  term_flushln(struct termp *p)
Line 324  term_flushln(struct termp *p)
          */           */
   
         if (p->flags & TERMP_NOBREAK) {          if (p->flags & TERMP_NOBREAK) {
                 if ( ! (TERMP_NONOBREAK & p->flags))                  if ( ! (TERMP_DANGLE & p->flags))
                         for ( ; vis < maxvis; vis++)                          for ( ; vis < maxvis; vis++)
                                 putchar(' ');                                  putchar(' ');
         } else          } else
Line 358  term_vspace(struct termp *p)
Line 369  term_vspace(struct termp *p)
   
   
 /*  /*
  * Break apart a word into "pwords" (partial-words, usually from  
  * breaking up a phrase into individual words) and, eventually, put them  
  * into the output buffer.  If we're a literal word, then don't break up  
  * the word and put it verbatim into the output buffer.  
  */  
 void  
 term_word(struct termp *p, const char *word)  
 {  
         int              i, j, len;  
   
         len = (int)strlen(word);  
   
         if (p->flags & TERMP_LITERAL) {  
                 term_pword(p, word, len);  
                 return;  
         }  
   
         /* LINTED */  
         for (j = i = 0; i < len; i++) {  
                 if (' ' != word[i]) {  
                         j++;  
                         continue;  
                 }  
   
                 /* Escaped spaces don't delimit... */  
                 if (i && ' ' == word[i] && '\\' == word[i - 1]) {  
                         j++;  
                         continue;  
                 }  
   
                 if (0 == j)  
                         continue;  
                 assert(i >= j);  
                 term_pword(p, &word[i - j], j);  
                 j = 0;  
         }  
         if (j > 0) {  
                 assert(i >= j);  
                 term_pword(p, &word[i - j], j);  
         }  
 }  
   
   
 /*  
  * Determine the symbol indicated by an escape sequences, that is, one   * Determine the symbol indicated by an escape sequences, that is, one
  * starting with a backslash.  Once done, we pass this value into the   * starting with a backslash.  Once done, we pass this value into the
  * output buffer by way of the symbol table.   * output buffer by way of the symbol table.
Line 414  term_nescape(struct termp *p, const char *word, size_t
Line 381  term_nescape(struct termp *p, const char *word, size_t
         int              i;          int              i;
   
         rhs = term_a2ascii(p->symtab, word, len, &sz);          rhs = term_a2ascii(p->symtab, word, len, &sz);
   
         if (rhs)          if (rhs)
                 for (i = 0; i < (int)sz; i++)                  for (i = 0; i < (int)sz; i++)
                         term_encodea(p, rhs[i]);                          term_encodea(p, rhs[i]);
Line 426  term_nescape(struct termp *p, const char *word, size_t
Line 394  term_nescape(struct termp *p, const char *word, size_t
  * the escape sequence (we assert upon badly-formed escape sequences).   * the escape sequence (we assert upon badly-formed escape sequences).
  */   */
 static void  static void
 term_pescape(struct termp *p, const char *word, int *i, int len)  term_pescape(struct termp *p, const char **word)
 {  {
         int              j;          int              j;
           const char      *wp;
   
         if (++(*i) >= len)          wp = *word;
   
           if (0 == *(++wp)) {
                   *word = wp;
                 return;                  return;
           }
   
         if ('(' == word[*i]) {          if ('(' == *wp) {
                 (*i)++;                  wp++;
                 if (*i + 1 >= len)                  if (0 == *wp || 0 == *(wp + 1)) {
                           *word = 0 == *wp ? wp : wp + 1;
                         return;                          return;
                   }
   
                 term_nescape(p, &word[*i], 2);                  term_nescape(p, wp, 2);
                 (*i)++;                  *word = ++wp;
                 return;                  return;
   
         } else if ('*' == word[*i]) {          } else if ('*' == *wp) {
                 (*i)++;                  if (0 == *(++wp)) {
                 if (*i >= len)                          *word = wp;
                         return;                          return;
                   }
   
                 switch (word[*i]) {                  switch (*wp) {
                 case ('('):                  case ('('):
                         (*i)++;                          wp++;
                         if (*i + 1 >= len)                          if (0 == *wp || 0 == *(wp + 1)) {
                                   *word = 0 == *wp ? wp : wp + 1;
                                 return;                                  return;
                           }
   
                         term_nescape(p, &word[*i], 2);                          term_nescape(p, wp, 2);
                         (*i)++;                          *word = ++wp;
                         return;                          return;
                 case ('['):                  case ('['):
                         break;                          break;
                 default:                  default:
                         term_nescape(p, &word[*i], 1);                          term_nescape(p, wp, 1);
                           *word = wp;
                         return;                          return;
                 }                  }
   
         } else if ('f' == word[*i]) {          } else if ('f' == *wp) {
                 (*i)++;                  if (0 == *(++wp)) {
                 if (*i >= len)                          *word = wp;
                         return;                          return;
                 switch (word[*i]) {                  }
   
                   switch (*wp) {
                 case ('B'):                  case ('B'):
                         p->flags |= TERMP_BOLD;                          p->flags |= TERMP_BOLD;
                         break;                          break;
Line 482  term_pescape(struct termp *p, const char *word, int *i
Line 463  term_pescape(struct termp *p, const char *word, int *i
                 default:                  default:
                         break;                          break;
                 }                  }
   
                   *word = wp;
                 return;                  return;
   
         } else if ('[' != word[*i]) {          } else if ('[' != *wp) {
                 term_nescape(p, &word[*i], 1);                  term_nescape(p, wp, 1);
                   *word = wp;
                 return;                  return;
         }          }
   
         (*i)++;          wp++;
         for (j = 0; word[*i] && ']' != word[*i]; (*i)++, j++)          for (j = 0; *wp && ']' != *wp; wp++, j++)
                 /* Loop... */ ;                  /* Loop... */ ;
   
         if (0 == word[*i])          if (0 == *wp) {
                   *word = wp;
                 return;                  return;
           }
   
         term_nescape(p, &word[*i - j], (size_t)j);          term_nescape(p, wp - j, (size_t)j);
           *word = wp;
 }  }
   
   
Line 505  term_pescape(struct termp *p, const char *word, int *i
Line 492  term_pescape(struct termp *p, const char *word, int *i
  * phrase that cannot be broken down (such as a literal string).  This   * phrase that cannot be broken down (such as a literal string).  This
  * handles word styling.   * handles word styling.
  */   */
 static void  void
 term_pword(struct termp *p, const char *word, int len)  term_word(struct termp *p, const char *word)
 {  {
         int              i;          const char       *sv;
   
         if (term_isclosedelim(word, len))          if (term_isclosedelim(word))
                 if ( ! (TERMP_IGNDELIM & p->flags))                  if ( ! (TERMP_IGNDELIM & p->flags))
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
   
Line 525  term_pword(struct termp *p, const char *word, int len)
Line 512  term_pword(struct termp *p, const char *word, int len)
          * before the word.           * before the word.
          */           */
   
         for (i = 0; i < len; i++)          for (sv = word; *word; word++)
                 if ('\\' == word[i])                  if ('\\' != *word)
                         term_pescape(p, word, &i, len);                          term_encodea(p, *word);
                 else                  else
                         term_encodea(p, word[i]);                          term_pescape(p, &word);
   
         if (term_isopendelim(word, len))          if (term_isopendelim(sv))
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
 }  }
   

Legend:
Removed from v.1.83  
changed lines
  Added in v.1.88

CVSweb