2011-06-01 03:22:05 +09:00
|
|
|
|
|
2011-06-01 18:52:10 +09:00
|
|
|
|
var Type1Parser = function(aAsciiStream, aBinaryStream) {
|
|
|
|
|
var lexer = new Lexer(aAsciiStream);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
|
2011-06-01 18:52:10 +09:00
|
|
|
|
// Turn on this flag for additional debugging logs
|
|
|
|
|
var debug = false;
|
2011-06-01 03:22:05 +09:00
|
|
|
|
|
2011-06-01 18:52:10 +09:00
|
|
|
|
var dump = function(aData) {
|
|
|
|
|
if (debug)
|
|
|
|
|
log(aData);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Decrypt a Sequence of Ciphertext Bytes to Produce the Original Sequence
|
|
|
|
|
* of Plaintext Bytes. The function took a key as a parameter which can be
|
|
|
|
|
* for decrypting the eexec block of for decoding charStrings.
|
|
|
|
|
*/
|
|
|
|
|
var kEexecEncryptionKey = 55665;
|
|
|
|
|
var kCharStringsEncryptionKey = 4330;
|
|
|
|
|
|
|
|
|
|
function decrypt(aStream, aKey, aDiscardNumber) {
|
|
|
|
|
var r = aKey, c1 = 52845, c2 = 22719;
|
|
|
|
|
|
|
|
|
|
var decryptedString = [];
|
|
|
|
|
var value = null;
|
|
|
|
|
|
|
|
|
|
var count = aStream.length;
|
|
|
|
|
for (var i = 0; i < count; i++) {
|
|
|
|
|
value = aStream.getByte();
|
|
|
|
|
decryptedString[i] = String.fromCharCode(value ^ (r >> 8));
|
|
|
|
|
r = ((value + r) * c1 + c2) & ((1 << 16) - 1);
|
|
|
|
|
}
|
|
|
|
|
return decryptedString.slice(aDiscardNumber);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2011-06-01 03:22:05 +09:00
|
|
|
|
* The operand stack holds arbitrary PostScript objects that are the operands
|
|
|
|
|
* and results of PostScript operators being executed. The interpreter pushes
|
|
|
|
|
* objects on the operand stack when it encounters them as literal data in a
|
|
|
|
|
* program being executed. When an operator requires one or more operands, it
|
|
|
|
|
* obtains them by popping them off the top of the operand stack. When an
|
|
|
|
|
* operator returns one or more results, it does so by pushing them on the
|
|
|
|
|
* operand stack.
|
|
|
|
|
*/
|
2011-06-01 18:52:10 +09:00
|
|
|
|
var operandStack = {
|
|
|
|
|
__innerStack__: [],
|
2011-06-01 03:22:05 +09:00
|
|
|
|
|
2011-06-01 18:52:10 +09:00
|
|
|
|
push: function(aOperand) {
|
|
|
|
|
this.__innerStack__.push(aOperand);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
pop: function() {
|
|
|
|
|
return this.__innerStack__.pop();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
peek: function() {
|
|
|
|
|
return this.__innerStack__[this.__innerStack__.length - 1];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
get length() {
|
|
|
|
|
return this.__innerStack__.length;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Flag indicating if the topmost operand of the operandStack is an array
|
|
|
|
|
var operandIsArray = false;
|
2011-06-01 03:22:05 +09:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The dictionary stack holds only dictionary objects. The current set of
|
|
|
|
|
* dictionaries on the dictionary stack defines the environment for all
|
|
|
|
|
* implicit name searches, such as those that occur when the interpreter
|
|
|
|
|
* encounters an executable name. The role of the dictionary stack is
|
|
|
|
|
* introduced in Section 3.3, “Data Types and Objects,” and is further
|
|
|
|
|
* explained in Section 3.5, “Execution.” of the PostScript Language
|
|
|
|
|
* Reference.
|
|
|
|
|
*/
|
|
|
|
|
var systemDict = new Dict(),
|
|
|
|
|
globalDict = new Dict(),
|
|
|
|
|
userDict = new Dict();
|
|
|
|
|
|
|
|
|
|
var dictionaryStack = {
|
|
|
|
|
__innerStack__: [systemDict, globalDict],
|
|
|
|
|
|
|
|
|
|
push: function(aDictionary) {
|
|
|
|
|
this.__innerStack__.push(aDictionary);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
pop: function() {
|
|
|
|
|
if (this.__innerStack__.length == 2)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
return this.__innerStack__.pop();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
peek: function() {
|
|
|
|
|
return this.__innerStack__[this.__innerStack__.length - 1];
|
2011-06-01 18:52:10 +09:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
get length() {
|
|
|
|
|
return this.__innerStack__.length;
|
2011-06-01 03:22:05 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The execution stack holds executable objects (mainly procedures and files)
|
|
|
|
|
* that are in intermediate stages of execution. At any point in the
|
|
|
|
|
* execution of a PostScript program, this stack represents the program’s
|
|
|
|
|
* call stack. Whenever the interpreter suspends execution of an object to
|
|
|
|
|
* execute some other object, it pushes the new object on the execution
|
|
|
|
|
* stack. When the interpreter finishes executing an object, it pops that
|
|
|
|
|
* object off the execution stack and resumes executing the suspended object
|
|
|
|
|
* beneath it.
|
|
|
|
|
*/
|
|
|
|
|
var executionStack = [];
|
|
|
|
|
|
|
|
|
|
this.getObj = function() {
|
|
|
|
|
var obj = lexer.getObj();
|
2011-06-01 18:52:10 +09:00
|
|
|
|
|
|
|
|
|
if (operandIsArray && !IsCmd(obj, "}") && !IsCmd(obj, "]")) {
|
|
|
|
|
operandStack.peek().push(obj);
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "{") || IsCmd(obj, "[")) {
|
|
|
|
|
dump("Start Array: " + obj);
|
|
|
|
|
operandStack.push([]);
|
|
|
|
|
operandIsArray = true;
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "}") || IsCmd(obj, "]")) {
|
|
|
|
|
dump("End Array: " + obj);
|
|
|
|
|
operandIsArray = false;
|
2011-06-01 03:22:05 +09:00
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsBool(obj) || IsInt(obj) || IsNum(obj) || IsString(obj)) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("Value: " + obj);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
operandStack.push(obj);
|
|
|
|
|
this.getObj();
|
2011-06-01 18:52:10 +09:00
|
|
|
|
} else if (IsCmd(obj, "dup")) {
|
|
|
|
|
dump("Duplicate");
|
|
|
|
|
operandStack.push(operandStack.peek());
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "currentdict")) {
|
|
|
|
|
dump("currentdict");
|
|
|
|
|
operandStack.push(dictionaryStack.peek());
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "systemdict")) {
|
|
|
|
|
dump("systemdict");
|
|
|
|
|
operandStack.push(systemDict);
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "readonly") || IsCmd(obj, "executeonly") ||
|
|
|
|
|
IsCmd(obj, "currentfile")) {
|
2011-06-01 03:22:05 +09:00
|
|
|
|
// Do nothing for the moment
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsName(obj)) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("Name: " + obj.name);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
operandStack.push(obj.name);
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "dict")) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("Dict: " + obj);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
var size = operandStack.pop();
|
2011-06-01 18:52:10 +09:00
|
|
|
|
var dict = new Dict(size);
|
|
|
|
|
operandStack.push(dict);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "begin")) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("begin a dictionary");
|
|
|
|
|
dictionaryStack.push(operandStack.pop());
|
2011-06-01 03:22:05 +09:00
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "end")) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("Ending a dictionary");
|
2011-06-01 03:22:05 +09:00
|
|
|
|
dictionaryStack.pop();
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "def")) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
var value = operandStack.pop();
|
2011-06-01 03:22:05 +09:00
|
|
|
|
var key = operandStack.pop();
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("def: " + key + " = " + value);
|
|
|
|
|
dictionaryStack.peek().set(key, value);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "eexec")) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
// All the first segment data has been read, decrypt the second segment
|
|
|
|
|
// and start interpreting it in order to decode it
|
|
|
|
|
var eexecString = decrypt(aBinaryStream, kEexecEncryptionKey, 4).join("");
|
|
|
|
|
lexer = new Lexer(new StringStream(eexecString));
|
|
|
|
|
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "known")) {
|
|
|
|
|
dump("known");
|
|
|
|
|
var name = operandStack.pop();
|
|
|
|
|
var dict = operandStack.pop();
|
|
|
|
|
// returns dict.hasKey(name);
|
|
|
|
|
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "RD")) {
|
|
|
|
|
dump("RD");
|
|
|
|
|
var size = operandStack.pop();
|
|
|
|
|
var key = operandStack.pop();
|
|
|
|
|
|
|
|
|
|
var stream = lexer.stream.makeSubStream(lexer.stream.pos, size);
|
|
|
|
|
var charString = decrypt(stream, kCharStringsEncryptionKey, 4).join("");
|
|
|
|
|
|
|
|
|
|
// XXX do we want to store that on the top dictionary or somewhere else
|
|
|
|
|
dictionaryStack.peek().set(key, new StringStream(charString));
|
|
|
|
|
log (new StringStream(charString));
|
|
|
|
|
this.getObj();
|
|
|
|
|
} else if (IsCmd(obj, "LenIV")) {
|
|
|
|
|
error("LenIV: argh! we need to modify the length of discard characters for charStrings");
|
2011-06-01 03:22:05 +09:00
|
|
|
|
} else {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
dump("Getting an unknow token, adding it to the stack just in case");
|
|
|
|
|
dump(obj);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
operandStack.push(obj);
|
|
|
|
|
this.getObj();
|
|
|
|
|
}
|
2011-06-01 18:52:10 +09:00
|
|
|
|
|
|
|
|
|
return operandStack.peek();
|
2011-06-01 03:22:05 +09:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var hack = false;
|
|
|
|
|
|
|
|
|
|
var Type1Font = function(aFontName, aFontFile) {
|
2011-06-01 18:52:10 +09:00
|
|
|
|
// All Type1 font program should begin with the comment %!
|
2011-06-01 03:22:05 +09:00
|
|
|
|
var validHeader = aFontFile.getByte() == 0x25 && aFontFile.getByte() == 0x21;
|
|
|
|
|
if (!validHeader)
|
|
|
|
|
error("Invalid file header");
|
|
|
|
|
|
|
|
|
|
var programType = "PS-AdobeFont";
|
2011-06-01 18:52:10 +09:00
|
|
|
|
for (var i = 0; i < programType.length; i++)
|
2011-06-01 03:22:05 +09:00
|
|
|
|
aFontFile.getChar();
|
|
|
|
|
|
|
|
|
|
// Ignore the '-' separator
|
|
|
|
|
aFontFile.getChar();
|
|
|
|
|
|
|
|
|
|
var version = parseFloat(aFontFile.getChar() + aFontFile.getChar() + aFontFile.getChar());
|
2011-06-01 18:52:10 +09:00
|
|
|
|
|
2011-06-01 03:22:05 +09:00
|
|
|
|
if (!hack) {
|
|
|
|
|
log(aFontName);
|
|
|
|
|
log("Version is: " + version);
|
|
|
|
|
|
|
|
|
|
var ASCIIStream = aFontFile.makeSubStream(0, aFontFile.dict.get("Length1"), aFontFile.dict);
|
|
|
|
|
var binaryStream = aFontFile.makeSubStream(aFontFile.dict.get("Length1"), aFontFile.dict.get("Length2"), aFontFile.dict);
|
|
|
|
|
|
2011-06-01 18:52:10 +09:00
|
|
|
|
this.parser = new Type1Parser(ASCIIStream, binaryStream);
|
2011-06-01 03:22:05 +09:00
|
|
|
|
|
2011-06-01 18:52:10 +09:00
|
|
|
|
var fontDictionary = this.parser.getObj();
|
|
|
|
|
log(fontDictionary + "\t" + "fontInfo: " + fontDictionary.get("FontInfo"));
|
2011-06-01 03:22:05 +09:00
|
|
|
|
hack = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.info = {};
|
|
|
|
|
this.name = aFontName;
|
|
|
|
|
this.encoding = [];
|
|
|
|
|
this.paintType = 0;
|
|
|
|
|
this.fontType = 0;
|
|
|
|
|
this.fontMatrix = [];
|
|
|
|
|
this.fontBBox = [];
|
|
|
|
|
this.uniqueID = 0;
|
|
|
|
|
this.metrics = {};
|
|
|
|
|
this.strokeWidth = 0.0;
|
|
|
|
|
this.private = {};
|
|
|
|
|
this.charStrings = {}
|
|
|
|
|
this.FID = 0;
|
|
|
|
|
};
|
|
|
|
|
|