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

Diff for /mandoc/term.c between version 1.123 and 1.126

version 1.123, 2009/11/06 10:31:32 version 1.126, 2009/11/12 05:58:30
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <stdio.h>  #include <stdio.h>
Line 28 
Line 30 
 #include "mdoc.h"  #include "mdoc.h"
 #include "main.h"  #include "main.h"
   
 /* FIXME: accomodate non-breaking, non-collapsing white-space. */  
 /* FIXME: accomodate non-breaking, collapsing white-space. */  
   
 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              spec(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              bufferc(struct termp *, char);
   static  void              adjbuf(struct termp *p, size_t);
   static  void              encode(struct termp *, const char *, size_t);
   
 static  void              do_escaped(struct termp *, const char **);  
 static  void              do_special(struct termp *,  
                                 const char *, size_t);  
 static  void              do_reserved(struct termp *,  
                                 const char *, size_t);  
 static  void              buffer(struct termp *, char);  
 static  void              encode(struct termp *, char);  
   
   
 void *  void *
 ascii_alloc(void)  ascii_alloc(void)
 {  {
Line 321  term_vspace(struct termp *p)
Line 318  term_vspace(struct termp *p)
   
   
 static void  static void
 do_special(struct termp *p, const char *word, size_t len)  spec(struct termp *p, const char *word, size_t len)
 {  {
         const char      *rhs;          const char      *rhs;
         size_t           sz;          size_t           sz;
         int              i;  
   
         rhs = chars_a2ascii(p->symtab, word, len, &sz);          rhs = chars_a2ascii(p->symtab, word, len, &sz);
           if (rhs)
         if (NULL == rhs) {                  encode(p, rhs, sz);
 #if 0  
                 fputs("Unknown special character: ", stderr);  
                 for (i = 0; i < (int)len; i++)  
                         fputc(word[i], stderr);  
                 fputc('\n', stderr);  
 #endif  
                 return;  
         }  
         for (i = 0; i < (int)sz; i++)  
                 encode(p, rhs[i]);  
 }  }
   
   
 static void  static void
 do_reserved(struct termp *p, const char *word, size_t len)  res(struct termp *p, const char *word, size_t len)
 {  {
         const char      *rhs;          const char      *rhs;
         size_t           sz;          size_t           sz;
         int              i;  
   
         rhs = chars_a2res(p->symtab, word, len, &sz);          rhs = chars_a2res(p->symtab, word, len, &sz);
           if (rhs)
         if (NULL == rhs) {                  encode(p, rhs, sz);
 #if 0  
                 fputs("Unknown reserved word: ", stderr);  
                 for (i = 0; i < (int)len; i++)  
                         fputc(word[i], stderr);  
                 fputc('\n', stderr);  
 #endif  
                 return;  
         }  
         for (i = 0; i < (int)sz; i++)  
                 encode(p, rhs[i]);  
 }  }
   
   
 /*  void
  * Handle an escape sequence: determine its length and pass it to the  term_fontlast(struct termp *p)
  * escape-symbol look table.  Note that we assume mdoc(3) has validated  
  * the escape sequence (we assert upon badly-formed escape sequences).  
  */  
 static void  
 do_escaped(struct termp *p, const char **word)  
 {  {
         int              j, type, sv, t, lim;          enum termfont    f;
         const char      *wp;  
   
         wp = *word;          f = p->fontl;
         type = 1;          p->fontl = p->fontq[p->fonti];
           p->fontq[p->fonti] = f;
   }
   
         if ('\0' == *(++wp)) {  
                 *word = wp;  
                 return;  
         }  
   
         if ('(' == *wp) {  void
                 wp++;  term_fontrepl(struct termp *p, enum termfont f)
                 if ('\0' == *wp || '\0' == *(wp + 1)) {  {
                         *word = '\0' == *wp ? wp : wp + 1;  
                         return;  
                 }  
   
                 do_special(p, wp, 2);          p->fontl = p->fontq[p->fonti];
                 *word = ++wp;          p->fontq[p->fonti] = f;
                 return;  }
   
         } else if ('*' == *wp) {  
                 if ('\0' == *(++wp)) {  
                         *word = wp;  
                         return;  
                 }  
   
                 switch (*wp) {  void
                 case ('('):  term_fontpush(struct termp *p, enum termfont f)
                         wp++;  {
                         if ('\0' == *wp || '\0' == *(wp + 1)) {  
                                 *word = '\0' == *wp ? wp : wp + 1;  
                                 return;  
                         }  
   
                         do_reserved(p, wp, 2);          assert(p->fonti + 1 < 10);
                         *word = ++wp;          p->fontl = p->fontq[p->fonti];
                         return;          p->fontq[++p->fonti] = f;
                 case ('['):  }
                         type = 0;  
                         break;  
                 default:  
                         do_reserved(p, wp, 1);  
                         *word = wp;  
                         return;  
                 }  
   
         } else if ('s' == *wp) {  
                 /* This closely follows mandoc_special(). */  
                 if ('\0' == *(++wp)) {  
                         *word = wp;  
                         return;  
                 }  
   
                 t = 0;  const void *
                 lim = 1;  term_fontq(struct termp *p)
   {
   
                 if (*wp == '\'') {          return(&p->fontq[p->fonti]);
                         lim = 0;  }
                         t = 1;  
                         ++wp;  
                 } else if (*wp == '[') {  
                         lim = 0;  
                         t = 2;  
                         ++wp;  
                 } else if (*wp == '(') {  
                         lim = 2;  
                         t = 3;  
                         ++wp;  
                 }  
   
                 if (*wp == '+' || *wp == '-')  
                         ++wp;  
   
                 if (*wp == '\'') {  enum termfont
                         if (t) {  term_fonttop(struct termp *p)
                                 *word = wp;  {
                                 return;  
                         }  
                         lim = 0;  
                         t = 1;  
                         ++wp;  
                 } else if (*wp == '[') {  
                         if (t) {  
                                 *word = wp;  
                                 return;  
                         }  
                         lim = 0;  
                         t = 2;  
                         ++wp;  
                 } else if (*wp == '(') {  
                         if (t) {  
                                 *word = wp;  
                                 return;  
                         }  
                         lim = 2;  
                         t = 3;  
                         ++wp;  
                 }  
   
                 if ( ! isdigit((u_char)*wp)) {          return(p->fontq[p->fonti]);
                         *word = --wp;  }
                         return;  
                 }  
   
                 for (j = 0; isdigit((u_char)*wp); j++) {  
                         if (lim && j >= lim)  
                                 break;  
                         ++wp;  
                 }  
   
                 if (t && t < 3) {  void
                         if (1 == t && *wp != '\'') {  term_fontpopq(struct termp *p, const void *key)
                                 *word = --wp;  {
                                 return;  
                         }  
                         if (2 == t && *wp != ']') {  
                                 *word = --wp;  
                                 return;  
                         }  
                         ++wp;  
                 }  
                 *word = --wp;  
                 return;  
   
         } else if ('f' == *wp) {          while (p->fonti >= 0 && key != &p->fontq[p->fonti])
                 if ('\0' == *(++wp)) {                  p->fonti--;
                         *word = wp;          assert(p->fonti >= 0);
                         return;  }
                 }  
   
                 switch (*wp) {  
                 case ('3'):  
                         /* FALLTHROUGH */  
                 case ('B'):  
                         p->metamask = p->metafont;  
                         p->metafont |= METAF_BOLD;  
                         break;  
                 case ('2'):  
                         /* FALLTHROUGH */  
                 case ('I'):  
                         p->metamask = p->metafont;  
                         p->metafont |= METAF_UNDER;  
                         break;  
                 case ('P'):  
                         sv = p->metamask;  
                         p->metamask = p->metafont;  
                         p->metafont = sv;  
                         break;  
                 case ('1'):  
                         /* FALLTHROUGH */  
                 case ('R'):  
                         p->metamask = p->metafont;  
                         p->metafont &= ~METAF_UNDER;  
                         p->metafont &= ~METAF_BOLD;  
                         break;  
                 default:  
                         break;  
                 }  
   
                 *word = wp;  void
                 return;  term_fontpop(struct termp *p)
   {
   
         } else if ('[' != *wp) {          assert(p->fonti);
                 do_special(p, wp, 1);          p->fonti--;
                 *word = wp;  
                 return;  
         }  
   
         wp++;  
         for (j = 0; *wp && ']' != *wp; wp++, j++)  
                 /* Loop... */ ;  
   
         if ('\0' == *wp) {  
                 *word = wp;  
                 return;  
         }  
   
         if (type)  
                 do_special(p, wp - j, (size_t)j);  
         else  
                 do_reserved(p, wp - j, (size_t)j);  
         *word = wp;  
 }  }
   
   
Line 569  do_escaped(struct termp *p, const char **word)
Line 414  do_escaped(struct termp *p, const char **word)
 void  void
 term_word(struct termp *p, const char *word)  term_word(struct termp *p, const char *word)
 {  {
         const char       *sv;          const char      *sv, *seq;
           int              sz;
           size_t           ssz;
           enum roffdeco    deco;
   
         sv = word;          sv = word;
   
Line 600  term_word(struct termp *p, const char *word)
Line 448  term_word(struct termp *p, const char *word)
                 }                  }
   
         if ( ! (TERMP_NOSPACE & p->flags))          if ( ! (TERMP_NOSPACE & p->flags))
                 buffer(p, ' ');                  bufferc(p, ' ');
   
         if ( ! (p->flags & TERMP_NONOSPACE))          if ( ! (p->flags & TERMP_NONOSPACE))
                 p->flags &= ~TERMP_NOSPACE;                  p->flags &= ~TERMP_NOSPACE;
   
         for ( ; *word; word++)          /* FIXME: use strcspn. */
                 if ('\\' != *word)  
                         encode(p, *word);  
                 else  
                         do_escaped(p, &word);  
   
           while (*word) {
                   if ('\\' != *word) {
                           encode(p, word, 1);
                           word++;
                           continue;
                   }
   
                   seq = ++word;
                   sz = a2roffdeco(&deco, &seq, &ssz);
   
                   switch (deco) {
                   case (DECO_RESERVED):
                           res(p, seq, ssz);
                           break;
                   case (DECO_SPECIAL):
                           spec(p, seq, ssz);
                           break;
                   case (DECO_BOLD):
                           term_fontrepl(p, TERMFONT_BOLD);
                           break;
                   case (DECO_ITALIC):
                           term_fontrepl(p, TERMFONT_UNDER);
                           break;
                   case (DECO_ROMAN):
                           term_fontrepl(p, TERMFONT_NONE);
                           break;
                   case (DECO_PREVIOUS):
                           term_fontlast(p);
                           break;
                   default:
                           break;
                   }
                   word += sz;
           }
   
         if (sv[0] && 0 == sv[1])          if (sv[0] && 0 == sv[1])
                 switch (sv[0]) {                  switch (sv[0]) {
                 case('('):                  case('('):
Line 626  term_word(struct termp *p, const char *word)
Line 505  term_word(struct termp *p, const char *word)
 }  }
   
   
 /*  
  * Insert a single character into the line-buffer.  If the buffer's  
  * space is exceeded, then allocate more space by doubling the buffer  
  * size.  
  */  
 static void  static void
 buffer(struct termp *p, char c)  adjbuf(struct termp *p, size_t sz)
 {  {
         size_t           s;  
   
         if (p->col + 1 >= p->maxcols) {          if (0 == p->maxcols)
                 if (0 == p->maxcols)                  p->maxcols = 1024;
                         p->maxcols = 256;          while (sz >= p->maxcols)
                 s = p->maxcols * 2;                  p->maxcols <<= 2;
                 p->buf = realloc(p->buf, s);  
                 if (NULL == p->buf) {          p->buf = realloc(p->buf, p->maxcols);
                         perror(NULL);          if (NULL == p->buf) {
                         exit(EXIT_FAILURE);                  perror(NULL);
                 }                  exit(EXIT_FAILURE);
                 p->maxcols = s;  
         }          }
         p->buf[(int)(p->col)++] = c;  
 }  }
   
   
 static void  static void
 encode(struct termp *p, char c)  buffera(struct termp *p, const char *word, size_t sz)
 {  {
   
         if (isgraph((u_char)c)) {          if (p->col + sz >= p->maxcols)
                 if (p->under || METAF_UNDER & p->metafont) {                  adjbuf(p, p->col + sz);
                         buffer(p, '_');  
                         buffer(p, 8);          memcpy(&p->buf[(int)p->col], word, sz);
           p->col += sz;
   }
   
   
   static void
   bufferc(struct termp *p, char c)
   {
   
           if (p->col + 1 >= p->maxcols)
                   adjbuf(p, p->col + 1);
   
           p->buf[(int)p->col++] = c;
   }
   
   
   static void
   encode(struct termp *p, const char *word, size_t sz)
   {
           enum termfont     f;
           int               i;
   
           /*
            * Encode and buffer a string of characters.  If the current
            * font mode is unset, buffer directly, else encode then buffer
            * character by character.
            */
   
           if (TERMFONT_NONE == (f = term_fonttop(p))) {
                   buffera(p, word, sz);
                   return;
           }
   
           for (i = 0; i < (int)sz; i++) {
                   if ( ! isgraph((u_char)word[i])) {
                           bufferc(p, word[i]);
                           continue;
                 }                  }
                 if (p->bold || METAF_BOLD & p->metafont) {  
                         buffer(p, c);                  if (TERMFONT_UNDER == f)
                         buffer(p, 8);                          bufferc(p, '_');
                 }                  else
                           bufferc(p, word[i]);
   
                   bufferc(p, 8);
                   bufferc(p, word[i]);
         }          }
         buffer(p, c);  
 }  }
   
   

Legend:
Removed from v.1.123  
changed lines
  Added in v.1.126

CVSweb