PDFContents.java
17.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.internal.io.ByteWriterFactory
* com.adobe.internal.io.ByteWriterFactory$Fixed
* com.adobe.internal.io.stream.IO
* com.adobe.internal.io.stream.InputByteStream
* com.adobe.internal.io.stream.OutputByteStream
* com.adobe.internal.io.stream.StreamManager
* com.adobe.internal.pdftoolkit.core.cos.CosArray
* com.adobe.internal.pdftoolkit.core.cos.CosDocument
* com.adobe.internal.pdftoolkit.core.cos.CosObject
* com.adobe.internal.pdftoolkit.core.cos.CosStream
* com.adobe.internal.pdftoolkit.core.exceptions.PDFCosParseException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFIOException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidContentException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidDocumentException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFSecurityException
*/
package com.adobe.internal.pdftoolkit.pdf.document;
import com.adobe.internal.io.ByteWriterFactory;
import com.adobe.internal.io.stream.IO;
import com.adobe.internal.io.stream.InputByteStream;
import com.adobe.internal.io.stream.OutputByteStream;
import com.adobe.internal.io.stream.StreamManager;
import com.adobe.internal.pdftoolkit.core.cos.CosArray;
import com.adobe.internal.pdftoolkit.core.cos.CosDocument;
import com.adobe.internal.pdftoolkit.core.cos.CosObject;
import com.adobe.internal.pdftoolkit.core.cos.CosStream;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFCosParseException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFIOException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidContentException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidDocumentException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFSecurityException;
import com.adobe.internal.pdftoolkit.pdf.document.PDFCosObject;
import com.adobe.internal.pdftoolkit.pdf.document.PDFDocument;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.ListIterator;
import java.util.NoSuchElementException;
public class PDFContents
extends PDFCosObject {
private PDFContents(CosObject cosObject) throws PDFInvalidDocumentException {
super(cosObject);
}
public static PDFContents getInstance(CosObject cosObject) throws PDFInvalidDocumentException {
if (PDFCosObject.checkNullCosObject(cosObject) == null) {
return null;
}
PDFContents pdfObject = PDFCosObject.getCachedInstance(cosObject, PDFContents.class);
if (pdfObject == null) {
pdfObject = new PDFContents(cosObject);
}
return pdfObject;
}
public static PDFContents newInstance(PDFDocument pdfDocument) throws PDFIOException, PDFSecurityException, PDFInvalidDocumentException {
CosStream cosObject = PDFCosObject.newCosStream(pdfDocument);
return new PDFContents((CosObject)cosObject);
}
public static PDFContents newInstanceArray(PDFDocument pdfDocument) throws PDFIOException, PDFSecurityException, PDFInvalidDocumentException {
CosArray cosObject = PDFCosObject.newCosArray(pdfDocument);
return new PDFContents((CosObject)cosObject);
}
public InputByteStream getContents() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
try {
if (this.getCosObject() instanceof CosStream) {
return this.getCosStream().getStreamDecoded();
}
if (this.getCosObject() instanceof CosArray) {
InputByteStream[] ibsArray = this.getStreamsFromCosArray(this.getCosArray());
return this.getStreamManager().getInputByteStream(ibsArray);
}
throw new PDFInvalidContentException("PDFContents should either be a content stream or an array of content streams.");
}
catch (IOException e) {
throw new PDFIOException((Throwable)e);
}
}
public boolean hasContents() {
if (this.getCosObject() instanceof CosStream || this.getCosObject() instanceof CosArray) {
return true;
}
return false;
}
private InputByteStream[] getStreamsFromCosArray(CosArray cosArray) throws PDFIOException {
try {
if (cosArray == null) {
return null;
}
ArrayList<InputByteStream> tempByteStreamList = new ArrayList<InputByteStream>();
for (int i = 0; i < cosArray.size(); ++i) {
try {
if (i > 0) {
InputByteStream lastStream = (InputByteStream)tempByteStreamList.get(tempByteStreamList.size() - 1);
lastStream.seek(lastStream.length() - 1);
int c = lastStream.read();
if (c != 48 && c != 10) {
byte[] endArr = new byte[]{10};
InputByteStream endstream = this.getStreamManager().getInputByteStream(endArr);
tempByteStreamList.add(endstream);
}
}
tempByteStreamList.add(cosArray.getStream(i));
continue;
}
catch (PDFException e) {
throw new PDFIOException("Error with Cos Array (" + e.getMessage() + ").", (Throwable)e);
}
}
InputByteStream[] finalByteStreams = new InputByteStream[tempByteStreamList.size()];
for (int k = 0; k < finalByteStreams.length; ++k) {
if (tempByteStreamList.get(k) == null) continue;
finalByteStreams[k] = (InputByteStream)tempByteStreamList.get(k);
}
return finalByteStreams;
}
catch (IOException e) {
throw new PDFIOException((Throwable)e);
}
}
private void appendStream(InputByteStream contents, CosStream cosStream) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException, IOException {
InputByteStream istream = cosStream.getStreamDecoded();
if (istream == null || istream.length() == 0) {
if (istream != null) {
istream.close();
}
cosStream.newDataDecoded(contents);
return;
}
OutputByteStream outputStream = this.getStreamManager().getOutputByteStreamClearDocument(ByteWriterFactory.Fixed.GROWABLE, istream.length());
IO.copy((InputByteStream)istream, (OutputByteStream)outputStream);
outputStream.write(13);
IO.copy((InputByteStream)contents, (OutputByteStream)outputStream);
InputByteStream newStream = outputStream.closeAndConvert();
outputStream = null;
cosStream.newDataDecoded(newStream);
newStream = null;
}
/*
* WARNING - Removed try catching itself - possible behaviour change.
*/
private void prependStream(InputByteStream contents, CosStream cosStream) throws PDFCosParseException, PDFInvalidDocumentException, PDFIOException, PDFSecurityException, IOException {
InputByteStream istream = null;
try {
istream = cosStream.getStreamDecoded();
}
catch (Exception e) {
try {
if (contents != null) {
contents.close();
}
}
catch (IOException f) {
// empty catch block
}
throw new PDFIOException((Throwable)e);
}
if (istream == null || istream.length() == 0) {
try {
if (istream != null) {
istream.close();
}
}
catch (IOException e) {
try {
if (contents != null) {
contents.close();
}
}
catch (IOException f) {
// empty catch block
}
throw e;
}
cosStream.newDataDecoded(contents);
return;
}
OutputByteStream outputStream = null;
try {
outputStream = this.getStreamManager().getOutputByteStreamClearDocument(ByteWriterFactory.Fixed.GROWABLE, -1);
IO.copy((InputByteStream)contents, (OutputByteStream)outputStream);
IO.copy((InputByteStream)istream, (OutputByteStream)outputStream);
}
finally {
try {
if (contents != null) {
contents.close();
}
}
finally {
if (istream != null) {
istream.close();
}
}
}
istream = null;
InputByteStream newStream = outputStream.closeAndConvert();
outputStream = null;
cosStream.newDataDecoded(newStream);
newStream = null;
}
public void addContents(InputByteStream contents) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
try {
if (contents.length() > 0) {
if (this.getCosObject() instanceof CosStream) {
this.appendStream(contents, this.getCosStream());
} else if (this.getCosObject() instanceof CosArray) {
CosArray cosArray = this.getCosArray();
CosStream newStream = PDFCosObject.newCosStream(this.getPDFDocument());
newStream.newDataDecoded(contents);
cosArray.add((CosObject)newStream);
}
}
}
catch (IOException e) {
throw new PDFIOException((Throwable)e);
}
}
public void setContents(InputByteStream contents) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (this.getCosObject() instanceof CosStream) {
this.getCosStream().newDataDecoded(contents);
} else if (this.getCosObject() instanceof CosArray) {
CosArray cosArray = this.getCosArray();
Iterator itr = cosArray.iterator();
while (itr.hasNext()) {
itr.next();
itr.remove();
}
CosStream stream = cosArray.getDocument().createCosStream();
stream.newDataDecoded(contents);
cosArray.add((CosObject)stream);
}
}
public void prependContents(InputByteStream contents) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
block18 : {
try {
if (this.getCosObject() instanceof CosStream) {
this.prependStream(contents, this.getCosStream());
break block18;
}
if (!(this.getCosObject() instanceof CosArray)) break block18;
CosStream newStream = null;
CosArray cosArray = null;
try {
cosArray = this.getCosArray();
newStream = PDFCosObject.newCosStream(this.getPDFDocument());
}
catch (PDFInvalidDocumentException e) {
try {
if (contents != null) {
contents.close();
}
}
catch (IOException f) {
// empty catch block
}
throw e;
}
catch (PDFIOException e) {
try {
if (contents != null) {
contents.close();
}
}
catch (IOException f) {
// empty catch block
}
throw e;
}
catch (PDFSecurityException e) {
try {
if (contents != null) {
contents.close();
}
}
catch (IOException f) {
// empty catch block
}
throw e;
}
newStream.newDataDecoded(contents);
int arraySize = cosArray.size();
if (0 < arraySize) {
CosStream lastStream = cosArray.getCosStream(arraySize - 1);
cosArray.add(arraySize, (CosObject)lastStream);
for (int i = arraySize - 1; 0 < i; --i) {
cosArray.set(i, cosArray.get(i - 1));
}
}
cosArray.set(0, (CosObject)newStream);
}
catch (IOException e) {
throw new PDFIOException((Throwable)e);
}
}
}
public PDFContentStreamsIterator listIterator() {
return new PDFContentStreamsIterator();
}
public void setOutputFiltersList(CosArray filters) throws PDFCosParseException, PDFIOException, IOException, PDFSecurityException {
CosObject obj = this.getCosObject();
if (obj instanceof CosStream) {
CosStream str = (CosStream)obj;
str.setOutputFiltersList(filters);
}
if (obj instanceof CosArray) {
CosArray arr = (CosArray)obj;
for (CosStream str : arr) {
str.setOutputFiltersList(filters);
}
}
}
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public class PDFContentStreamsIterator
implements ListIterator<InputByteStream> {
private boolean isArray;
private int arraySize;
private int nextIndex;
public ListIterator arrayIter;
PDFContentStreamsIterator() {
if (PDFContents.this.getCosObject() instanceof CosArray) {
this.isArray = true;
this.arraySize = PDFContents.this.getCosArray().size();
this.arrayIter = PDFContents.this.getCosArray().listIterator();
} else if (PDFContents.this.getCosObject() instanceof CosStream) {
this.isArray = false;
this.arraySize = 1;
this.arrayIter = null;
} else {
this.isArray = false;
this.arraySize = 0;
this.arrayIter = null;
}
this.nextIndex = 0;
}
@Override
public int previousIndex() {
if (this.isArray) {
return this.arrayIter.previousIndex();
}
return this.nextIndex > 0 ? 0 : -1;
}
@Override
public int nextIndex() {
if (this.isArray) {
return this.arrayIter.nextIndex();
}
return this.nextIndex < this.arraySize ? this.nextIndex : this.arraySize;
}
@Override
public boolean hasNext() {
if (this.isArray) {
return this.arrayIter.hasNext();
}
return this.nextIndex < this.arraySize;
}
@Override
public InputByteStream next() {
try {
if (this.isArray) {
return ((CosStream)this.arrayIter.next()).getStreamDecoded();
}
if (this.hasNext()) {
++this.nextIndex;
return PDFContents.this.getCosStream().getStreamDecoded();
}
throw new NoSuchElementException();
}
catch (PDFException e) {
NoSuchElementException newException = new NoSuchElementException("Error occured while getting next element.");
newException.initCause((Throwable)e);
throw newException;
}
}
@Override
public boolean hasPrevious() {
if (this.isArray) {
return this.arrayIter.hasPrevious();
}
return this.nextIndex > 0;
}
@Override
public InputByteStream previous() {
try {
if (this.isArray) {
return ((CosStream)this.arrayIter.previous()).getStreamDecoded();
}
if (this.hasPrevious()) {
--this.nextIndex;
return PDFContents.this.getCosStream().getStreamDecoded();
}
throw new NoSuchElementException();
}
catch (PDFException e) {
NoSuchElementException newException = new NoSuchElementException("Error occured while getting next element.");
newException.initCause((Throwable)e);
throw newException;
}
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
@Override
public void set(InputByteStream o) {
throw new UnsupportedOperationException();
}
@Override
public void add(InputByteStream o) {
throw new UnsupportedOperationException();
}
}
}