Arg.java
9.73 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.Obj;
import com.adobe.xfa.ut.*;
public final class Arg {
public static final int NULL = 2;
public static final int BOOL = 3;
public static final int DOUBLE = 5;
public static final int EMPTY = 1;
public static final int EXCEPTION = 8;
public static final int INTEGER = 4;
static final String gsEmpty = "Empty";
static final String gsError = "Error:";
static final String gsFalse = "False";
static final String gsNull = "Null";
static final String gsObject = "Object";
static final String gsTrue = "True";
static final String gsVoidPtr = "Pointer:";
public static final int INVALID = 0;
public static final int OBJECT = 7;
public static final int STRING = 6;
public static final int VOIDPTR = 9;
private Object mArg;
private int mType;
private boolean mbIsRef = false;
private boolean mbIsXFAProp = false;
public Arg() {
this.mType = 1;
}
public Arg(Arg src) {
this.assign(src);
}
public void assign(Arg src) {
if (this.mType != 1) {
this.empty();
}
this.mType = src.mType;
this.mArg = src.mArg;
this.mbIsRef = src.mbIsRef;
}
private boolean coerceToDouble(DoubleHolder n, boolean bStrongTyping) {
if (this.mType != 5) {
if (this.mType == 4) {
n.value = ((Integer)this.mArg).doubleValue();
return true;
}
if (this.mType == 6) {
n.value = Numeric.stringToDouble((String)this.mArg, false);
if (bStrongTyping && (Double.isNaN(n.value) || Double.isInfinite(n.value))) {
return false;
}
return true;
}
return false;
}
n.value = (Double)this.mArg;
return true;
}
private boolean coerceToInt(IntegerHolder n) {
if (this.mType != 4) {
if (this.mType == 5 && (Double)this.mArg == (double)((Double)this.mArg).intValue()) {
n.value = ((Double)this.mArg).intValue();
return true;
}
if (this.mType == 6) {
try {
n.value = Integer.parseInt((String)this.mArg);
return true;
}
catch (NumberFormatException e) {
return false;
}
}
return false;
}
n.value = (Integer)this.mArg;
return true;
}
public void empty() {
this.mArg = null;
this.mType = 1;
}
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (object == null) {
return false;
}
if (object.getClass() != this.getClass()) {
return false;
}
Arg src = (Arg)object;
if (this.mType != src.mType) {
return false;
}
return this.mArg.equals(src);
}
public int hashCode() {
int hash = 79;
if (this.mArg != null) {
hash = hash * 31 ^ this.mArg.hashCode();
}
hash = hash * 31 ^ this.mType;
return hash;
}
public int getArgType() {
return this.mType;
}
public Boolean getAsBool(boolean bThrowException) {
switch (this.getArgType()) {
case 1:
case 2: {
return Boolean.FALSE;
}
case 3: {
return this.getBool();
}
case 4: {
return this.getInteger() != 0;
}
case 5: {
return this.getDouble(false) != 0.0;
}
case 6: {
String sTmp = this.getString();
if (sTmp.length() == 0) {
return Boolean.FALSE;
}
try {
int nNum = Integer.parseInt(sTmp);
return nNum != 0;
}
catch (NumberFormatException n) {
return Boolean.FALSE;
}
}
case 7: {
return this.getObject() != null;
}
case 9: {
return this.getVoid(false) != null;
}
case 8: {
if (!bThrowException) {
return Boolean.FALSE;
}
String sException = this.getException().toString();
throw new ExFull(new MsgFormat("Error:", sException));
}
}
assert (false);
return Boolean.FALSE;
}
public String getAsString(boolean bThrowException) {
switch (this.getArgType()) {
case 1: {
return "Empty";
}
case 2: {
return "Null";
}
case 3: {
return this.getBool() != false ? "True" : "False";
}
case 4: {
return ((Integer)this.mArg).toString();
}
case 5: {
return Numeric.doubleToString((Double)this.mArg, 8, true);
}
case 6: {
return this.getString();
}
case 7: {
int h = System.identityHashCode(this.mArg);
return "Object" + h;
}
case 9: {
return this.getVoid(false).toString();
}
case 8: {
String sException = this.getException().toString();
if (!bThrowException) {
return "Error:" + sException;
}
throw new ExFull(new MsgFormat("Error:", sException));
}
}
assert (false);
return "";
}
public Boolean getBool() {
if (this.mType != 3) {
boolean bRet = this.getDouble(false) != 0.0;
return bRet;
}
return (Boolean)this.mArg;
}
public Double getDouble(boolean bStrongTyping) {
DoubleHolder d = new DoubleHolder();
if (!this.coerceToDouble(d, bStrongTyping)) {
throw new ExFull(ResId.ArgumentMismatchException);
}
return d.value;
}
public ExFull getException() {
if (this.mType != 8) {
throw new ExFull(ResId.ArgumentMismatchException);
}
return (ExFull)this.mArg;
}
public Integer getInteger() {
IntegerHolder n = new IntegerHolder();
if (!this.coerceToInt(n)) {
throw new ExFull(ResId.ArgumentMismatchException);
}
return n.value;
}
public Obj getObject() {
if (this.mType != 7) {
throw new ExFull(ResId.ArgumentMismatchException);
}
return (Obj)this.mArg;
}
public String getString() {
if (this.mType == 6) {
return (String)this.mArg;
}
if (this.mType == 1) {
return "";
}
throw new ExFull(ResId.ArgumentMismatchException);
}
public Object getVoid(boolean bThrowException) {
if (this.mType != 9) {
if (bThrowException) {
throw new ExFull(ResId.ArgumentMismatchException);
}
return null;
}
return this.mArg;
}
public boolean isCompatibleWith(int eType) {
if (this.mType == eType) {
return true;
}
DoubleHolder d = new DoubleHolder();
IntegerHolder i = new IntegerHolder();
switch (eType) {
case 9: {
return false;
}
case 1: {
return false;
}
case 2: {
return false;
}
case 7: {
return false;
}
case 8: {
return false;
}
case 6: {
return this.mType == 1;
}
case 3: {
return this.coerceToDouble(d, false);
}
case 4: {
return this.coerceToInt(i);
}
case 5: {
return this.coerceToDouble(d, false);
}
}
return false;
}
public boolean isEmpty() {
return this.mType == 1;
}
public void setBool(Boolean b) {
this.empty();
this.mType = 3;
this.mArg = b;
}
public void setDouble(Double d) {
this.empty();
this.mType = 5;
this.mArg = d;
}
public void setException(ExFull ex) {
this.empty();
this.mType = 8;
this.mArg = ex;
}
public void setInteger(Integer i) {
this.empty();
this.mType = 4;
this.mArg = i;
}
public void setNull() {
this.empty();
this.mType = 2;
}
public void setObject(Obj obj) {
this.setObject(obj, false);
}
public void setObject(Obj obj, boolean bIsRef) {
this.setObject(obj, bIsRef, false);
}
public void setObject(Obj obj, boolean bIsRef, boolean bIsProp) {
this.empty();
this.mType = 7;
this.mArg = obj;
this.mbIsRef = bIsRef;
this.mbIsXFAProp = bIsProp;
}
public void setString(String s) {
this.empty();
this.mType = 6;
this.mArg = s;
}
public void setVoid(Object oData) {
this.empty();
this.mType = 9;
this.mArg = oData;
}
public boolean isRefObject() {
if (this.mType == 7 && this.mbIsRef) {
return true;
}
return false;
}
public boolean isXFAProperty() {
if (this.mType == 7 && this.mbIsXFAProp) {
return true;
}
return false;
}
}