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

Diff for /mandoc/term_ps.c between version 1.66 and 1.71

version 1.66, 2014/08/28 01:37:12 version 1.71, 2014/12/19 17:12:04
Line 27 
Line 27 
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
 #include "mandoc.h"  
 #include "mandoc_aux.h"  #include "mandoc_aux.h"
 #include "out.h"  #include "out.h"
 #include "main.h"  
 #include "term.h"  #include "term.h"
   #include "main.h"
   
 /* These work the buffer used by the header and footer. */  /* These work the buffer used by the header and footer. */
 #define PS_BUFSLOP        128  #define PS_BUFSLOP        128
Line 59  struct termp_ps {
Line 58  struct termp_ps {
 #define PS_INLINE        (1 << 0)       /* we're in a word */  #define PS_INLINE        (1 << 0)       /* we're in a word */
 #define PS_MARGINS       (1 << 1)       /* we're in the margins */  #define PS_MARGINS       (1 << 1)       /* we're in the margins */
 #define PS_NEWPAGE       (1 << 2)       /* new page, no words yet */  #define PS_NEWPAGE       (1 << 2)       /* new page, no words yet */
   #define PS_BACKSP        (1 << 3)       /* last character was backspace */
         size_t            pscol;        /* visible column (AFM units) */          size_t            pscol;        /* visible column (AFM units) */
         size_t            psrow;        /* visible row (AFM units) */          size_t            psrow;        /* visible row (AFM units) */
         char             *psmarg;       /* margin buf */          char             *psmarg;       /* margin buf */
         size_t            psmargsz;     /* margin buf size */          size_t            psmargsz;     /* margin buf size */
         size_t            psmargcur;    /* cur index in margin buf */          size_t            psmargcur;    /* cur index in margin buf */
         char              last;         /* character buffer */          char              last;         /* last non-backspace seen */
         enum termfont     lastf;        /* last set font */          enum termfont     lastf;        /* last set font */
         enum termfont     nextf;        /* building next font here */          enum termfont     nextf;        /* building next font here */
         size_t            scale;        /* font scaling factor */          size_t            scale;        /* font scaling factor */
Line 105  static void    ps_printf(struct termp *, const char *,
Line 105  static void    ps_printf(struct termp *, const char *,
 static  void              ps_putchar(struct termp *, char);  static  void              ps_putchar(struct termp *, char);
 static  void              ps_setfont(struct termp *, enum termfont);  static  void              ps_setfont(struct termp *, enum termfont);
 static  void              ps_setwidth(struct termp *, int, size_t);  static  void              ps_setwidth(struct termp *, int, size_t);
 static  struct termp     *pspdf_alloc(char *);  static  struct termp     *pspdf_alloc(const struct mchars *, char *);
 static  void              pdf_obj(struct termp *, size_t);  static  void              pdf_obj(struct termp *, size_t);
   
 /*  /*
Line 506  static const struct font fonts[TERMFONT__MAX] = {
Line 506  static const struct font fonts[TERMFONT__MAX] = {
 };  };
   
 void *  void *
 pdf_alloc(char *outopts)  pdf_alloc(const struct mchars *mchars, char *outopts)
 {  {
         struct termp    *p;          struct termp    *p;
   
         if (NULL != (p = pspdf_alloc(outopts)))          if (NULL != (p = pspdf_alloc(mchars, outopts)))
                 p->type = TERMTYPE_PDF;                  p->type = TERMTYPE_PDF;
   
         return(p);          return(p);
 }  }
   
 void *  void *
 ps_alloc(char *outopts)  ps_alloc(const struct mchars *mchars, char *outopts)
 {  {
         struct termp    *p;          struct termp    *p;
   
         if (NULL != (p = pspdf_alloc(outopts)))          if (NULL != (p = pspdf_alloc(mchars, outopts)))
                 p->type = TERMTYPE_PS;                  p->type = TERMTYPE_PS;
   
         return(p);          return(p);
 }  }
   
 static struct termp *  static struct termp *
 pspdf_alloc(char *outopts)  pspdf_alloc(const struct mchars *mchars, char *outopts)
 {  {
         struct termp    *p;          struct termp    *p;
         unsigned int     pagex, pagey;          unsigned int     pagex, pagey;
Line 538  pspdf_alloc(char *outopts)
Line 538  pspdf_alloc(char *outopts)
         char            *v;          char            *v;
   
         p = mandoc_calloc(1, sizeof(struct termp));          p = mandoc_calloc(1, sizeof(struct termp));
           p->symtab = mchars;
         p->enc = TERMENC_ASCII;          p->enc = TERMENC_ASCII;
           p->fontq = mandoc_reallocarray(NULL,
               (p->fontsz = 8), sizeof(enum termfont));
           p->fontq[0] = p->fontl = TERMFONT_NONE;
         p->ps = mandoc_calloc(1, sizeof(struct termp_ps));          p->ps = mandoc_calloc(1, sizeof(struct termp_ps));
   
         p->advance = ps_advance;          p->advance = ps_advance;
Line 633  ps_setwidth(struct termp *p, int iop, size_t width)
Line 637  ps_setwidth(struct termp *p, int iop, size_t width)
         size_t   lastwidth;          size_t   lastwidth;
   
         lastwidth = p->ps->width;          lastwidth = p->ps->width;
         if (0 < iop)          if (iop > 0)
                 p->ps->width += width;                  p->ps->width += width;
         else if (0 > iop)          else if (iop == 0)
                   p->ps->width = width ? width : p->ps->lastwidth;
           else if (p->ps->width > width)
                 p->ps->width -= width;                  p->ps->width -= width;
         else          else
                 p->ps->width = width ? width : p->ps->lastwidth;                  p->ps->width = 0;
         p->ps->lastwidth = lastwidth;          p->ps->lastwidth = lastwidth;
 }  }
   
Line 1047  ps_fclose(struct termp *p)
Line 1053  ps_fclose(struct termp *p)
          */           */
   
         if (p->ps->last != '\0') {          if (p->ps->last != '\0') {
                 assert(p->ps->last != 8);                  assert( ! (p->ps->flags & PS_BACKSP));
                 if (p->ps->nextf != p->ps->lastf) {                  if (p->ps->nextf != p->ps->lastf) {
                         ps_pclose(p);                          ps_pclose(p);
                         ps_setfont(p, p->ps->nextf);                          ps_setfont(p, p->ps->nextf);
Line 1066  ps_fclose(struct termp *p)
Line 1072  ps_fclose(struct termp *p)
 static void  static void
 ps_letter(struct termp *p, int arg)  ps_letter(struct termp *p, int arg)
 {  {
           size_t          savecol;
         char            c;          char            c;
   
         c = arg >= 128 || arg <= 0 ? '?' : arg;          c = arg >= 128 || arg <= 0 ? '?' : arg;
   
         /*          /*
          * When receiving an initial character, merely buffer it,           * When receiving a backspace, merely flag it.
          * because a backspace might follow to specify formatting.           * We don't know yet whether it is
          * When receiving a backspace, use the buffered character           * a font instruction or an overstrike.
          * to build the font instruction and clear the buffer.  
          * Only when there are two non-backspace characters in a row,  
          * activate the font built so far and print the first of them;  
          * the second, again, merely gets buffered.  
          * The final character will get printed from ps_fclose().  
          */           */
   
         if (c == 8) {          if (c == '\b') {
                 assert(p->ps->last != '\0');                  assert(p->ps->last != '\0');
                 assert(p->ps->last != 8);                  assert( ! (p->ps->flags & PS_BACKSP));
                 if ('_' == p->ps->last) {                  p->ps->flags |= PS_BACKSP;
                   return;
           }
   
           /*
            * Decode font instructions.
            */
   
           if (p->ps->flags & PS_BACKSP) {
                   if (p->ps->last == '_') {
                         switch (p->ps->nextf) {                          switch (p->ps->nextf) {
                         case TERMFONT_BI:                          case TERMFONT_BI:
                                 break;                                  break;
Line 1094  ps_letter(struct termp *p, int arg)
Line 1105  ps_letter(struct termp *p, int arg)
                         default:                          default:
                                 p->ps->nextf = TERMFONT_UNDER;                                  p->ps->nextf = TERMFONT_UNDER;
                         }                          }
                 } else {                          p->ps->last = c;
                           p->ps->flags &= ~PS_BACKSP;
                           return;
                   }
                   if (p->ps->last == c) {
                         switch (p->ps->nextf) {                          switch (p->ps->nextf) {
                         case TERMFONT_BI:                          case TERMFONT_BI:
                                 break;                                  break;
Line 1104  ps_letter(struct termp *p, int arg)
Line 1119  ps_letter(struct termp *p, int arg)
                         default:                          default:
                                 p->ps->nextf = TERMFONT_BOLD;                                  p->ps->nextf = TERMFONT_BOLD;
                         }                          }
                           p->ps->flags &= ~PS_BACKSP;
                           return;
                 }                  }
         } else if (p->ps->last != '\0' && p->ps->last != 8) {  
                   /*
                    * This is not a font instruction, but rather
                    * the next character.  Prepare for overstrike.
                    */
   
                   savecol = p->ps->pscol;
           } else
                   savecol = SIZE_MAX;
   
           /*
            * We found the next character, so the font instructions
            * for the previous one are complete.
            * Use them and print it.
            */
   
           if (p->ps->last != '\0') {
                 if (p->ps->nextf != p->ps->lastf) {                  if (p->ps->nextf != p->ps->lastf) {
                         ps_pclose(p);                          ps_pclose(p);
                         ps_setfont(p, p->ps->nextf);                          ps_setfont(p, p->ps->nextf);
Line 1113  ps_letter(struct termp *p, int arg)
Line 1146  ps_letter(struct termp *p, int arg)
                 p->ps->nextf = TERMFONT_NONE;                  p->ps->nextf = TERMFONT_NONE;
                 ps_pletter(p, p->ps->last);                  ps_pletter(p, p->ps->last);
         }          }
   
           /*
            * Do not print the current character yet because font
            * instructions might follow; only remember it.
            * For the first character, nothing else is done.
            * The final character will get printed from ps_fclose().
            */
   
         p->ps->last = c;          p->ps->last = c;
   
           /*
            * For an overstrike, back up to the previous position.
            */
   
           if (savecol != SIZE_MAX) {
                   ps_pclose(p);
                   p->ps->pscol = savecol;
                   p->ps->flags &= ~PS_BACKSP;
           }
 }  }
   
 static void  static void

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.71

CVSweb