[BACK]Return to term_ps.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/term_ps.c between version 1.23 and 1.24

version 1.23, 2014/03/30 21:27:59 version 1.24, 2014/04/20 16:44:44
Line 36 
Line 36 
 #define PS_BUFSLOP        128  #define PS_BUFSLOP        128
   
 /* Convert PostScript point "x" to an AFM unit. */  /* Convert PostScript point "x" to an AFM unit. */
 #define PNT2AFM(p, x) /* LINTED */ \  #define PNT2AFM(p, x) \
         (size_t)((double)(x) * (1000.0 / (double)(p)->ps->scale))          (size_t)((double)(x) * (1000.0 / (double)(p)->ps->scale))
   
 /* Convert an AFM unit "x" to a PostScript points */  /* Convert an AFM unit "x" to a PostScript points */
 #define AFM2PNT(p, x) /* LINTED */ \  #define AFM2PNT(p, x) \
         ((double)(x) / (1000.0 / (double)(p)->ps->scale))          ((double)(x) / (1000.0 / (double)(p)->ps->scale))
   
 struct  glyph {  struct  glyph {
Line 76 
Line 76 
         size_t            left;         /* body left (AFM units) */          size_t            left;         /* body left (AFM units) */
         size_t            header;       /* header pos (AFM units) */          size_t            header;       /* header pos (AFM units) */
         size_t            footer;       /* footer pos (AFM units) */          size_t            footer;       /* footer pos (AFM units) */
         size_t            pdfbytes;     /* current output byte */          size_t            pdfbytes;     /* current output byte */
         size_t            pdflastpg;    /* byte of last page mark */          size_t            pdflastpg;    /* byte of last page mark */
         size_t            pdfbody;      /* start of body object */          size_t            pdfbody;      /* start of body object */
         size_t           *pdfobjs;      /* table of object offsets */          size_t           *pdfobjs;      /* table of object offsets */
Line 447 
Line 447 
         p->letter = ps_letter;          p->letter = ps_letter;
         p->setwidth = ps_setwidth;          p->setwidth = ps_setwidth;
         p->width = ps_width;          p->width = ps_width;
   
         toks[0] = "paper";          toks[0] = "paper";
         toks[1] = NULL;          toks[1] = NULL;
   
Line 455 
Line 455 
   
         while (outopts && *outopts)          while (outopts && *outopts)
                 switch (getsubopt(&outopts, UNCONST(toks), &v)) {                  switch (getsubopt(&outopts, UNCONST(toks), &v)) {
                 case (0):                  case 0:
                         pp = v;                          pp = v;
                         break;                          break;
                 default:                  default:
Line 491 
Line 491 
                         fprintf(stderr, "%s: Unknown paper\n", pp);                          fprintf(stderr, "%s: Unknown paper\n", pp);
         }          }
   
         /*          /*
          * This MUST be defined before any PNT2AFM or AFM2PNT           * This MUST be defined before any PNT2AFM or AFM2PNT
          * calculations occur.           * calculations occur.
          */           */
Line 505 
Line 505 
   
         /* Margins are 1/9 the page x and y. */          /* Margins are 1/9 the page x and y. */
   
         marginx = /* LINTED */          marginx = (size_t)((double)pagex / 9.0);
                 (size_t)((double)pagex / 9.0);          marginy = (size_t)((double)pagey / 9.0);
         marginy = /* LINTED */  
                 (size_t)((double)pagey / 9.0);  
   
         /* Line-height is 1.4em. */          /* Line-height is 1.4em. */
   
Line 527 
Line 525 
         return(p);          return(p);
 }  }
   
   
 static void  static void
 ps_setwidth(struct termp *p, int iop, size_t width)  ps_setwidth(struct termp *p, int iop, size_t width)
 {  {
Line 543 
Line 540 
         p->ps->lastwidth = lastwidth;          p->ps->lastwidth = lastwidth;
 }  }
   
   
 void  void
 pspdf_free(void *arg)  pspdf_free(void *arg)
 {  {
Line 560 
Line 556 
         term_free(p);          term_free(p);
 }  }
   
   
 static void  static void
 ps_printf(struct termp *p, const char *fmt, ...)  ps_printf(struct termp *p, const char *fmt, ...)
 {  {
Line 578 
Line 573 
         if ( ! (PS_MARGINS & p->ps->flags)) {          if ( ! (PS_MARGINS & p->ps->flags)) {
                 len = vprintf(fmt, ap);                  len = vprintf(fmt, ap);
                 va_end(ap);                  va_end(ap);
                 p->ps->pdfbytes += /* LINTED */                  p->ps->pdfbytes += len < 0 ? 0 : (size_t)len;
                         len < 0 ? 0 : (size_t)len;  
                 return;                  return;
         }          }
   
         /*          /*
          * XXX: I assume that the in-margin print won't exceed           * XXX: I assume that the in-margin print won't exceed
          * PS_BUFSLOP (128 bytes), which is reasonable but still an           * PS_BUFSLOP (128 bytes), which is reasonable but still an
          * assumption that will cause pukeage if it's not the case.           * assumption that will cause pukeage if it's not the case.
Line 599 
Line 593 
         p->ps->psmargcur = strlen(p->ps->psmarg);          p->ps->psmargcur = strlen(p->ps->psmarg);
 }  }
   
   
 static void  static void
 ps_putchar(struct termp *p, char c)  ps_putchar(struct termp *p, char c)
 {  {
Line 608 
Line 601 
         /* See ps_printf(). */          /* See ps_printf(). */
   
         if ( ! (PS_MARGINS & p->ps->flags)) {          if ( ! (PS_MARGINS & p->ps->flags)) {
                 /* LINTED */  
                 putchar(c);                  putchar(c);
                 p->ps->pdfbytes++;                  p->ps->pdfbytes++;
                 return;                  return;
Line 621 
Line 613 
         p->ps->psmarg[pos] = '\0';          p->ps->psmarg[pos] = '\0';
 }  }
   
   
 static void  static void
 pdf_obj(struct termp *p, size_t obj)  pdf_obj(struct termp *p, size_t obj)
 {  {
Line 630 
Line 621 
   
         if ((obj - 1) >= p->ps->pdfobjsz) {          if ((obj - 1) >= p->ps->pdfobjsz) {
                 p->ps->pdfobjsz = obj + 128;                  p->ps->pdfobjsz = obj + 128;
                 p->ps->pdfobjs = realloc                  p->ps->pdfobjs = realloc(p->ps->pdfobjs,
                         (p->ps->pdfobjs,                      p->ps->pdfobjsz * sizeof(size_t));
                          p->ps->pdfobjsz * sizeof(size_t));  
                 if (NULL == p->ps->pdfobjs) {                  if (NULL == p->ps->pdfobjs) {
                         perror(NULL);                          perror(NULL);
                         exit((int)MANDOCLEVEL_SYSERR);                          exit((int)MANDOCLEVEL_SYSERR);
Line 643 
Line 633 
         ps_printf(p, "%zu 0 obj\n", obj);          ps_printf(p, "%zu 0 obj\n", obj);
 }  }
   
   
 static void  static void
 ps_closepage(struct termp *p)  ps_closepage(struct termp *p)
 {  {
Line 676 
Line 665 
                 pdf_obj(p, base + 2);                  pdf_obj(p, base + 2);
                 ps_printf(p, "<<\n/ProcSet [/PDF /Text]\n");                  ps_printf(p, "<<\n/ProcSet [/PDF /Text]\n");
                 ps_printf(p, "/Font <<\n");                  ps_printf(p, "/Font <<\n");
                 for (i = 0; i < (int)TERMFONT__MAX; i++)                  for (i = 0; i < (int)TERMFONT__MAX; i++)
                         ps_printf(p, "/F%d %d 0 R\n", i, 3 + i);                          ps_printf(p, "/F%d %d 0 R\n", i, 3 + i);
                 ps_printf(p, ">>\n>>\n");                  ps_printf(p, ">>\n>>\n");
   
Line 697 
Line 686 
         p->ps->flags |= PS_NEWPAGE;          p->ps->flags |= PS_NEWPAGE;
 }  }
   
   
 /* ARGSUSED */  
 static void  static void
 ps_end(struct termp *p)  ps_end(struct termp *p)
 {  {
Line 721 
Line 708 
                 ps_printf(p, "%%%%Pages: %zu\n", p->ps->pages);                  ps_printf(p, "%%%%Pages: %zu\n", p->ps->pages);
                 ps_printf(p, "%%%%EOF\n");                  ps_printf(p, "%%%%EOF\n");
                 return;                  return;
         }          }
   
         pdf_obj(p, 2);          pdf_obj(p, 2);
         ps_printf(p, "<<\n/Type /Pages\n");          ps_printf(p, "<<\n/Type /Pages\n");
Line 733 
Line 720 
         ps_printf(p, "/Kids [");          ps_printf(p, "/Kids [");
   
         for (i = 0; i < p->ps->pages; i++)          for (i = 0; i < p->ps->pages; i++)
                 ps_printf(p, " %zu 0 R", i * 4 +                  ps_printf(p, " %zu 0 R", i * 4 + p->ps->pdfbody + 3);
                                 p->ps->pdfbody + 3);  
   
         base = (p->ps->pages - 1) * 4 +          base = (p->ps->pages - 1) * 4 + p->ps->pdfbody + 4;
                 p->ps->pdfbody + 4;  
   
         ps_printf(p, "]\n>>\nendobj\n");          ps_printf(p, "]\n>>\nendobj\n");
         pdf_obj(p, base);          pdf_obj(p, base);
Line 751 
Line 736 
         ps_printf(p, "0000000000 65535 f \n");          ps_printf(p, "0000000000 65535 f \n");
   
         for (i = 0; i < base; i++)          for (i = 0; i < base; i++)
                 ps_printf(p, "%.10zu 00000 n \n",                  ps_printf(p, "%.10zu 00000 n \n",
                                 p->ps->pdfobjs[(int)i]);                      p->ps->pdfobjs[(int)i]);
   
         ps_printf(p, "trailer\n");          ps_printf(p, "trailer\n");
         ps_printf(p, "<<\n");          ps_printf(p, "<<\n");
Line 765 
Line 750 
         ps_printf(p, "%%%%EOF\n");          ps_printf(p, "%%%%EOF\n");
 }  }
   
   
 static void  static void
 ps_begin(struct termp *p)  ps_begin(struct termp *p)
 {  {
         time_t           t;          time_t           t;
         int              i;          int              i;
   
         /*          /*
          * Print margins into margin buffer.  Nothing gets output to the           * Print margins into margin buffer.  Nothing gets output to the
          * screen yet, so we don't need to initialise the primary state.           * screen yet, so we don't need to initialise the primary state.
          */           */
Line 805 
Line 789 
         assert(p->ps->psmarg);          assert(p->ps->psmarg);
         assert('\0' != p->ps->psmarg[0]);          assert('\0' != p->ps->psmarg[0]);
   
         /*          /*
          * Print header and initialise page state.  Following this,           * Print header and initialise page state.  Following this,
          * stuff gets printed to the screen, so make sure we're sane.           * stuff gets printed to the screen, so make sure we're sane.
          */           */
Line 820 
Line 804 
                 ps_printf(p, "%%%%Pages: (atend)\n");                  ps_printf(p, "%%%%Pages: (atend)\n");
                 ps_printf(p, "%%%%PageOrder: Ascend\n");                  ps_printf(p, "%%%%PageOrder: Ascend\n");
                 ps_printf(p, "%%%%DocumentMedia: "                  ps_printf(p, "%%%%DocumentMedia: "
                                 "Default %zu %zu 0 () ()\n",                      "Default %zu %zu 0 () ()\n",
                                 (size_t)AFM2PNT(p, p->ps->width),                      (size_t)AFM2PNT(p, p->ps->width),
                                 (size_t)AFM2PNT(p, p->ps->height));                      (size_t)AFM2PNT(p, p->ps->height));
                 ps_printf(p, "%%%%DocumentNeededResources: font");                  ps_printf(p, "%%%%DocumentNeededResources: font");
   
                 for (i = 0; i < (int)TERMFONT__MAX; i++)                  for (i = 0; i < (int)TERMFONT__MAX; i++)
Line 854 
Line 838 
         ps_setfont(p, TERMFONT_NONE);          ps_setfont(p, TERMFONT_NONE);
 }  }
   
   
 static void  static void
 ps_pletter(struct termp *p, int c)  ps_pletter(struct termp *p, int c)
 {  {
Line 867 
Line 850 
   
         if (PS_NEWPAGE & p->ps->flags) {          if (PS_NEWPAGE & p->ps->flags) {
                 if (TERMTYPE_PS == p->type) {                  if (TERMTYPE_PS == p->type) {
                         ps_printf(p, "%%%%Page: %zu %zu\n",                          ps_printf(p, "%%%%Page: %zu %zu\n",
                                         p->ps->pages + 1,                              p->ps->pages + 1, p->ps->pages + 1);
                                         p->ps->pages + 1);                          ps_printf(p, "/%s %zu selectfont\n",
                         ps_printf(p, "/%s %zu selectfont\n",                              fonts[(int)p->ps->lastf].name,
                                         fonts[(int)p->ps->lastf].name,                              p->ps->scale);
                                         p->ps->scale);  
                 } else {                  } else {
                         pdf_obj(p, p->ps->pdfbody +                          pdf_obj(p, p->ps->pdfbody +
                                         p->ps->pages * 4);                              p->ps->pages * 4);
                         ps_printf(p, "<<\n");                          ps_printf(p, "<<\n");
                         ps_printf(p, "/Length %zu 0 R\n",                          ps_printf(p, "/Length %zu 0 R\n",
                                         p->ps->pdfbody + 1 +                              p->ps->pdfbody + 1 + p->ps->pages * 4);
                                         p->ps->pages * 4);  
                         ps_printf(p, ">>\nstream\n");                          ps_printf(p, ">>\nstream\n");
                 }                  }
                 p->ps->pdflastpg = p->ps->pdfbytes;                  p->ps->pdflastpg = p->ps->pdfbytes;
                 p->ps->flags &= ~PS_NEWPAGE;                  p->ps->flags &= ~PS_NEWPAGE;
         }          }
   
         /*          /*
          * If we're not in a PostScript "word" context, then open one           * If we're not in a PostScript "word" context, then open one
          * now at the current cursor.           * now at the current cursor.
Line 893 
Line 874 
   
         if ( ! (PS_INLINE & p->ps->flags)) {          if ( ! (PS_INLINE & p->ps->flags)) {
                 if (TERMTYPE_PS != p->type) {                  if (TERMTYPE_PS != p->type) {
                         ps_printf(p, "BT\n/F%d %zu Tf\n",                          ps_printf(p, "BT\n/F%d %zu Tf\n",
                                         (int)p->ps->lastf,                              (int)p->ps->lastf, p->ps->scale);
                                         p->ps->scale);  
                         ps_printf(p, "%.3f %.3f Td\n(",                          ps_printf(p, "%.3f %.3f Td\n(",
                                         AFM2PNT(p, p->ps->pscol),                              AFM2PNT(p, p->ps->pscol),
                                         AFM2PNT(p, p->ps->psrow));                              AFM2PNT(p, p->ps->psrow));
                 } else                  } else
                         ps_printf(p, "%.3f %.3f moveto\n(",                          ps_printf(p, "%.3f %.3f moveto\n(",
                                         AFM2PNT(p, p->ps->pscol),                              AFM2PNT(p, p->ps->pscol),
                                         AFM2PNT(p, p->ps->psrow));                              AFM2PNT(p, p->ps->psrow));
                 p->ps->flags |= PS_INLINE;                  p->ps->flags |= PS_INLINE;
         }          }
   
Line 916 
Line 896 
          */           */
   
         switch (c) {          switch (c) {
         case ('('):          case '(':
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (')'):          case ')':
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('\\'):          case '\\':
                 ps_putchar(p, '\\');                  ps_putchar(p, '\\');
                 break;                  break;
         default:          default:
Line 935 
Line 915 
                 ps_putchar(p, ' ');                  ps_putchar(p, ' ');
                 p->ps->pscol += (size_t)fonts[f].gly[0].wx;                  p->ps->pscol += (size_t)fonts[f].gly[0].wx;
                 return;                  return;
         }          }
   
         ps_putchar(p, (char)c);          ps_putchar(p, (char)c);
         c -= 32;          c -= 32;
         p->ps->pscol += (size_t)fonts[f].gly[c].wx;          p->ps->pscol += (size_t)fonts[f].gly[c].wx;
 }  }
   
   
 static void  static void
 ps_pclose(struct termp *p)  ps_pclose(struct termp *p)
 {  {
   
         /*          /*
          * Spit out that we're exiting a word context (this is a           * Spit out that we're exiting a word context (this is a
          * "partial close" because we don't check the last-char buffer           * "partial close" because we don't check the last-char buffer
          * or anything).           * or anything).
Line 955 
Line 934 
   
         if ( ! (PS_INLINE & p->ps->flags))          if ( ! (PS_INLINE & p->ps->flags))
                 return;                  return;
   
         if (TERMTYPE_PS != p->type) {          if (TERMTYPE_PS != p->type) {
                 ps_printf(p, ") Tj\nET\n");                  ps_printf(p, ") Tj\nET\n");
         } else          } else
Line 964 
Line 943 
         p->ps->flags &= ~PS_INLINE;          p->ps->flags &= ~PS_INLINE;
 }  }
   
   
 static void  static void
 ps_fclose(struct termp *p)  ps_fclose(struct termp *p)
 {  {
Line 992 
Line 970 
         ps_pclose(p);          ps_pclose(p);
 }  }
   
   
 static void  static void
 ps_letter(struct termp *p, int arg)  ps_letter(struct termp *p, int arg)
 {  {
         char            cc, c;          char            cc, c;
   
         /* LINTED */  
         c = arg >= 128 || arg <= 0 ? '?' : arg;          c = arg >= 128 || arg <= 0 ? '?' : arg;
   
         /*          /*
Line 1043 
Line 1019 
         ps_pletter(p, c);          ps_pletter(p, c);
 }  }
   
   
 static void  static void
 ps_advance(struct termp *p, size_t len)  ps_advance(struct termp *p, size_t len)
 {  {
Line 1059 
Line 1034 
         p->ps->pscol += len;          p->ps->pscol += len;
 }  }
   
   
 static void  static void
 ps_endline(struct termp *p)  ps_endline(struct termp *p)
 {  {
Line 1071 
Line 1045 
         /*          /*
          * If we're in the margin, don't try to recalculate our current           * If we're in the margin, don't try to recalculate our current
          * row.  XXX: if the column tries to be fancy with multiple           * row.  XXX: if the column tries to be fancy with multiple
          * lines, we'll do nasty stuff.           * lines, we'll do nasty stuff.
          */           */
   
         if (PS_MARGINS & p->ps->flags)          if (PS_MARGINS & p->ps->flags)
Line 1091 
Line 1065 
          * showpage and restart our row.           * showpage and restart our row.
          */           */
   
         if (p->ps->psrow >= p->ps->lineheight +          if (p->ps->psrow >= p->ps->lineheight + p->ps->bottom) {
                         p->ps->bottom) {  
                 p->ps->psrow -= p->ps->lineheight;                  p->ps->psrow -= p->ps->lineheight;
                 return;                  return;
         }          }
Line 1100 
Line 1073 
         ps_closepage(p);          ps_closepage(p);
 }  }
   
   
 static void  static void
 ps_setfont(struct termp *p, enum termfont f)  ps_setfont(struct termp *p, enum termfont f)
 {  {
   
         assert(f < TERMFONT__MAX);          assert(f < TERMFONT__MAX);
         p->ps->lastf = f;          p->ps->lastf = f;
   
         /*          /*
          * If we're still at the top of the page, let the font-setting           * If we're still at the top of the page, let the font-setting
          * be delayed until we actually have stuff to print.           * be delayed until we actually have stuff to print.
Line 1117 
Line 1089 
                 return;                  return;
   
         if (TERMTYPE_PS == p->type)          if (TERMTYPE_PS == p->type)
                 ps_printf(p, "/%s %zu selectfont\n",                  ps_printf(p, "/%s %zu selectfont\n",
                                 fonts[(int)f].name,                      fonts[(int)f].name, p->ps->scale);
                                 p->ps->scale);  
         else          else
                 ps_printf(p, "/F%d %zu Tf\n",                  ps_printf(p, "/F%d %zu Tf\n",
                                 (int)f,                      (int)f, p->ps->scale);
                                 p->ps->scale);  
 }  }
   
   
 /* ARGSUSED */  
 static size_t  static size_t
 ps_width(const struct termp *p, int c)  ps_width(const struct termp *p, int c)
 {  {
Line 1139 
Line 1107 
         return((size_t)fonts[(int)TERMFONT_NONE].gly[c].wx);          return((size_t)fonts[(int)TERMFONT_NONE].gly[c].wx);
 }  }
   
   
 static double  static double
 ps_hspan(const struct termp *p, const struct roffsu *su)  ps_hspan(const struct termp *p, const struct roffsu *su)
 {  {
         double           r;          double           r;
   
         /*          /*
          * All of these measurements are derived by converting from the           * All of these measurements are derived by converting from the
          * native measurement to AFM units.           * native measurement to AFM units.
          */           */
   
         switch (su->unit) {          switch (su->unit) {
         case (SCALE_CM):          case SCALE_CM:
                 r = PNT2AFM(p, su->scale * 28.34);                  r = PNT2AFM(p, su->scale * 28.34);
                 break;                  break;
         case (SCALE_IN):          case SCALE_IN:
                 r = PNT2AFM(p, su->scale * 72);                  r = PNT2AFM(p, su->scale * 72);
                 break;                  break;
         case (SCALE_PC):          case SCALE_PC:
                 r = PNT2AFM(p, su->scale * 12);                  r = PNT2AFM(p, su->scale * 12);
                 break;                  break;
         case (SCALE_PT):          case SCALE_PT:
                 r = PNT2AFM(p, su->scale * 100);                  r = PNT2AFM(p, su->scale * 100);
                 break;                  break;
         case (SCALE_EM):          case SCALE_EM:
                 r = su->scale *                  r = su->scale *
                         fonts[(int)TERMFONT_NONE].gly[109 - 32].wx;                      fonts[(int)TERMFONT_NONE].gly[109 - 32].wx;
                 break;                  break;
         case (SCALE_MM):          case SCALE_MM:
                 r = PNT2AFM(p, su->scale * 2.834);                  r = PNT2AFM(p, su->scale * 2.834);
                 break;                  break;
         case (SCALE_EN):          case SCALE_EN:
                 r = su->scale *                  r = su->scale *
                         fonts[(int)TERMFONT_NONE].gly[110 - 32].wx;                      fonts[(int)TERMFONT_NONE].gly[110 - 32].wx;
                 break;                  break;
         case (SCALE_VS):          case SCALE_VS:
                 r = su->scale * p->ps->lineheight;                  r = su->scale * p->ps->lineheight;
                 break;                  break;
         default:          default:
Line 1199 
Line 1166 
         p->ps->psmarg = mandoc_realloc          p->ps->psmarg = mandoc_realloc
                 (p->ps->psmarg, p->ps->psmargsz);                  (p->ps->psmarg, p->ps->psmargsz);
 }  }
   

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24