Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.h

Issue 18323019: work on the native parser, in progress, uploaded to have a backup (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.h
===================================================================
--- experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.h (revision 9879)
+++ experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.h (working copy)
@@ -1,12 +1,96 @@
#ifndef EXPERIMENTAL_PDFVIEWER_PDFPARSER_NATIVE_SKNATIVEPARSEDPDF_H_
#define EXPERIMENTAL_PDFVIEWER_PDFPARSER_NATIVE_SKNATIVEPARSEDPDF_H_
-#include "base/macros.h"
+#include "SkRect.h"
+#include "SkTDArray.h"
-class SkNativeParsedPDF : public SkParsedPDF {
+class SkCanvas;
+
+class SkPdfAllocator;
+class SkPdfMapper;
+class SkPdfObject;
+class SkPdfReal;
+class SkPdfInteger;
+class SkPdfString;
+class SkPdfResourceDictionary;
+class SkPdfCatalogDictionary;
+class SkPdfPageObjectDictionary;
+class SkPdfPageTreeNodeDictionary;
+
+
+
+class SkPdfNativeTokenizer;
+
+class SkNativeParsedPDF {
+private:
+ struct PublicObjectEntry {
+ long fOffset;
+ // long endOffset; // TODO(edisonn): determine the end of the object, to be used when the doc is corrupted
+ SkPdfObject* fObj;
+ // TODO(edisonn): perf ... probably it does not make sense to cache the ref. test it!
+ SkPdfObject* fResolvedReference;
+ };
+
public:
- SkNativeParsedPDF();
- virtual ~SkNativeParsedPDF();
+ // TODO(edisonn): read methods: file, stream, http(s)://url, url with seek?
+ // TODO(edisonn): read first page asap, linearized
+ // TODO(edisonn): read page N asap, read all file
+ // TODO(edisonn): allow corruptions of file (e.g. missing endobj, missing stream length, ...)
+ // TODO(edisonn): encryption
+ SkNativeParsedPDF(const char* path);
+ ~SkNativeParsedPDF();
+
+ int pages() const;
+ SkPdfResourceDictionary* pageResources(int page);
+ SkRect MediaBox(int page) const;
+ SkPdfNativeTokenizer* tokenizerOfPage(int n) const;
+
+ SkPdfNativeTokenizer* tokenizerOfStream(SkPdfObject* stream) const;
+ SkPdfNativeTokenizer* tokenizerOfBuffer(unsigned char* buffer, size_t len) const;
+
+ size_t objects() const;
+ SkPdfObject* object(int i);
+
+ const SkPdfMapper* mapper() const;
+ SkPdfAllocator* allocator() const;
+
+ SkPdfReal* createReal(double value) const;
+ SkPdfInteger* createInteger(int value) const;
+ // the string does not own the char*
+ SkPdfString* createString(unsigned char* sz, size_t len) const;
+
+ void drawPage(int page, SkCanvas* canvas);
+
+ SkPdfObject* resolveReference(SkPdfObject* ref) const;
+ SkPdfObject* resolveReference(const SkPdfObject* ref) const;
+
+private:
+
+ unsigned char* readCrossReferenceSection(unsigned char* xrefStart, unsigned char* trailerEnd);
+ long readTrailer(unsigned char* trailerStart, unsigned char* trailerEnd, bool storeCatalog);
+
+ // TODO(edisonn): updates not supported right now, generation ignored
+ void addCrossSectionInfo(int id, int generation, int offset, bool isFreed);
+ static void reset(PublicObjectEntry* obj) {
+ obj->fObj = NULL;
+ obj->fResolvedReference = NULL;
+ obj->fOffset = -1;
+ }
+
+ SkPdfObject* readObject(int id/*, int generation*/) const;
+
+ void fillPages(SkPdfPageTreeNodeDictionary* tree);
+
+ // private fields
+ SkPdfAllocator* fAllocator;
+ SkPdfMapper* fMapper;
+ unsigned char* fFileContent;
+ size_t fContentLength;
+ const SkPdfObject* fRootCatalogRef;
+ SkPdfCatalogDictionary* fRootCatalog;
+
+ mutable SkTDArray<PublicObjectEntry> fObjects;
+ SkTDArray<SkPdfPageObjectDictionary*> fPages;
};
#endif // EXPERIMENTAL_PDFVIEWER_PDFPARSER_NATIVE_SKNATIVEPARSEDPDF_H_
« no previous file with comments | « experimental/PdfViewer/pdfparser/SkPdfNYI.h ('k') | experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698