]> www.fi.muni.cz Git - evince.git/blobdiff - pdf/xpdf/PDFDoc.cc
kill
[evince.git] / pdf / xpdf / PDFDoc.cc
index 06b1cd7926f3e5f5fb64bae980544862a5e691d0..683e4d2d69d0cc18259fd5254789e32fca7482d3 100644 (file)
@@ -2,7 +2,7 @@
 //
 // PDFDoc.cc
 //
-// Copyright 1996 Derek B. Noonburg
+// Copyright 1996-2002 Glyph & Cog, LLC
 //
 //========================================================================
 
@@ -10,6 +10,7 @@
 #pragma implementation
 #endif
 
+#include <aconf.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stddef.h>
 #include "XRef.h"
 #include "Link.h"
 #include "OutputDev.h"
-#include "Params.h"
 #include "Error.h"
+#include "ErrorCodes.h"
+#include "Lexer.h"
+#include "Parser.h"
 #include "PDFDoc.h"
 
 //------------------------------------------------------------------------
 // PDFDoc
 //------------------------------------------------------------------------
 
-PDFDoc::PDFDoc(GString *fileName1) {
+PDFDoc::PDFDoc(GString *fileNameA, GString *ownerPassword,
+              GString *userPassword, GBool printCommandsA) {
   Object obj;
   GString *fileName2;
 
   ok = gFalse;
+  errCode = errNone;
 
   file = NULL;
   str = NULL;
+  xref = NULL;
+  catalog = NULL;
+  links = NULL;
+  printCommands = printCommandsA;
 
   // try to open file
-  fileName = fileName1;
+  fileName = fileNameA;
   fileName2 = NULL;
 #ifdef VMS
   if (!(file = fopen(fileName->getCString(), "rb", "ctx=stm"))) {
     error(-1, "Couldn't open file '%s'", fileName->getCString());
+    errCode = errOpenFile;
     return;
   }
 #else
@@ -61,6 +71,7 @@ PDFDoc::PDFDoc(GString *fileName1) {
       if (!(file = fopen(fileName2->getCString(), "rb"))) {
        error(-1, "Couldn't open file '%s'", fileName->getCString());
        delete fileName2;
+       errCode = errOpenFile;
        return;
       }
     }
@@ -70,41 +81,42 @@ PDFDoc::PDFDoc(GString *fileName1) {
 
   // create stream
   obj.initNull();
-  str = new FileStream(file, 0, -1, &obj);
+  str = new FileStream(file, 0, gFalse, 0, &obj);
 
-  ok = setup();
+  ok = setup(ownerPassword, userPassword);
 }
 
-PDFDoc::PDFDoc(BaseStream *str) {
+PDFDoc::PDFDoc(BaseStream *strA, GString *ownerPassword,
+              GString *userPassword, GBool printCommandsA) {
   ok = gFalse;
+  errCode = errNone;
   fileName = NULL;
   file = NULL;
-  this->str = str;
-  ok = setup();
-}
-
-GBool PDFDoc::setup() {
-  Object catObj;
-
+  str = strA;
   xref = NULL;
   catalog = NULL;
   links = NULL;
+  printCommands = printCommandsA;
+  ok = setup(ownerPassword, userPassword);
+}
 
+GBool PDFDoc::setup(GString *ownerPassword, GString *userPassword) {
   // check header
   checkHeader();
 
   // read xref table
-  xref = new XRef(str);
+  xref = new XRef(str, ownerPassword, userPassword);
   if (!xref->isOk()) {
     error(-1, "Couldn't read xref table");
+    errCode = xref->getErrorCode();
     return gFalse;
   }
 
   // read catalog
-  catalog = new Catalog(xref->getCatalog(&catObj));
-  catObj.free();
+  catalog = new Catalog(xref, printCommands);
   if (!catalog->isOk()) {
     error(-1, "Couldn't read page catalog");
+    errCode = errBadCatalog;
     return gFalse;
   }
 
@@ -138,9 +150,9 @@ PDFDoc::~PDFDoc() {
 void PDFDoc::checkHeader() {
   char hdrBuf[headerSearchSize+1];
   char *p;
-  double version;
   int i;
 
+  pdfVersion = 0;
   for (i = 0; i < headerSearchSize; ++i) {
     hdrBuf[i] = str->getChar();
   }
@@ -156,49 +168,71 @@ void PDFDoc::checkHeader() {
   }
   str->moveStart(i);
   p = strtok(&hdrBuf[i+5], " \t\n\r");
-  version = atof(p);
+  pdfVersion = atof(p);
   if (!(hdrBuf[i+5] >= '0' && hdrBuf[i+5] <= '9') ||
-      version > pdfVersionNum + 0.0001) {
+      pdfVersion > supportedPDFVersionNum + 0.0001) {
     error(-1, "PDF version %s -- xpdf supports version %s"
-         " (continuing anyway)", p, pdfVersion);
+         " (continuing anyway)", p, supportedPDFVersionStr);
   }
 }
 
-void PDFDoc::displayPage(OutputDev *out, int page, int zoom, int rotate,
-                        GBool doLinks) {
-  Link *link;
-  double x1, y1, x2, y2;
-  double w;
-  int i;
+void PDFDoc::displayPage(OutputDev *out, int page, double zoom,
+                        int rotate, GBool doLinks) {
+  Page *p;
 
-  if (printCommands)
+  if (printCommands) {
     printf("***** page %d *****\n", page);
-  catalog->getPage(page)->display(out, zoom, rotate);
+  }
+  p = catalog->getPage(page);
   if (doLinks) {
-    if (links)
+    if (links) {
       delete links;
-    getLinks(page);
-    for (i = 0; i < links->getNumLinks(); ++i) {
-      link = links->getLink(i);
-      link->getBorder(&x1, &y1, &x2, &y2, &w);
-      if (w > 0)
-       out->drawLinkBorder(x1, y1, x2, y2, w);
+      links = NULL;
     }
-    out->dump();
+    getLinks(p);
+    p->display(out, zoom, rotate, links, catalog);
+  } else {
+    p->display(out, zoom, rotate, NULL, catalog);
   }
 }
 
 void PDFDoc::displayPages(OutputDev *out, int firstPage, int lastPage,
-                         int zoom, int rotate) {
-  Page *p;
+                         int zoom, int rotate, GBool doLinks) {
   int page;
 
   for (page = firstPage; page <= lastPage; ++page) {
-    if (printCommands)
-      printf("***** page %d *****\n", page);
-    p = catalog->getPage(page);
-    p->display(out, zoom, rotate);
+    displayPage(out, page, zoom, rotate, doLinks);
+  }
+}
+
+GBool PDFDoc::isLinearized() {
+  Parser *parser;
+  Object obj1, obj2, obj3, obj4, obj5;
+  GBool lin;
+
+  lin = gFalse;
+  obj1.initNull();
+  parser = new Parser(xref,
+            new Lexer(xref,
+              str->makeSubStream(str->getStart(), gFalse, 0, &obj1)));
+  parser->getObj(&obj1);
+  parser->getObj(&obj2);
+  parser->getObj(&obj3);
+  parser->getObj(&obj4);
+  if (obj1.isInt() && obj2.isInt() && obj3.isCmd("obj") &&
+      obj4.isDict()) {
+    obj4.dictLookup("Linearized", &obj5);
+    if (obj5.isNum() && obj5.getNum() > 0) {
+      lin = gTrue;
+    }
+    obj5.free();
   }
+  obj4.free();
+  obj3.free();
+  obj2.free();
+  obj1.free();
+  delete parser;
+  return lin;
 }
 
 GBool PDFDoc::saveAs(GString *name) {
@@ -213,14 +247,14 @@ GBool PDFDoc::saveAs(GString *name) {
   while ((c = str->getChar()) != EOF) {
     fputc(c, f);
   }
+  str->close();
   fclose(f);
   return gTrue;
 }
 
-void PDFDoc::getLinks(int page) {
+void PDFDoc::getLinks(Page *page) {
   Object obj;
 
-  links = new Links(catalog->getPage(page)->getAnnots(&obj),
-                   catalog->getBaseURI());
+  links = new Links(page->getAnnots(&obj), catalog->getBaseURI());
   obj.free();
 }