pdf.js/src/core.js

494 lines
16 KiB
JavaScript
Raw Normal View History

2011-10-25 10:13:12 +09:00
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
2012-09-01 07:48:21 +09:00
/* Copyright 2012 Mozilla Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2013-02-03 07:49:19 +09:00
/* globals assertWellFormed, calculateMD5, Catalog, error, info, isArray,
isArrayBuffer, isDict, isName, isStream, isString, Lexer,
Linearization, NullStream, PartialEvaluator, shadow, Stream,
2013-02-07 08:19:29 +09:00
StreamsSequenceStream, stringToPDFString, TODO, Util, warn, XRef,
2013-03-21 17:04:44 +09:00
MissingDataException, Promise, Annotation */
2011-10-25 10:13:12 +09:00
2011-10-26 10:18:22 +09:00
'use strict';
var globalScope = (typeof window === 'undefined') ? this : window;
var isWorker = (typeof window == 'undefined');
var ERRORS = 0, WARNINGS = 1, INFOS = 5;
2011-10-25 10:13:12 +09:00
var verbosity = WARNINGS;
2011-10-26 07:43:41 +09:00
2011-10-27 03:46:57 +09:00
// The global PDFJS object exposes the API
2011-10-26 07:43:41 +09:00
// In production, it will be declared outside a global wrapper
// In development, it will be declared here
2011-10-27 03:46:57 +09:00
if (!globalScope.PDFJS) {
globalScope.PDFJS = {};
2011-10-26 07:43:41 +09:00
}
2012-02-16 07:55:16 +09:00
globalScope.PDFJS.pdfBug = false;
2011-10-25 10:13:12 +09:00
2011-12-09 07:18:43 +09:00
var Page = (function PageClosure() {
function Page(pdfManager, xref, pageIndex, pageDict, ref) {
this.pdfManager = pdfManager;
this.pageIndex = pageIndex;
2011-10-25 10:13:12 +09:00
this.pageDict = pageDict;
this.xref = xref;
this.ref = ref;
this.idCounters = {
font: 0,
obj: 0
};
2011-10-25 10:13:12 +09:00
}
2011-12-09 07:18:43 +09:00
Page.prototype = {
getPageProp: function Page_getPageProp(key) {
return this.pageDict.get(key);
2011-10-25 10:13:12 +09:00
},
inheritPageProp: function Page_inheritPageProp(key) {
2011-10-25 10:13:12 +09:00
var dict = this.pageDict;
var obj = dict.get(key);
while (obj === undefined) {
dict = dict.get('Parent');
2011-10-25 10:13:12 +09:00
if (!dict)
break;
obj = dict.get(key);
}
return obj;
},
get content() {
2013-04-20 05:07:08 +09:00
return this.getPageProp('Contents');
2011-10-25 10:13:12 +09:00
},
get resources() {
return shadow(this, 'resources', this.inheritPageProp('Resources'));
},
get mediaBox() {
var obj = this.inheritPageProp('MediaBox');
// Reset invalid media box to letter size.
if (!isArray(obj) || obj.length !== 4)
obj = [0, 0, 612, 792];
return shadow(this, 'mediaBox', obj);
},
get view() {
var mediaBox = this.mediaBox;
2012-02-15 04:48:58 +09:00
var cropBox = this.inheritPageProp('CropBox');
if (!isArray(cropBox) || cropBox.length !== 4)
return shadow(this, 'view', mediaBox);
2012-02-15 04:48:58 +09:00
// From the spec, 6th ed., p.963:
// "The crop, bleed, trim, and art boxes should not ordinarily
// extend beyond the boundaries of the media box. If they do, they are
// effectively reduced to their intersection with the media box."
cropBox = Util.intersect(cropBox, mediaBox);
if (!cropBox)
return shadow(this, 'view', mediaBox);
2012-02-15 04:48:58 +09:00
return shadow(this, 'view', cropBox);
2011-10-25 10:13:12 +09:00
},
2013-03-21 17:04:44 +09:00
get annotationRefs() {
return shadow(this, 'annotationRefs', this.inheritPageProp('Annots'));
2011-10-25 10:13:12 +09:00
},
get rotate() {
var rotate = this.inheritPageProp('Rotate') || 0;
// Normalize rotation so it's a multiple of 90 and between 0 and 270
if (rotate % 90 !== 0) {
2011-10-25 10:13:12 +09:00
rotate = 0;
} else if (rotate >= 360) {
rotate = rotate % 360;
} else if (rotate < 0) {
// The spec doesn't cover negatives, assume its counterclockwise
// rotation. The following is the other implementation of modulo.
rotate = ((rotate % 360) + 360) % 360;
}
return shadow(this, 'rotate', rotate);
},
getContentStream: function Page_getContentStream() {
var content = this.content;
2013-04-20 05:07:08 +09:00
var stream;
2011-10-25 10:13:12 +09:00
if (isArray(content)) {
// fetching items
var xref = this.xref;
2011-10-25 10:13:12 +09:00
var i, n = content.length;
2011-12-11 08:24:54 +09:00
var streams = [];
2011-10-25 10:13:12 +09:00
for (i = 0; i < n; ++i)
streams.push(xref.fetchIfRef(content[i]));
2013-04-20 05:07:08 +09:00
stream = new StreamsSequenceStream(streams);
} else if (isStream(content)) {
2013-04-20 05:07:08 +09:00
stream = content;
} else {
// replacing non-existent page content with empty one
2013-04-20 05:07:08 +09:00
stream = new NullStream();
2011-10-25 10:13:12 +09:00
}
2013-04-20 05:07:08 +09:00
return stream;
},
getOperatorList: function Page_getOperatorList(handler) {
var self = this;
2013-04-19 02:41:33 +09:00
var promise = new Promise();
function reject(e) {
promise.reject(e);
}
2013-04-19 02:41:33 +09:00
var pageListPromise = new Promise();
var pdfManager = this.pdfManager;
var contentStreamPromise = pdfManager.ensure(this, 'getContentStream',
[]);
var resourcesPromise = pdfManager.ensure(this, 'resources');
var partialEvaluator = new PartialEvaluator(
pdfManager, this.xref, handler,
this.pageIndex, 'p' + this.pageIndex + '_',
this.idCounters);
2013-04-19 02:41:33 +09:00
var dataPromises = Promise.all(
[contentStreamPromise, resourcesPromise], reject);
dataPromises.then(function(data) {
var contentStream = data[0];
var resources = data[1];
pdfManager.ensure(partialEvaluator, 'getOperatorList',
[contentStream, resources]).then(
function(opListPromise) {
opListPromise.then(function(data) {
pageListPromise.resolve(data);
});
},
reject
);
});
2013-03-21 17:04:44 +09:00
var annotationsPromise = pdfManager.ensure(this, 'annotations');
Promise.all([pageListPromise, annotationsPromise]).then(function(datas) {
var pageData = datas[0];
var pageQueue = pageData.queue;
var annotations = datas[1];
if (annotations.length === 0) {
PartialEvaluator.optimizeQueue(pageQueue);
promise.resolve(pageData);
return;
}
var dependencies = pageData.dependencies;
var annotationsReadyPromise = Annotation.appendToOperatorList(
annotations, pageQueue, pdfManager, dependencies, partialEvaluator);
annotationsReadyPromise.then(function () {
PartialEvaluator.optimizeQueue(pageQueue);
promise.resolve(pageData);
}, reject);
}, reject);
2013-03-21 17:04:44 +09:00
return promise;
2011-10-25 10:13:12 +09:00
},
2012-04-09 00:57:55 +09:00
extractTextContent: function Page_extractTextContent() {
2011-12-11 08:24:54 +09:00
var handler = {
2011-12-15 12:42:06 +09:00
on: function nullHandlerOn() {},
send: function nullHandlerSend() {}
2011-12-11 08:24:54 +09:00
};
var self = this;
2013-04-19 02:41:33 +09:00
var textContentPromise = new Promise();
var pdfManager = this.pdfManager;
var contentStreamPromise = pdfManager.ensure(this, 'getContentStream',
[]);
2013-04-19 02:41:33 +09:00
var resourcesPromise = new Promise();
pdfManager.ensure(this, 'resources').then(function(resources) {
pdfManager.ensure(self.xref, 'fetchIfRef', [resources]).then(
function(resources) {
resourcesPromise.resolve(resources);
}
);
});
2013-04-19 02:41:33 +09:00
var dataPromises = Promise.all([contentStreamPromise,
resourcesPromise]);
dataPromises.then(function(data) {
var contentStream = data[0];
var resources = data[1];
var partialEvaluator = new PartialEvaluator(
pdfManager, self.xref, handler,
self.pageIndex, 'p' + self.pageIndex + '_',
self.idCounters);
partialEvaluator.getTextContent(
contentStream, resources).then(function(bidiTexts) {
textContentPromise.resolve({
bidiTexts: bidiTexts
});
});
});
2011-12-11 08:24:54 +09:00
return textContentPromise;
2011-10-25 10:13:12 +09:00
},
2013-03-21 17:04:44 +09:00
getAnnotationsData: function Page_getAnnotationsData() {
var annotations = this.annotations;
var annotationsData = [];
for (var i = 0, n = annotations.length; i < n; ++i) {
annotationsData.push(annotations[i].getData());
}
2013-03-21 17:04:44 +09:00
return annotationsData;
},
2013-03-21 17:04:44 +09:00
get annotations() {
var annotations = [];
var annotationRefs = this.annotationRefs || [];
for (var i = 0, n = annotationRefs.length; i < n; ++i) {
var annotationRef = annotationRefs[i];
var annotation = Annotation.fromRef(this.xref, annotationRef);
if (annotation) {
annotations.push(annotation);
}
2011-10-25 10:13:12 +09:00
}
2013-03-21 17:04:44 +09:00
return shadow(this, 'annotations', annotations);
2011-10-25 10:13:12 +09:00
}
};
2011-12-09 07:18:43 +09:00
return Page;
2011-10-25 10:13:12 +09:00
})();
/**
2012-04-13 04:11:22 +09:00
* The `PDFDocument` holds all the data of the PDF file. Compared to the
2011-10-25 10:13:12 +09:00
* `PDFDoc`, this one doesn't have any job management code.
2012-04-13 04:11:22 +09:00
* Right now there exists one PDFDocument on the main thread + one object
2011-10-25 10:13:12 +09:00
* for each worker. If there is no worker support enabled, there are two
2012-04-13 04:11:22 +09:00
* `PDFDocument` objects on the main thread created.
2011-10-25 10:13:12 +09:00
*/
2012-04-13 04:11:22 +09:00
var PDFDocument = (function PDFDocumentClosure() {
function PDFDocument(pdfManager, arg, password) {
2011-10-25 10:13:12 +09:00
if (isStream(arg))
init.call(this, pdfManager, arg, password);
2011-10-25 10:13:12 +09:00
else if (isArrayBuffer(arg))
init.call(this, pdfManager, new Stream(arg), password);
2011-10-25 10:13:12 +09:00
else
2012-04-13 04:11:22 +09:00
error('PDFDocument: Unknown argument type');
2011-10-25 10:13:12 +09:00
}
function init(pdfManager, stream, password) {
2011-10-25 10:13:12 +09:00
assertWellFormed(stream.length > 0, 'stream must have data');
this.pdfManager = pdfManager;
2011-10-25 10:13:12 +09:00
this.stream = stream;
2013-02-07 08:19:29 +09:00
var xref = new XRef(this.stream, password);
this.xref = xref;
2011-10-25 10:13:12 +09:00
}
function find(stream, needle, limit, backwards) {
var pos = stream.pos;
var end = stream.end;
var str = '';
if (pos + limit > end)
limit = end - pos;
for (var n = 0; n < limit; ++n)
str += stream.getChar();
stream.pos = pos;
var index = backwards ? str.lastIndexOf(needle) : str.indexOf(needle);
if (index == -1)
return false; /* not found */
stream.pos += index;
return true; /* found */
}
2012-08-07 06:32:54 +09:00
var DocumentInfoValidators = {
2012-08-04 08:11:43 +09:00
get entries() {
// Lazily build this since all the validation functions below are not
// defined until after this file loads.
return shadow(this, 'entries', {
Title: isString,
Author: isString,
Subject: isString,
Keywords: isString,
Creator: isString,
Producer: isString,
CreationDate: isString,
ModDate: isString,
Trapped: isName
});
}
};
2012-04-13 04:11:22 +09:00
PDFDocument.prototype = {
2013-02-07 08:19:29 +09:00
parse: function PDFDocument_parse(recoveryMode) {
this.setup(recoveryMode);
this.acroForm = this.catalog.catDict.get('AcroForm');
},
2011-10-25 10:13:12 +09:00
get linearization() {
var length = this.stream.length;
var linearization = false;
2012-07-14 00:00:55 +09:00
if (length) {
try {
linearization = new Linearization(this.stream);
2013-02-07 08:19:29 +09:00
if (linearization.length != length) {
linearization = false;
2013-02-07 08:19:29 +09:00
}
2012-07-14 00:00:55 +09:00
} catch (err) {
2013-02-07 08:19:29 +09:00
if (err instanceof MissingDataException) {
throw err;
}
2013-05-18 04:37:20 +09:00
info('The linearization data is not available ' +
'or unreadable PDF data is found');
linearization = false;
}
2011-10-25 10:13:12 +09:00
}
// shadow the prototype getter with a data property
return shadow(this, 'linearization', linearization);
},
get startXRef() {
var stream = this.stream;
var startXRef = 0;
var linearization = this.linearization;
if (linearization) {
// Find end of first obj.
stream.reset();
if (find(stream, 'endobj', 1024))
startXRef = stream.pos + 6;
} else {
2011-12-05 07:00:22 +09:00
// Find startxref by jumping backward from the end of the file.
var step = 1024;
var found = false, pos = stream.end;
2011-12-05 07:00:22 +09:00
while (!found && pos > 0) {
pos -= step - 'startxref'.length;
if (pos < 0)
pos = 0;
stream.pos = pos;
2011-12-05 07:00:22 +09:00
found = find(stream, 'startxref', step, true);
}
if (found) {
2011-10-25 10:13:12 +09:00
stream.skip(9);
var ch;
do {
ch = stream.getChar();
} while (Lexer.isSpace(ch));
var str = '';
while ((ch - '0') <= 9) {
str += ch;
ch = stream.getChar();
}
startXRef = parseInt(str, 10);
if (isNaN(startXRef))
startXRef = 0;
}
}
// shadow the prototype getter with a data property
return shadow(this, 'startXRef', startXRef);
},
get mainXRefEntriesOffset() {
var mainXRefEntriesOffset = 0;
var linearization = this.linearization;
if (linearization)
mainXRefEntriesOffset = linearization.mainXRefEntriesOffset;
// shadow the prototype getter with a data property
return shadow(this, 'mainXRefEntriesOffset', mainXRefEntriesOffset);
},
// Find the header, remove leading garbage and setup the stream
// starting from the header.
2012-04-13 04:11:22 +09:00
checkHeader: function PDFDocument_checkHeader() {
2011-10-25 10:13:12 +09:00
var stream = this.stream;
stream.reset();
if (find(stream, '%PDF-', 1024)) {
// Found the header, trim off any garbage before it.
stream.moveStart();
2012-11-06 02:12:17 +09:00
// Reading file format version
var MAX_VERSION_LENGTH = 12;
var version = '', ch;
while ((ch = stream.getChar()) > ' ') {
if (version.length >= MAX_VERSION_LENGTH) {
break;
}
version += ch;
}
// removing "%PDF-"-prefix
this.pdfFormatVersion = version.substring(5);
2011-10-25 10:13:12 +09:00
return;
}
// May not be a PDF file, continue anyway.
},
2013-02-07 08:19:29 +09:00
parseStartXRef: function PDFDocument_parseStartXRef() {
var startXRef = this.startXRef;
this.xref.setStartXRef(startXRef);
},
setup: function PDFDocument_setup(recoveryMode) {
this.xref.parse(recoveryMode);
this.catalog = new Catalog(this.pdfManager, this.xref);
2011-10-25 10:13:12 +09:00
},
get numPages() {
var linearization = this.linearization;
var num = linearization ? linearization.numPages : this.catalog.numPages;
// shadow the prototype getter
return shadow(this, 'numPages', num);
},
2013-02-07 08:19:29 +09:00
get documentInfo() {
2012-12-01 08:36:39 +09:00
var docInfo = {
2013-02-01 06:46:44 +09:00
PDFFormatVersion: this.pdfFormatVersion,
IsAcroFormPresent: !!this.acroForm
2012-12-01 08:36:39 +09:00
};
if (this.xref.trailer.has('Info')) {
var infoDict = this.xref.trailer.get('Info');
2012-08-07 06:32:54 +09:00
var validEntries = DocumentInfoValidators.entries;
2012-08-04 08:11:43 +09:00
// Only fill the document info with valid entries from the spec.
for (var key in validEntries) {
if (infoDict.has(key)) {
var value = infoDict.get(key);
// Make sure the value conforms to the spec.
if (validEntries[key](value)) {
docInfo[key] = typeof value !== 'string' ? value :
stringToPDFString(value);
} else {
info('Bad value in document info for "' + key + '"');
}
}
}
}
2013-02-07 08:19:29 +09:00
return shadow(this, 'documentInfo', docInfo);
},
2013-02-07 08:19:29 +09:00
get fingerprint() {
2012-03-27 07:14:59 +09:00
var xref = this.xref, fileID;
if (xref.trailer.has('ID')) {
fileID = '';
var id = xref.trailer.get('ID')[0];
2012-03-27 07:14:59 +09:00
id.split('').forEach(function(el) {
fileID += Number(el.charCodeAt(0)).toString(16);
});
} else {
// If we got no fileID, then we generate one,
// from the first 100 bytes of PDF
var data = this.stream.bytes.subarray(0, 100);
var hash = calculateMD5(data, 0, data.length);
2012-03-27 07:14:59 +09:00
fileID = '';
for (var i = 0, length = hash.length; i < length; i++) {
2012-03-27 07:14:59 +09:00
fileID += Number(hash[i]).toString(16);
}
}
2012-03-27 07:14:59 +09:00
2013-02-07 08:19:29 +09:00
return shadow(this, 'fingerprint', fileID);
},
2013-02-07 08:19:29 +09:00
traversePages: function PDFDocument_traversePages() {
this.catalog.traversePages();
},
getPage: function PDFDocument_getPage(pageIndex) {
return this.catalog.getPage(pageIndex);
2011-10-25 10:13:12 +09:00
}
};
2012-04-13 04:11:22 +09:00
return PDFDocument;
2011-10-25 10:13:12 +09:00
})();