PDFOCUsage.java
16.3 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.internal.pdftoolkit.core.cos.CosArray
* com.adobe.internal.pdftoolkit.core.cos.CosDictionary
* com.adobe.internal.pdftoolkit.core.cos.CosName
* com.adobe.internal.pdftoolkit.core.cos.CosObject
* com.adobe.internal.pdftoolkit.core.cos.CosString
* com.adobe.internal.pdftoolkit.core.exceptions.PDFIOException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidDocumentException
* com.adobe.internal.pdftoolkit.core.exceptions.PDFSecurityException
* com.adobe.internal.pdftoolkit.core.types.ASName
* com.adobe.internal.pdftoolkit.core.types.ASString
*/
package com.adobe.internal.pdftoolkit.pdf.graphics.optionalcontent;
import com.adobe.internal.pdftoolkit.core.cos.CosArray;
import com.adobe.internal.pdftoolkit.core.cos.CosDictionary;
import com.adobe.internal.pdftoolkit.core.cos.CosName;
import com.adobe.internal.pdftoolkit.core.cos.CosObject;
import com.adobe.internal.pdftoolkit.core.cos.CosString;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFIOException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidDocumentException;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFSecurityException;
import com.adobe.internal.pdftoolkit.core.types.ASName;
import com.adobe.internal.pdftoolkit.core.types.ASString;
import com.adobe.internal.pdftoolkit.pdf.document.PDFCosDictionary;
import com.adobe.internal.pdftoolkit.pdf.document.PDFCosObject;
import com.adobe.internal.pdftoolkit.pdf.document.PDFDocument;
import com.adobe.internal.pdftoolkit.pdf.document.PDFText;
import com.adobe.internal.pdftoolkit.pdf.graphics.optionalcontent.PDFOCContentUsageUserList;
public class PDFOCUsage
extends PDFCosDictionary {
private PDFOCUsage(CosObject cosObject) throws PDFInvalidDocumentException {
super(cosObject);
}
public static PDFOCUsage getInstance(CosObject cosObject) throws PDFInvalidDocumentException {
if (PDFCosObject.checkNullCosObject(cosObject) == null) {
return null;
}
PDFOCUsage pdfObject = PDFCosObject.getCachedInstance(cosObject, PDFOCUsage.class);
if (pdfObject == null) {
pdfObject = new PDFOCUsage(cosObject);
}
return pdfObject;
}
public static PDFOCUsage newInstance(PDFDocument pdfDoc) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
return new PDFOCUsage((CosObject)PDFCosObject.newCosDictionary(pdfDoc));
}
public ASName getUserType() throws PDFIOException, PDFSecurityException, PDFInvalidDocumentException {
CosDictionary userObj = this.getDictionaryDictionaryValue(ASName.k_User);
if (userObj != null) {
return userObj.getName(ASName.k_Type);
}
return null;
}
public void setUserType(UserType userType) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (userType == null) {
CosDictionary userObj = this.getDictionaryDictionaryValue(ASName.k_User);
if (userObj != null) {
userObj.remove(ASName.k_Type);
}
} else {
this.setUserType(userType.getName());
}
}
public CosDictionary getUser() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
return this.getDictionaryDictionaryValue(ASName.k_User);
}
public void setUser(ASName userType, PDFOCContentUsageUserList userName) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (userType == null || userName == null) {
return;
}
CosDictionary userObj = PDFCosObject.newCosDictionary(this.getPDFDocument());
userObj.put(ASName.k_Type, userType);
userObj.put(ASName.k_Name, userName.getCosObject());
this.setDictionaryValue(ASName.k_User, (CosObject)userObj);
}
public void addUserName(ASString user) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary userObj = this.getDictionaryDictionaryValue(ASName.k_User);
if (userObj != null) {
CosObject obj = userObj.get(ASName.k_Name);
if (obj instanceof CosString) {
PDFOCContentUsageUserList newList = PDFOCContentUsageUserList.newInstance(this.getPDFDocument(), ((CosString)obj).stringValue());
userObj.put(ASName.k_Name, newList.getCosObject());
obj = newList.getCosObject();
}
if (obj instanceof CosArray) {
CosArray arrayObj = (CosArray)obj;
arrayObj.addString(user);
}
}
}
private void setUserType(ASName type) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary userObj = this.getDictionaryDictionaryValue(ASName.k_User);
if (userObj != null) {
userObj.put(ASName.k_Type, type);
}
}
public void setZoomMaxMagnification(long maxMag) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary zoomObj = this.getDictionaryDictionaryValue(ASName.k_Zoom);
if (zoomObj == null) {
zoomObj = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_Zoom, (CosObject)zoomObj);
}
zoomObj.put(ASName.k_max, maxMag);
}
public void setZoomMinMagnification(long minMag) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary zoomObj = this.getDictionaryDictionaryValue(ASName.k_Zoom);
if (zoomObj == null) {
zoomObj = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_Zoom, (CosObject)zoomObj);
}
zoomObj.put(ASName.k_min, minMag);
}
public long getZoomMaxMagnification() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
long result = 0;
CosDictionary zoomObj = this.getDictionaryDictionaryValue(ASName.k_Zoom);
if (zoomObj != null && zoomObj.containsKey((Object)ASName.k_max)) {
result = zoomObj.getLong(ASName.k_max);
}
return result;
}
public long getZoomMinMagnification() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
long result = 9999999;
CosDictionary zoomObj = this.getDictionaryDictionaryValue(ASName.k_Zoom);
if (zoomObj != null && zoomObj.containsKey((Object)ASName.k_min)) {
result = zoomObj.getLong(ASName.k_min);
}
return result;
}
public void setLanguage(ASString languageSpec) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary langObj = PDFCosObject.newCosDictionary(this.getPDFDocument());
langObj.put(ASName.k_Lang, languageSpec);
this.setDictionaryValue(ASName.k_Language, (CosObject)langObj);
}
public ASString getLanguageSpec() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary langObj = this.getDictionaryDictionaryValue(ASName.k_Language);
ASString langval = langObj.getString(ASName.k_Lang);
return langval;
}
public ASName getLanguagePref() throws PDFIOException, PDFSecurityException, PDFInvalidDocumentException {
CosDictionary langObj = this.getDictionaryDictionaryValue(ASName.k_Language);
if (langObj != null) {
return langObj.getName(ASName.k_Preferred);
}
return ASName.k_OFF;
}
public void setLanguagePreferred(boolean isOn) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (isOn) {
this.setLanguagePref(ASName.k_ON);
} else {
this.setLanguagePref(ASName.k_OFF);
}
}
private void setLanguagePref(ASName pref) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary langObj = this.getDictionaryDictionaryValue(ASName.k_Language);
if (langObj != null) {
langObj.put(ASName.k_Preferred, pref);
}
}
public ASName getCreatorInfoSubtype() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosObject obj;
ASName result = null;
CosDictionary creatorDict = this.getDictionaryDictionaryValue(ASName.k_CreatorInfo);
if (creatorDict != null && (obj = creatorDict.get(ASName.k_Subtype)) instanceof CosName) {
result = ((CosName)obj).nameValue();
}
return result;
}
public void setCreatorInfoSubtype(ASName type) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary creatorDict = this.getDictionaryDictionaryValue(ASName.k_CreatorInfo);
if (creatorDict == null) {
creatorDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
}
creatorDict.put(ASName.k_Subtype, type);
}
public String getCreatorInfoCreator() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosObject obj;
String result = null;
CosDictionary creatorDict = this.getDictionaryDictionaryValue(ASName.k_CreatorInfo);
if (creatorDict != null && (obj = creatorDict.get(ASName.k_Creator)) instanceof CosString) {
result = ((CosString)obj).toString();
}
return result;
}
public void setCreatorInfoCreator(String appName) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (appName == null) {
return;
}
CosDictionary creatorDict = this.getDictionaryDictionaryValue(ASName.k_CreatorInfo);
if (creatorDict == null) {
creatorDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_CreatorInfo, (CosObject)creatorDict);
}
PDFText textString = PDFText.createString(this.getPDFDocument(), appName);
creatorDict.put(ASName.k_Creator, new ASString(textString.stringValue()));
}
public ASName getPrintState() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosObject obj;
ASName result = null;
CosDictionary printDict = this.getDictionaryDictionaryValue(ASName.k_Print);
if (printDict != null && (obj = printDict.get(ASName.k_PrintState)) instanceof CosName) {
result = ((CosName)obj).nameValue();
}
return result;
}
public void setPrintState(boolean isOn) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (isOn) {
this.setPrintState(ASName.k_ON);
} else {
this.setPrintState(ASName.k_OFF);
}
}
private void setPrintState(ASName state) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary printDict = this.getDictionaryDictionaryValue(ASName.k_Print);
if (printDict == null) {
printDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_Print, (CosObject)printDict);
}
printDict.put(ASName.k_PrintState, state);
}
public ASName getPrintSubtype() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosObject obj;
ASName result = null;
CosDictionary printDict = this.getDictionaryDictionaryValue(ASName.k_Print);
if (printDict != null && (obj = printDict.get(ASName.k_Subtype)) instanceof CosName) {
result = ((CosName)obj).nameValue();
}
return result;
}
public void setPrintSubtype(ASName type) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary printDict = this.getDictionaryDictionaryValue(ASName.k_Print);
if (printDict == null) {
printDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_Print, (CosObject)printDict);
}
printDict.put(ASName.k_Subtype, type);
}
public ASName getExport() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosObject obj;
ASName result = null;
CosDictionary exportDict = this.getDictionaryDictionaryValue(ASName.k_Export);
if (exportDict != null && (obj = exportDict.get(ASName.k_ExportState)) instanceof CosName) {
result = ((CosName)obj).nameValue();
}
return result;
}
public void setExport(boolean isOn) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (isOn) {
this.setExport(ASName.k_ON);
} else {
this.setExport(ASName.k_OFF);
}
}
private void setExport(ASName state) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary exportDict = this.getDictionaryDictionaryValue(ASName.k_Export);
if (exportDict == null) {
exportDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_Export, (CosObject)exportDict);
}
exportDict.put(ASName.k_ExportState, state);
}
public ASName getView() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosObject obj;
ASName result = null;
CosDictionary viewDict = this.getDictionaryDictionaryValue(ASName.k_View);
if (viewDict != null && (obj = viewDict.get(ASName.k_ViewState)) instanceof CosName) {
result = ((CosName)obj).nameValue();
}
return result;
}
public void setView(boolean isOn) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (isOn) {
this.setView(ASName.k_ON);
} else {
this.setView(ASName.k_OFF);
}
}
private void setView(ASName state) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary viewDict = this.getDictionaryDictionaryValue(ASName.k_View);
if (viewDict == null) {
viewDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_View, (CosObject)viewDict);
}
viewDict.put(ASName.k_ViewState, state);
}
public ASName getPageElementSubtype() throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary pageElemDict = this.getDictionaryDictionaryValue(ASName.k_PageElement);
if (pageElemDict != null) {
return this.getDictionaryNameValue(ASName.k_Subtype);
}
return null;
}
public void setPageElementSubtype(PageElementSubtype elementSubtype) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
if (elementSubtype == null) {
this.setPaginationSubtype(null);
} else {
this.setPaginationSubtype(elementSubtype.getName());
}
}
private void setPaginationSubtype(ASName type) throws PDFInvalidDocumentException, PDFIOException, PDFSecurityException {
CosDictionary pageElemDict = this.getDictionaryDictionaryValue(ASName.k_PageElement);
if (pageElemDict == null) {
pageElemDict = PDFCosObject.newCosDictionary(this.getPDFDocument());
this.setDictionaryValue(ASName.k_PageElement, (CosObject)pageElemDict);
}
if (type == null) {
pageElemDict.remove(ASName.k_Subtype);
} else {
pageElemDict.put(ASName.k_Subtype, type);
}
}
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public static enum UserType {
IND(ASName.k_Ind),
ORG(ASName.k_Org),
TTL(ASName.k_Ttl);
private ASName name;
private UserType(ASName name) {
this.name = name;
}
public ASName getName() {
return this.name;
}
}
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public static enum PageElementSubtype {
BG(ASName.k_BG),
FG(ASName.k_FG),
HF(ASName.k_HF),
L(ASName.k_L);
private ASName name;
private PageElementSubtype(ASName name) {
this.name = name;
}
public ASName getName() {
return this.name;
}
}
}