My favorites
▼
|
Sign in
jpauclair-blog
jpa's blog
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
Experiment
/
AMF3
/
Amf3InputUpdated.java
r60
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
package flex.messaging.io.amf;
import java.io.Externalizable;
import java.io.IOException;
import java.io.UTFDataFormatException;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import flex.messaging.io.AbstractProxy;
import flex.messaging.io.ClassAliasRegistry;
import flex.messaging.io.PropertyProxy;
import flex.messaging.io.PropertyProxyRegistry;
import flex.messaging.io.SerializationContext;
import flex.messaging.io.SerializationException;
import flex.messaging.io.UnknownTypeException;
import flex.messaging.io.amf.ASObject;
import flex.messaging.io.amf.AbstractAmfInput;
import flex.messaging.io.amf.Amf3Types;
import flex.messaging.io.amf.TraitsInfo;
import flex.messaging.util.ClassUtil;
import flex.messaging.util.Trace;
public class Amf3InputUpdated extends AbstractAmfInput implements Amf3Types {
protected List objectTable;
protected List stringTable;
protected List traitsTable;
private TraitsInfo tempTi;
private boolean needTraitShapshot = false;
public Amf3InputUpdated(SerializationContext context) {
super(context);
this.stringTable = new ArrayList(64);
this.objectTable = new ArrayList(64);
this.traitsTable = new ArrayList(10);
}
@Override
public void reset() {
super.reset();
this.stringTable.clear();
this.objectTable.clear();
this.traitsTable.clear();
}
public Object saveObjectTable() {
Object table = this.objectTable;
this.objectTable = new ArrayList(64);
return table;
}
public void restoreObjectTable(Object table) {
this.objectTable = ((ArrayList) table);
}
public Object saveTraitsTable() {
Object table = this.traitsTable;
this.traitsTable = new ArrayList(10);
return table;
}
public void restoreTraitsTable(Object table) {
this.traitsTable = ((ArrayList) table);
}
public Object saveStringTable() {
Object table = this.stringTable;
this.stringTable = new ArrayList(64);
return table;
}
public void restoreStringTable(Object table) {
this.stringTable = ((ArrayList) table);
}
public Object readObject() throws ClassNotFoundException, IOException {
int type = this.in.readByte();
Object value = readObjectValue(type);
return value;
}
protected Object readObjectValue(int type) throws ClassNotFoundException,
IOException {
Object value = null;
switch (type) {
case 6:
value = readString();
if (!(this.isDebug))
break;
this.trace.writeString((String) value);
break;
case 10:
value = readScriptObject();
break;
case 9:
value = readArray();
break;
case 2:
value = Boolean.FALSE;
if (!(this.isDebug))
break;
this.trace.write(value);
break;
case 3:
value = Boolean.TRUE;
if (!(this.isDebug))
break;
this.trace.write(value);
break;
case 4:
int i = readUInt29();
i = i << 3 >> 3;
value = new Integer(i);
if (!(this.isDebug))
break;
this.trace.write(value);
break;
case 5:
value = new Double(this.in.readDouble());
if (!(this.isDebug))
break;
this.trace.write(value);
break;
case 0:
if (!(this.isDebug))
break;
this.trace.writeUndefined();
break;
case 1:
if (!(this.isDebug))
break;
this.trace.writeNull();
break;
case 7:
case 11:
value = readXml();
break;
case 8:
value = readDate();
if (!(this.isDebug))
break;
this.trace.write(value.toString());
break;
case 12:
value = readByteArray();
break;
case 13: // Vector.<int>
value = readVectorInt();
break;
case 14: // Vector.<uint>
value = readVectorUInt();
break;
case 15: // Vector.<Number>
value = readVectorNumber();
break;
case 16: // Vector.<Object>
value = readVectorObject();
break;
default:
UnknownTypeException ex = new UnknownTypeException();
ex.setMessage(10301, new Object[] { new Integer(type) });
throw ex;
}
return value;
}
protected String readString() throws IOException {
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getStringReference(ref >> 1);
}
int len = ref >> 1;
if (0 == len) {
return "";
}
String str = readUTF(len);
this.stringTable.add(str);
return str;
}
protected Date readDate() throws IOException {
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return ((Date) getObjectReference(ref >> 1));
}
long time = (long) this.in.readDouble();
Date d = new Date(time);
this.objectTable.add(d);
if (this.isDebug) {
this.trace.write(d);
}
return d;
}
protected Object readVectorInt() throws IOException {
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getObjectReference(ref >> 1);
}
int len = ref >> 1;
Object array = null;
array = new ArrayList<Integer>(len);
this.objectTable.add(array);
int ref2 = readUInt29();
for (int j = 0; j < len; ++j) {
Integer obj = in.readInt();
((List) array).add(obj);
}
return array;
}
protected Object readVectorUInt() throws IOException {
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getObjectReference(ref >> 1);
}
int len = ref >> 1;
Object array = null;
array = new ArrayList<Long>(len);
this.objectTable.add(array);
int ref2 = readUInt29();
for (int j = 0; j < len; ++j) {
long valLong = (long) (in.readByte() & 0xFF) << 24L;
valLong += (long) (in.readByte() & 0xFF) << 16L;
valLong += (long) (in.readByte() & 0xFF) << 8L;
valLong += (in.readByte() & 0xFF);
Long obj = valLong;
((List) array).add(obj);
}
return array;
}
protected Object readVectorNumber() throws IOException {
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getObjectReference(ref >> 1);
}
int len = ref >> 1;
Object array = null;
array = new ArrayList<Double>(len);
this.objectTable.add(array);
int ref2 = readUInt29();
for (int j = 0; j < len; ++j) {
Double f = in.readDouble();
((List) array).add(f);
}
return array;
}
protected Object readVectorObject() throws IOException
{
//Start like all other objects
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getObjectReference(ref >> 1);
}
int len = ref >> 1;
Object array = null;
//We can cast as the specific type. Class.forName("ArrayList<type>"); won't work :/
array = new ArrayList<Object>(len);
this.objectTable.add(array);
//Vector of Object is like an pure object, it's got a traits defining it's type
int ref2 = readUInt29();
TraitsInfo ti = readTraits(ref2);
String className = ti.getClassName();
PropertyProxy proxy = null;
//Optimization of the Vector traits re-write as been done in the AS3 serialization.
//The traits is written once directly in the vector definition,
//The class properties is written once, directly in the first object instance. but not in the folowing.
needTraitShapshot = true;
Object object;
for (int j = 0; j < len; ++j)
{
if ((className == null) || (className.length() == 0))
{
object = new ASObject();
}
else if (className.startsWith(">"))
{
object = new ASObject();
((ASObject) object).setType(className);
}
else if ((this.context.instantiateTypes) || (className.startsWith("flex.")))
{
Class desiredClass = AbstractProxy.getClassFromClassName(className, this.context.createASObjectForMissingType);
proxy = PropertyProxyRegistry.getRegistry().getProxyAndRegister(desiredClass);
if (proxy == null)
{
object = ClassUtil.createDefaultInstance(desiredClass, null);
}
else
{
object = proxy.createInstance(className);
}
}
else
{
object = new ASObject();
((ASObject) object).setType(className);
}
if (proxy == null)
{
proxy = PropertyProxyRegistry.getProxyAndRegister(object);
}
Object str = null;
try
{
str = readObject();
}
catch (ClassNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
((List) array).add(str);
}
tempTi = null;
needTraitShapshot = false;
return array;
}
protected Object readArray() throws ClassNotFoundException, IOException {
int i;
Object item;
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getObjectReference(ref >> 1);
}
int len = ref >> 1;
Object array = null;
Map map = null;
while (true) {
String name = readString();
if (name == null)
break;
if (name.length() == 0)
break;
if (map == null) {
map = new HashMap();
array = map;
this.objectTable.add(array);
if (this.isDebug) {
this.trace.startECMAArray(this.objectTable.size() - 1);
}
}
Object value = readObject();
map.put(name, value);
}
if (map == null) {
if (this.context.legacyCollection) {
List list = new ArrayList(len);
array = list;
this.objectTable.add(array);
if (this.isDebug) {
this.trace.startAMFArray(this.objectTable.size() - 1);
}
for (int j = 0; j < len; ++j) {
if (this.isDebug) {
this.trace.arrayElement(j);
}
Object obj = readObject();
list.add(j, obj);
}
} else {
array = new Object[len];
this.objectTable.add(array);
if (this.isDebug) {
this.trace.startAMFArray(this.objectTable.size() - 1);
}
for (i = 0; i < len; ++i) {
if (this.isDebug) {
this.trace.arrayElement(i);
}
item = readObject();
Array.set(array, i, item);
}
}
} else {
for (i = 0; i < len; ++i) {
if (this.isDebug) {
this.trace.arrayElement(i);
}
item = readObject();
map.put(Integer.toString(i), item);
}
}
if (this.isDebug) {
this.trace.endAMFArray();
}
return array;
}
protected Object readScriptObject() throws ClassNotFoundException,
IOException {
Object object;
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return getObjectReference(ref >> 1);
}
TraitsInfo ti = readTraits(ref);
if (needTraitShapshot)
{
needTraitShapshot = false;
tempTi = ti;
}
if (tempTi != null)
{
ti = tempTi;
//tempTi = null;
}
String className = ti.getClassName();
boolean externalizable = ti.isExternalizable();
PropertyProxy proxy = null;
String aliasedClass = ClassAliasRegistry.getRegistry().getClassName(
className);
if (aliasedClass != null) {
className = aliasedClass;
}
if ((className == null) || (className.length() == 0)) {
object = new ASObject();
} else if (className.startsWith(">")) {
object = new ASObject();
((ASObject) object).setType(className);
} else if ((this.context.instantiateTypes)
|| (className.startsWith("flex."))) {
Class desiredClass = AbstractProxy.getClassFromClassName(className,
this.context.createASObjectForMissingType);
proxy = PropertyProxyRegistry.getRegistry().getProxyAndRegister(
desiredClass);
if (proxy == null)
object = ClassUtil.createDefaultInstance(desiredClass, null);
else {
object = proxy.createInstance(className);
}
} else {
object = new ASObject();
((ASObject) object).setType(className);
}
if (proxy == null) {
proxy = PropertyProxyRegistry.getProxyAndRegister(object);
}
int objectId = this.objectTable.size();
this.objectTable.add(object);
if (externalizable) {
readExternalizable(className, object);
} else {
if (this.isDebug) {
this.trace.startAMFObject(className,
this.objectTable.size() - 1);
}
int len = ti.getProperties().size();
for (int i = 0; i < len; ++i) {
String propName = ti.getProperty(i);
if (this.isDebug) {
this.trace.namedElement(propName);
}
Object value = readObject();
proxy.setValue(object, propName, value);
}
if (ti.isDynamic()) {
while (true) {
String name = readString();
if (name == null)
break;
if (name.length() == 0)
break;
if (this.isDebug) {
this.trace.namedElement(name);
}
Object value = readObject();
proxy.setValue(object, name, value);
}
}
}
if (this.isDebug) {
this.trace.endAMFObject();
}
Object newObj = proxy.instanceComplete(object);
if (newObj != object) {
this.objectTable.set(objectId, newObj);
object = newObj;
}
return object;
}
protected void readExternalizable(String className, Object object)
throws ClassNotFoundException, IOException {
if (object instanceof Externalizable) {
if (this.isDebug) {
this.trace.startExternalizableObject(className,
this.objectTable.size() - 1);
}
((Externalizable) object).readExternal(this);
} else {
SerializationException ex = new SerializationException();
ex.setMessage(10305, new Object[] { object.getClass().getName() });
throw ex;
}
}
protected byte[] readByteArray() throws IOException {
int ref = readUInt29();
if ((ref & 0x1) == 0) {
return ((byte[]) getObjectReference(ref >> 1));
}
int len = ref >> 1;
byte[] ba = new byte[len];
this.objectTable.add(ba);
this.in.readFully(ba, 0, len);
if (this.isDebug) {
this.trace.startByteArray(this.objectTable.size() - 1, len);
}
return ba;
}
protected TraitsInfo readTraits(int ref) throws IOException {
if ((ref & 0x3) == 1) {
return getTraitReference(ref >> 2);
}
boolean externalizable = (ref & 0x4) == 4;
boolean dynamic = (ref & 0x8) == 8;
int count = ref >> 4;
String className = readString();
TraitsInfo ti = new TraitsInfo(className, dynamic, externalizable,
count);
this.traitsTable.add(ti);
for (int i = 0; i < count; ++i) {
String propName = readString();
ti.addProperty(propName);
}
return ti;
}
protected String readUTF(int utflen) throws IOException {
char[] charr = getTempCharArray(utflen);
byte[] bytearr = getTempByteArray(utflen);
int count = 0;
int chCount = 0;
this.in.readFully(bytearr, 0, utflen);
while (count < utflen) {
int char2;
int c = bytearr[count] & 0xFF;
switch (c >> 4) {
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
++count;
charr[chCount] = (char) c;
break;
case 12:
case 13:
count += 2;
if (count > utflen)
throw new UTFDataFormatException();
char2 = bytearr[(count - 1)];
if ((char2 & 0xC0) != 128)
throw new UTFDataFormatException();
charr[chCount] = (char) ((c & 0x1F) << 6 | char2 & 0x3F);
break;
case 14:
count += 3;
if (count > utflen)
throw new UTFDataFormatException();
char2 = bytearr[(count - 2)];
int char3 = bytearr[(count - 1)];
if (((char2 & 0xC0) != 128) || ((char3 & 0xC0) != 128))
throw new UTFDataFormatException();
charr[chCount] = (char) ((c & 0xF) << 12 | (char2 & 0x3F) << 6 | (char3 & 0x3F) << 0);
break;
case 8:
case 9:
case 10:
case 11:
default:
throw new UTFDataFormatException();
}
++chCount;
}
return new String(charr, 0, chCount);
}
protected int readUInt29() throws IOException {
int b = this.in.readByte() & 0xFF;
if (b < 128) {
return b;
}
int value = (b & 0x7F) << 7;
b = this.in.readByte() & 0xFF;
if (b < 128) {
return (value | b);
}
value = (value | b & 0x7F) << 7;
b = this.in.readByte() & 0xFF;
if (b < 128) {
return (value | b);
}
value = (value | b & 0x7F) << 8;
b = this.in.readByte() & 0xFF;
return (value | b);
}
protected Object readXml() throws IOException {
String xml = null;
int ref = readUInt29();
if ((ref & 0x1) == 0) {
xml = (String) getObjectReference(ref >> 1);
} else {
int len = ref >> 1;
if (0 == len)
xml = "";
else {
xml = readUTF(len);
}
this.objectTable.add(xml);
if (this.isDebug) {
this.trace.write(xml);
}
}
return stringToDocument(xml);
}
protected Object getObjectReference(int ref) {
if (this.isDebug) {
this.trace.writeRef(ref);
}
return this.objectTable.get(ref);
}
protected String getStringReference(int ref) {
String str = (String) this.stringTable.get(ref);
if ((Trace.amf) && (this.isDebug)) {
this.trace.writeStringRef(ref);
}
return str;
}
protected TraitsInfo getTraitReference(int ref) {
if ((Trace.amf) && (this.isDebug)) {
this.trace.writeTraitsInfoRef(ref);
}
return ((TraitsInfo) this.traitsTable.get(ref));
}
}
Show details
Hide details
Change log
r10
by auclair.jp on Jan 15, 2010
Diff
Added support for AMF3 Vector reading
Go to:
/trunk/Experiment/AMF3
...iment/AMF3/Amf3InputUpdated.java
...t/AMF3/flex-messaging-common.jar
...ent/AMF3/flex-messaging-core.jar
...ment/AMF3/flex-messaging-opt.jar
...nt/AMF3/flex-messaging-proxy.jar
...AMF3/flex-messaging-remoting.jar
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 17093 bytes, 768 lines
View raw file
Powered by
Google Project Hosting