My favorites | Sign in
Project Home Wiki Issues Source
Checkout   Browse   Changes    
 
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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

#include "include/dart_debugger_api.h"
#include "platform/assert.h"
#include "vm/bigint_operations.h"
#include "vm/class_finalizer.h"
#include "vm/dart_api_impl.h"
#include "vm/dart_api_message.h"
#include "vm/dart_api_state.h"
#include "vm/snapshot.h"
#include "vm/unit_test.h"

namespace dart {

// Check if serialized and deserialized objects are equal.
static bool Equals(const Object& expected, const Object& actual) {
if (expected.IsNull()) {
return actual.IsNull();
}
if (expected.IsSmi()) {
if (actual.IsSmi()) {
return expected.raw() == actual.raw();
}
return false;
}
if (expected.IsDouble()) {
if (actual.IsDouble()) {
Double& dbl1 = Double::Handle();
Double& dbl2 = Double::Handle();
dbl1 ^= expected.raw();
dbl2 ^= actual.raw();
return dbl1.value() == dbl2.value();
}
return false;
}
return false;
}


static uint8_t* malloc_allocator(
uint8_t* ptr, intptr_t old_size, intptr_t new_size) {
return reinterpret_cast<uint8_t*>(realloc(ptr, new_size));
}


static uint8_t* zone_allocator(
uint8_t* ptr, intptr_t old_size, intptr_t new_size) {
Zone* zone = Isolate::Current()->current_zone();
return reinterpret_cast<uint8_t*>(
zone->Reallocate(reinterpret_cast<uword>(ptr), old_size, new_size));
}


static Dart_CObject* DecodeMessage(uint8_t* message,
intptr_t length,
ReAlloc allocator) {
ApiMessageReader message_reader(message, length, allocator);
return message_reader.ReadMessage();
}


// Compare two Dart_CObject object graphs rooted in first and
// second. The second graph will be destroyed by this operation no matter
// whether the graphs are equal or not.
static void CompareDartCObjects(Dart_CObject* first, Dart_CObject* second) {
// Return immediately if entering a cycle.
if (second->type == Dart_CObject::kNumberOfTypes) return;

EXPECT_NE(first, second);
EXPECT_EQ(first->type, second->type);
switch (first->type) {
case Dart_CObject::kNull:
// Nothing more to compare.
break;
case Dart_CObject::kBool:
EXPECT_EQ(first->value.as_bool, second->value.as_bool);
break;
case Dart_CObject::kInt32:
EXPECT_EQ(first->value.as_int32, second->value.as_int32);
break;
case Dart_CObject::kInt64:
EXPECT_EQ(first->value.as_int64, second->value.as_int64);
break;
case Dart_CObject::kBigint:
EXPECT_STREQ(first->value.as_bigint, second->value.as_bigint);
break;
case Dart_CObject::kDouble:
EXPECT_EQ(first->value.as_double, second->value.as_double);
break;
case Dart_CObject::kString:
EXPECT_STREQ(first->value.as_string, second->value.as_string);
break;
case Dart_CObject::kUint8Array:
EXPECT_EQ(first->value.as_byte_array.length,
second->value.as_byte_array.length);
for (int i = 0; i < first->value.as_byte_array.length; i++) {
EXPECT_EQ(first->value.as_byte_array.values[i],
second->value.as_byte_array.values[i]);
}
break;
case Dart_CObject::kArray:
// Use invalid type as a visited marker to avoid infinite
// recursion on graphs with cycles.
second->type = Dart_CObject::kNumberOfTypes;
EXPECT_EQ(first->value.as_array.length, second->value.as_array.length);
for (int i = 0; i < first->value.as_array.length; i++) {
CompareDartCObjects(first->value.as_array.values[i],
second->value.as_array.values[i]);
}
break;
default:
EXPECT(false);
}
}


static void CheckEncodeDecodeMessage(Dart_CObject* root) {
// Encode and decode the message.
uint8_t* buffer = NULL;
ApiMessageWriter writer(&buffer, &malloc_allocator);
writer.WriteCMessage(root);

Dart_CObject* new_root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);

// Check that the two messages are the same.
CompareDartCObjects(root, new_root);
}

TEST_CASE(SerializeNull) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Object& null_object = Object::Handle();
writer.WriteObject(null_object.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
const Object& serialized_object = Object::Handle(reader.ReadObject());
EXPECT(Equals(null_object, serialized_object));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kNull, root->type);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeSmi1) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Smi& smi = Smi::Handle(Smi::New(124));
writer.WriteObject(smi.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
const Object& serialized_object = Object::Handle(reader.ReadObject());
EXPECT(Equals(smi, serialized_object));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kInt32, root->type);
EXPECT_EQ(smi.Value(), root->value.as_int32);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeSmi2) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Smi& smi = Smi::Handle(Smi::New(-1));
writer.WriteObject(smi.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
const Object& serialized_object = Object::Handle(reader.ReadObject());
EXPECT(Equals(smi, serialized_object));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kInt32, root->type);
EXPECT_EQ(smi.Value(), root->value.as_int32);
CheckEncodeDecodeMessage(root);
}


Dart_CObject* SerializeAndDeserializeMint(const Mint& mint) {
// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
writer.WriteObject(mint.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
const Object& serialized_object = Object::Handle(reader.ReadObject());
EXPECT(serialized_object.IsMint());

// Read object back from the snapshot into a C structure.
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
CheckEncodeDecodeMessage(root);
return root;
}


void CheckMint(int64_t value) {
Zone zone(Isolate::Current());

const Mint& mint = Mint::Handle(Mint::New(value));
ApiNativeScope scope;
Dart_CObject* mint_cobject = SerializeAndDeserializeMint(mint);
// On 64-bit platforms mints always require 64-bits as the smi range
// here covers most of the 64-bit range. On 32-bit platforms the smi
// range covers most of the 32-bit range and values outside that
// range are also represented as mints.
#if defined(ARCH_IS_64_BIT)
EXPECT_EQ(Dart_CObject::kInt64, mint_cobject->type);
EXPECT_EQ(value, mint_cobject->value.as_int64);
#else
if (kMinInt32 < value && value < kMaxInt32) {
EXPECT_EQ(Dart_CObject::kInt32, mint_cobject->type);
EXPECT_EQ(value, mint_cobject->value.as_int32);
} else {
EXPECT_EQ(Dart_CObject::kInt64, mint_cobject->type);
EXPECT_EQ(value, mint_cobject->value.as_int64);
}
#endif
}


TEST_CASE(SerializeMints) {
// Min positive mint.
CheckMint(Smi::kMaxValue + 1);
// Min positive mint + 1.
CheckMint(Smi::kMaxValue + 2);
// Max negative mint.
CheckMint(Smi::kMinValue - 1);
// Max negative mint - 1.
CheckMint(Smi::kMinValue - 2);
// Max positive mint.
CheckMint(kMaxInt64);
// Max positive mint - 1.
CheckMint(kMaxInt64 - 1);
// Min negative mint.
CheckMint(kMinInt64);
// Min negative mint + 1.
CheckMint(kMinInt64 + 1);
}


TEST_CASE(SerializeDouble) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Double& dbl = Double::Handle(Double::New(101.29));
writer.WriteObject(dbl.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
const Object& serialized_object = Object::Handle(reader.ReadObject());
EXPECT(Equals(dbl, serialized_object));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kDouble, root->type);
EXPECT_EQ(dbl.value(), root->value.as_double);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeBool) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Bool& bool1 = Bool::Handle(Bool::True());
const Bool& bool2 = Bool::Handle(Bool::False());
writer.WriteObject(bool1.raw());
writer.WriteObject(bool2.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
EXPECT(Bool::True() == reader.ReadObject());
EXPECT(Bool::False() == reader.ReadObject());
}


TEST_CASE(SerializeTrue) {
Zone zone(Isolate::Current());

// Write snapshot with true object.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Bool& bl = Bool::Handle(Bool::True());
writer.WriteObject(bl.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kBool, root->type);
EXPECT_EQ(true, root->value.as_bool);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeFalse) {
Zone zone(Isolate::Current());

// Write snapshot with false object.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Bool& bl = Bool::Handle(Bool::False());
writer.WriteObject(bl.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kBool, root->type);
EXPECT_EQ(false, root->value.as_bool);
CheckEncodeDecodeMessage(root);
}


static uword allocator(intptr_t size) {
return reinterpret_cast<uword>(malloc(size));
}


TEST_CASE(SerializeBigint) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Bigint& bigint = Bigint::Handle(Bigint::New(DART_INT64_C(0xfffffffff)));
writer.WriteObject(bigint.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
Bigint& obj = Bigint::Handle();
obj ^= reader.ReadObject();

EXPECT_EQ(BigintOperations::ToMint(bigint), BigintOperations::ToMint(obj));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
// Bigint not supported.
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kBigint, root->type);
EXPECT_STREQ("FFFFFFFFF", root->value.as_bigint);
CheckEncodeDecodeMessage(root);
}


Dart_CObject* SerializeAndDeserializeBigint(const Bigint& bigint) {
// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
writer.WriteObject(bigint.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
Bigint& serialized_bigint = Bigint::Handle();
serialized_bigint ^= reader.ReadObject();
const char *str1 = BigintOperations::ToHexCString(bigint, allocator);
const char *str2 =
BigintOperations::ToHexCString(serialized_bigint, allocator);
EXPECT_STREQ(str1, str2);
free(const_cast<char*>(str1));
free(const_cast<char*>(str2));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
// Bigint not supported.
EXPECT_NOTNULL(root);
CheckEncodeDecodeMessage(root);
return root;
}


void CheckBigint(const char* bigint_value) {
Zone zone(Isolate::Current());

Bigint& bigint = Bigint::Handle();
bigint ^= BigintOperations::NewFromCString(bigint_value);
Dart_CObject* bigint_cobject = SerializeAndDeserializeBigint(bigint);
EXPECT_EQ(Dart_CObject::kBigint, bigint_cobject->type);
if (bigint_value[0] == '0') {
EXPECT_STREQ(bigint_value + 2, bigint_cobject->value.as_bigint);
} else {
EXPECT_EQ('-', bigint_value[0]);
EXPECT_EQ('-', bigint_cobject->value.as_bigint[0]);
EXPECT_STREQ(bigint_value + 3, bigint_cobject->value.as_bigint + 1);
}
}


TEST_CASE(SerializeBigint2) {
CheckBigint("0x0");
CheckBigint("0x1");
CheckBigint("-0x1");
CheckBigint("0x11111111111111111111");
CheckBigint("-0x11111111111111111111");
CheckBigint("0x9876543210987654321098765432109876543210");
CheckBigint("-0x9876543210987654321098765432109876543210");
}


TEST_CASE(SerializeSingletons) {
// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &malloc_allocator);
writer.WriteObject(Object::class_class());
writer.WriteObject(Object::null_class());
writer.WriteObject(Object::type_class());
writer.WriteObject(Object::type_parameter_class());
writer.WriteObject(Object::type_arguments_class());
writer.WriteObject(Object::instantiated_type_arguments_class());
writer.WriteObject(Object::function_class());
writer.WriteObject(Object::field_class());
writer.WriteObject(Object::token_stream_class());
writer.WriteObject(Object::script_class());
writer.WriteObject(Object::library_class());
writer.WriteObject(Object::code_class());
writer.WriteObject(Object::instructions_class());
writer.WriteObject(Object::pc_descriptors_class());
writer.WriteObject(Object::exception_handlers_class());
writer.WriteObject(Object::context_class());
writer.WriteObject(Object::context_scope_class());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
EXPECT(Object::class_class() == reader.ReadObject());
EXPECT(Object::null_class() == reader.ReadObject());
EXPECT(Object::type_class() == reader.ReadObject());
EXPECT(Object::type_parameter_class() == reader.ReadObject());
EXPECT(Object::type_arguments_class() == reader.ReadObject());
EXPECT(Object::instantiated_type_arguments_class() == reader.ReadObject());
EXPECT(Object::function_class() == reader.ReadObject());
EXPECT(Object::field_class() == reader.ReadObject());
EXPECT(Object::token_stream_class() == reader.ReadObject());
EXPECT(Object::script_class() == reader.ReadObject());
EXPECT(Object::library_class() == reader.ReadObject());
EXPECT(Object::code_class() == reader.ReadObject());
EXPECT(Object::instructions_class() == reader.ReadObject());
EXPECT(Object::pc_descriptors_class() == reader.ReadObject());
EXPECT(Object::exception_handlers_class() == reader.ReadObject());
EXPECT(Object::context_class() == reader.ReadObject());
EXPECT(Object::context_scope_class() == reader.ReadObject());

free(buffer);
}


TEST_CASE(SerializeString) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
static const char* cstr = "This string shall be serialized";
String& str = String::Handle(String::New(cstr));
writer.WriteObject(str.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
String& serialized_str = String::Handle();
serialized_str ^= reader.ReadObject();
EXPECT(str.Equals(serialized_str));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_EQ(Dart_CObject::kString, root->type);
EXPECT_STREQ(cstr, root->value.as_string);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeArray) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const int kArrayLength = 10;
Array& array = Array::Handle(Array::New(kArrayLength));
Smi& smi = Smi::Handle();
for (int i = 0; i < kArrayLength; i++) {
smi ^= Smi::New(i);
array.SetAt(i, smi);
}
writer.WriteObject(array.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
Array& serialized_array = Array::Handle();
serialized_array ^= reader.ReadObject();
EXPECT(array.Equals(serialized_array));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(Dart_CObject::kInt32, element->type);
EXPECT_EQ(i, element->value.as_int32);
}
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeEmptyArray) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const int kArrayLength = 0;
Array& array = Array::Handle(Array::New(kArrayLength));
writer.WriteObject(array.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
Array& serialized_array = Array::Handle();
serialized_array ^= reader.ReadObject();
EXPECT(array.Equals(serialized_array));

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
EXPECT(root->value.as_array.values == NULL);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeByteArray) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const int kByteArrayLength = 256;
Uint8Array& byte_array =
Uint8Array::Handle(Uint8Array::New(kByteArrayLength));
for (int i = 0; i < kByteArrayLength; i++) {
byte_array.SetAt(i, i);
}
writer.WriteObject(byte_array.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
ByteArray& serialized_byte_array = ByteArray::Handle();
serialized_byte_array ^= reader.ReadObject();
EXPECT(serialized_byte_array.IsByteArray());

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_EQ(Dart_CObject::kUint8Array, root->type);
EXPECT_EQ(kByteArrayLength, root->value.as_byte_array.length);
for (int i = 0; i < kByteArrayLength; i++) {
EXPECT(root->value.as_byte_array.values[i] == i);
}
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeEmptyByteArray) {
Zone zone(Isolate::Current());

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const int kByteArrayLength = 0;
Uint8Array& byte_array =
Uint8Array::Handle(Uint8Array::New(kByteArrayLength));
writer.WriteObject(byte_array.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
ByteArray& serialized_byte_array = ByteArray::Handle();
serialized_byte_array ^= reader.ReadObject();
EXPECT(serialized_byte_array.IsByteArray());

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_EQ(Dart_CObject::kUint8Array, root->type);
EXPECT_EQ(kByteArrayLength, root->value.as_byte_array.length);
EXPECT(root->value.as_byte_array.values == NULL);
CheckEncodeDecodeMessage(root);
}


TEST_CASE(SerializeScript) {
const char* kScriptChars =
"class A {\n"
" static bar() { return 42; }\n"
" static fly() { return 5; }\n"
"}\n";

String& url = String::Handle(String::New("dart-test:SerializeScript"));
String& source = String::Handle(String::New(kScriptChars));
Script& script = Script::Handle(Script::New(url, source, RawScript::kSource));
const String& lib_url = String::Handle(String::NewSymbol("TestLib"));
Library& lib = Library::Handle(Library::New(lib_url));
lib.Register();
EXPECT(CompilerTest::TestCompileScript(lib, script));

// Write snapshot with object content.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kScript, &buffer, &malloc_allocator);
writer.WriteObject(script.raw());
writer.FinalizeBuffer();

// Create a snapshot object using the buffer.
const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);

// Read object back from the snapshot.
SnapshotReader reader(snapshot, Isolate::Current());
Script& serialized_script = Script::Handle();
serialized_script ^= reader.ReadObject();

// Check if the serialized script object matches the original script.
String& str = String::Handle();
str ^= serialized_script.url();
EXPECT(url.Equals(str));
const TokenStream& expected_tokens = TokenStream::Handle(script.tokens());
const TokenStream& serialized_tokens =
TokenStream::Handle(serialized_script.tokens());
EXPECT_EQ(expected_tokens.Length(), serialized_tokens.Length());
String& expected_literal = String::Handle();
String& actual_literal = String::Handle();
for (intptr_t i = 0; i < expected_tokens.Length(); i++) {
EXPECT_EQ(expected_tokens.KindAt(i), serialized_tokens.KindAt(i));
expected_literal ^= expected_tokens.LiteralAt(i);
actual_literal ^= serialized_tokens.LiteralAt(i);
EXPECT(expected_literal.Equals(actual_literal));
}
// Check if we are able to generate the source from the token stream.
// Rescan this source and compare the token stream to see if they are
// the same.
str ^= serialized_tokens.GenerateSource();
const String& dummy_key = String::Handle(String::New(""));
Scanner scanner(str, dummy_key);
const TokenStream& reconstructed_tokens =
TokenStream::Handle(TokenStream::New(scanner.GetStream()));
for (intptr_t i = 0; i < expected_tokens.Length(); i++) {
EXPECT_EQ(expected_tokens.KindAt(i), serialized_tokens.KindAt(i));
expected_literal ^= expected_tokens.LiteralAt(i);
actual_literal ^= reconstructed_tokens.LiteralAt(i);
EXPECT(expected_literal.Equals(actual_literal));
}

free(buffer);
}


// Only ia32 and x64 can run execution tests.
#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
UNIT_TEST_CASE(FullSnapshot) {
const char* kScriptChars =
"class Fields {\n"
" Fields(int i, int j) : fld1 = i, fld2 = j {}\n"
" int fld1;\n"
" final int fld2;\n"
" final int bigint_fld = 0xfffffffffff;\n"
" static int fld3;\n"
" static final int smi_sfld = 10;\n"
" static final int bigint_sfld = 0xfffffffffff;\n"
"}\n"
"class FieldsTest {\n"
" static Fields testMain() {\n"
" Expect.equals(true, Fields.bigint_sfld == 0xfffffffffff);\n"
" Fields obj = new Fields(10, 20);\n"
" Expect.equals(true, obj.bigint_fld == 0xfffffffffff);\n"
" return obj;\n"
" }\n"
"}\n";
Dart_Handle result;

uint8_t* buffer;

// Start an Isolate, load a script and create a full snapshot.
Timer timer1(true, "Snapshot_test");
timer1.Start();
{
TestIsolateScope __test_isolate__;

// Create a test library and Load up a test script in it.
TestCase::LoadTestScript(kScriptChars, NULL);
timer1.Stop();
OS::PrintErr("Without Snapshot: %dus\n", timer1.TotalElapsedTime());

// Write snapshot with object content.
Isolate* isolate = Isolate::Current();
Zone zone(isolate);
HandleScope scope(isolate);
SnapshotWriter writer(Snapshot::kFull, &buffer, &malloc_allocator);
writer.WriteFullSnapshot();
}

// Now Create another isolate using the snapshot and execute a method
// from the script.
Timer timer2(true, "Snapshot_test");
timer2.Start();
TestCase::CreateTestIsolateFromSnapshot(buffer);
{
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.
timer2.Stop();
OS::PrintErr("From Snapshot: %dus\n", timer2.TotalElapsedTime());

// Invoke a function which returns an object.
Dart_Handle cls =
Dart_GetClass(TestCase::lib(), Dart_NewString("FieldsTest"));
result = Dart_Invoke(cls, Dart_NewString("testMain"), 0, NULL);
EXPECT_VALID(result);
Dart_ExitScope();
}
Dart_ShutdownIsolate();
free(buffer);
}


UNIT_TEST_CASE(FullSnapshot1) {
// This buffer has to be static for this to compile with Visual Studio.
// If it is not static compilation of this file with Visual Studio takes
// more than 30 minutes!
static const char kFullSnapshotScriptChars[] = {
#include "snapshot_test.dat"
};
const char* kScriptChars = kFullSnapshotScriptChars;

uint8_t* buffer;

// Start an Isolate, load a script and create a full snapshot.
Timer timer1(true, "Snapshot_test");
timer1.Start();
{
TestIsolateScope __test_isolate__;

Isolate* isolate = Isolate::Current();
Zone zone(isolate);
HandleScope scope(isolate);

// Create a test library and Load up a test script in it.
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
ClassFinalizer::FinalizePendingClasses();
timer1.Stop();
OS::PrintErr("Without Snapshot: %dus\n", timer1.TotalElapsedTime());

// Write snapshot with object content.
SnapshotWriter writer(Snapshot::kFull, &buffer, &malloc_allocator);
writer.WriteFullSnapshot();

// Invoke a function which returns an object.
Dart_Handle cls = Dart_GetClass(lib, Dart_NewString("FieldsTest"));
Dart_Handle result = Dart_Invoke(cls, Dart_NewString("testMain"), 0, NULL);
EXPECT_VALID(result);
}

// Now Create another isolate using the snapshot and execute a method
// from the script.
Timer timer2(true, "Snapshot_test");
timer2.Start();
TestCase::CreateTestIsolateFromSnapshot(buffer);
{
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.
timer2.Stop();
OS::PrintErr("From Snapshot: %dus\n", timer2.TotalElapsedTime());

// Invoke a function which returns an object.
Dart_Handle cls = Dart_GetClass(TestCase::lib(),
Dart_NewString("FieldsTest"));
Dart_Handle result = Dart_Invoke(cls, Dart_NewString("testMain"), 0, NULL);
if (Dart_IsError(result)) {
// Print the error. It is probably an unhandled exception.
fprintf(stderr, "%s\n", Dart_GetError(result));
}
EXPECT_VALID(result);
Dart_ExitScope();
}
Dart_ShutdownIsolate();
free(buffer);
}


UNIT_TEST_CASE(ScriptSnapshot) {
const char* kLibScriptChars =
"#library('dart:import-lib');"
"class LibFields {"
" LibFields(int i, int j) : fld1 = i, fld2 = j {}"
" int fld1;"
" final int fld2;"
"}";
const char* kScriptChars =
"class Fields {"
" Fields(int i, int j) : fld1 = i, fld2 = j {}"
" int fld1;"
" final int fld2;"
" static int fld3;"
" static final int fld4 = 10;"
"}"
"class FieldsTest {"
" static Fields testMain() {"
" Fields obj = new Fields(10, 20);"
" Fields.fld3 = 100;"
" if (obj === null) {"
" throw new Exception('Allocation failure');"
" }"
" if (obj.fld1 != 10) {"
" throw new Exception('fld1 needs to be 10');"
" }"
" if (obj.fld2 != 20) {"
" throw new Exception('fld2 needs to be 20');"
" }"
" if (Fields.fld3 != 100) {"
" throw new Exception('Fields.fld3 needs to be 100');"
" }"
" if (Fields.fld4 != 10) {"
" throw new Exception('Fields.fld4 needs to be 10');"
" }"
" return obj;"
" }"
"}";
Dart_Handle result;

uint8_t* buffer;
intptr_t size;
uint8_t* full_snapshot = NULL;
uint8_t* script_snapshot = NULL;
intptr_t expected_num_libs;
intptr_t actual_num_libs;

{
// Start an Isolate, and create a full snapshot of it.
TestIsolateScope __test_isolate__;
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.

// Write out the script snapshot.
result = Dart_CreateSnapshot(&buffer, &size);
EXPECT_VALID(result);
full_snapshot = reinterpret_cast<uint8_t*>(malloc(size));
memmove(full_snapshot, buffer, size);
Dart_ExitScope();
}

{
// Create an Isolate using the full snapshot, load a script and create
// a script snapshot of the script.
TestCase::CreateTestIsolateFromSnapshot(full_snapshot);
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.

// Load the library.
Dart_Handle import_map = Dart_NewList(0);
Dart_Handle import_lib = Dart_LoadLibrary(Dart_NewString("dart:import-lib"),
Dart_NewString(kLibScriptChars),
import_map);
EXPECT_VALID(import_lib);

// Create a test library and Load up a test script in it.
TestCase::LoadTestScript(kScriptChars, NULL);

EXPECT_VALID(Dart_LibraryImportLibrary(TestCase::lib(), import_lib));

// Get list of library URLs loaded and save the count.
Dart_Handle libs = Dart_GetLibraryURLs();
EXPECT(Dart_IsList(libs));
Dart_ListLength(libs, &expected_num_libs);

// Write out the script snapshot.
result = Dart_CreateScriptSnapshot(&buffer, &size);
EXPECT_VALID(result);
script_snapshot = reinterpret_cast<uint8_t*>(malloc(size));
memmove(script_snapshot, buffer, size);
Dart_ExitScope();
Dart_ShutdownIsolate();
}

{
// Now Create an Isolate using the full snapshot and load the
// script snapshot created above and execute it.
TestCase::CreateTestIsolateFromSnapshot(full_snapshot);
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.

// Load the test library from the snapshot.
EXPECT(script_snapshot != NULL);
result = Dart_LoadScriptFromSnapshot(script_snapshot);
EXPECT_VALID(result);

// Get list of library URLs loaded and compare with expected count.
Dart_Handle libs = Dart_GetLibraryURLs();
EXPECT(Dart_IsList(libs));
Dart_ListLength(libs, &actual_num_libs);

EXPECT_EQ(expected_num_libs, actual_num_libs);

// Invoke a function which returns an object.
Dart_Handle cls = Dart_GetClass(result, Dart_NewString("FieldsTest"));
result = Dart_Invoke(cls, Dart_NewString("testMain"), 0, NULL);
EXPECT_VALID(result);
Dart_ExitScope();
}
Dart_ShutdownIsolate();
free(full_snapshot);
free(script_snapshot);
}


TEST_CASE(IntArrayMessage) {
Zone zone(Isolate::Current());
uint8_t* buffer = NULL;
ApiMessageWriter writer(&buffer, &zone_allocator);

static const int kArrayLength = 2;
intptr_t data[kArrayLength] = {1, 2};
int len = kArrayLength;
writer.WriteMessage(len, data);

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(Dart_CObject::kInt32, element->type);
EXPECT_EQ(i + 1, element->value.as_int32);
}
CheckEncodeDecodeMessage(root);
}


// Helper function to call a top level Dart function, serialize the
// result and deserialize the result into a Dart_CObject structure.
static Dart_CObject* GetDeserializedDartMessage(Dart_Handle lib,
const char* dart_function) {
Dart_Handle result;
result = Dart_Invoke(lib, Dart_NewString(dart_function), 0, NULL);
EXPECT_VALID(result);

// Serialize the list into a message.
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
const Object& list = Object::Handle(Api::UnwrapHandle(result));
writer.WriteObject(list.raw());
writer.FinalizeBuffer();

// Read object back from the snapshot into a C structure.
return DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
}


UNIT_TEST_CASE(DartGeneratedMessages) {
static const char* kCustomIsolateScriptChars =
"getSmi() {\n"
" return 42;\n"
"}\n"
"getBigint() {\n"
" return -0x424242424242424242424242424242424242;\n"
"}\n"
"getString() {\n"
" return \"Hello, world!\";\n"
"}\n"
"getList() {\n"
" return new List(kArrayLength);\n"
"}\n";

TestCase::CreateTestIsolate();
Isolate* isolate = Isolate::Current();
EXPECT(isolate != NULL);
Dart_EnterScope();

Dart_Handle lib = TestCase::LoadTestScript(kCustomIsolateScriptChars,
NULL);
EXPECT_VALID(lib);
Dart_Handle smi_result;
smi_result = Dart_Invoke(lib, Dart_NewString("getSmi"), 0, NULL);
EXPECT_VALID(smi_result);
Dart_Handle bigint_result;
bigint_result = Dart_Invoke(lib, Dart_NewString("getBigint"), 0, NULL);
EXPECT_VALID(bigint_result);
Dart_Handle string_result;
string_result = Dart_Invoke(lib, Dart_NewString("getString"), 0, NULL);
EXPECT_VALID(string_result);
EXPECT(Dart_IsString(string_result));

{
DARTSCOPE_NOCHECKS(isolate);

{
Zone zone(Isolate::Current());
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
Smi& smi = Smi::Handle();
smi ^= Api::UnwrapHandle(smi_result);
writer.WriteObject(smi.raw());
writer.FinalizeBuffer();

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kInt32, root->type);
EXPECT_EQ(42, root->value.as_int32);
CheckEncodeDecodeMessage(root);
}
{
Zone zone(Isolate::Current());
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
Bigint& bigint = Bigint::Handle();
bigint ^= Api::UnwrapHandle(bigint_result);
writer.WriteObject(bigint.raw());
writer.FinalizeBuffer();

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kBigint, root->type);
EXPECT_STREQ("-424242424242424242424242424242424242",
root->value.as_bigint);
CheckEncodeDecodeMessage(root);
}
{
Zone zone(Isolate::Current());
uint8_t* buffer;
SnapshotWriter writer(Snapshot::kMessage, &buffer, &zone_allocator);
String& str = String::Handle();
str ^= Api::UnwrapHandle(string_result);
writer.WriteObject(str.raw());
writer.FinalizeBuffer();

// Read object back from the snapshot into a C structure.
ApiNativeScope scope;
Dart_CObject* root = DecodeMessage(buffer + Snapshot::kHeaderSize,
writer.BytesWritten(),
&zone_allocator);
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kString, root->type);
EXPECT_STREQ("Hello, world!", root->value.as_string);
CheckEncodeDecodeMessage(root);
}
}
Dart_ExitScope();
Dart_ShutdownIsolate();
}


UNIT_TEST_CASE(DartGeneratedListMessages) {
const int kArrayLength = 10;
static const char* kScriptChars =
"final int kArrayLength = 10;\n"
"getList() {\n"
" return new List(kArrayLength);\n"
"}\n"
"getIntList() {\n"
" var list = new List<int>(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = i;\n"
" return list;\n"
"}\n"
"getStringList() {\n"
" var list = new List<String>(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = i.toString();\n"
" return list;\n"
"}\n"
"getMixedList() {\n"
" var list = new List(kArrayLength);\n"
" list[0] = 0;\n"
" list[1] = '1';\n"
" list[2] = 2.2;\n"
" list[3] = true;\n"
" return list;\n"
"}\n";

TestCase::CreateTestIsolate();
Isolate* isolate = Isolate::Current();
EXPECT(isolate != NULL);
Dart_EnterScope();

Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
EXPECT_VALID(lib);

{
DARTSCOPE_NOCHECKS(isolate);
{
// Generate a list of nulls from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
EXPECT_EQ(Dart_CObject::kNull, root->value.as_array.values[i]->type);
}
CheckEncodeDecodeMessage(root);
}
{
// Generate a list of ints from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getIntList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
EXPECT_EQ(Dart_CObject::kInt32, root->value.as_array.values[i]->type);
EXPECT_EQ(i, root->value.as_array.values[i]->value.as_int32);
}
CheckEncodeDecodeMessage(root);
}
{
// Generate a list of strings from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getStringList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
EXPECT_EQ(Dart_CObject::kString, root->value.as_array.values[i]->type);
char buffer[3];
snprintf(buffer, sizeof(buffer), "%d", i);
EXPECT_STREQ(buffer, root->value.as_array.values[i]->value.as_string);
}
}
{
// Generate a list of objects of different types from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getMixedList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);

EXPECT_EQ(Dart_CObject::kInt32, root->value.as_array.values[0]->type);
EXPECT_EQ(0, root->value.as_array.values[0]->value.as_int32);
EXPECT_EQ(Dart_CObject::kString, root->value.as_array.values[1]->type);
EXPECT_STREQ("1", root->value.as_array.values[1]->value.as_string);
EXPECT_EQ(Dart_CObject::kDouble, root->value.as_array.values[2]->type);
EXPECT_EQ(2.2, root->value.as_array.values[2]->value.as_double);
EXPECT_EQ(Dart_CObject::kBool, root->value.as_array.values[3]->type);
EXPECT_EQ(true, root->value.as_array.values[3]->value.as_bool);

for (int i = 0; i < kArrayLength; i++) {
if (i > 3) {
EXPECT_EQ(Dart_CObject::kNull, root->value.as_array.values[i]->type);
}
}
}
}
Dart_ExitScope();
Dart_ShutdownIsolate();
}


UNIT_TEST_CASE(DartGeneratedListMessagesWithBackref) {
const int kArrayLength = 10;
static const char* kScriptChars =
"final int kArrayLength = 10;\n"
"getStringList() {\n"
" var s = 'Hello, world!';\n"
" var list = new List<String>(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = s;\n"
" return list;\n"
"}\n"
"getMintList() {\n"
" var mint = 0x7FFFFFFFFFFFFFFF;\n"
" var list = new List(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = mint;\n"
" return list;\n"
"}\n"
"getBigintList() {\n"
" var bigint = 0x1234567890123456789012345678901234567890;\n"
" var list = new List(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = bigint;\n"
" return list;\n"
"}\n"
"getDoubleList() {\n"
" var d = 3.14;\n"
" var list = new List<double>(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = d;\n"
" return list;\n"
"}\n"
"getByteArrayList() {\n"
" var byte_array = new Uint8List(256);\n"
" var list = new List(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) list[i] = byte_array;\n"
" return list;\n"
"}\n"
"getMixedList() {\n"
" var list = new List(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) {\n"
" list[i] = ((i % 2) == 0) ? 'A' : 2.72;\n"
" }\n"
" return list;\n"
"}\n"
"getSelfRefList() {\n"
" var list = new List(kArrayLength);\n"
" for (var i = 0; i < kArrayLength; i++) {\n"
" list[i] = list;\n"
" }\n"
" return list;\n"
"}\n";

TestCase::CreateTestIsolate();
Isolate* isolate = Isolate::Current();
EXPECT(isolate != NULL);
Dart_EnterScope();

Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
EXPECT_VALID(lib);

{
DARTSCOPE_NOCHECKS(isolate);

{
// Generate a list of strings from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getStringList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(root->value.as_array.values[0], element);
EXPECT_EQ(Dart_CObject::kString, element->type);
EXPECT_STREQ("Hello, world!", element->value.as_string);
}
}
{
// Generate a list of medium ints from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getMintList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(root->value.as_array.values[0], element);
EXPECT_EQ(Dart_CObject::kInt64, element->type);
}
}
{
// Generate a list of bigints from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getBigintList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(root->value.as_array.values[0], element);
EXPECT_EQ(Dart_CObject::kBigint, element->type);
}
}
{
// Generate a list of doubles from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getDoubleList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(root->value.as_array.values[0], element);
EXPECT_EQ(Dart_CObject::kDouble, element->type);
EXPECT_EQ(3.14, element->value.as_double);
}
}
{
// Generate a list of doubles from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getByteArrayList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(root->value.as_array.values[0], element);
EXPECT_EQ(Dart_CObject::kUint8Array, element->type);
EXPECT_EQ(256, element->value.as_byte_array.length);
}
}
{
// Generate a list of objects of different types from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getMixedList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
if ((i % 2) == 0) {
EXPECT_EQ(root->value.as_array.values[0], element);
EXPECT_EQ(Dart_CObject::kString, element->type);
EXPECT_STREQ("A", element->value.as_string);
} else {
EXPECT_EQ(root->value.as_array.values[1], element);
EXPECT_EQ(Dart_CObject::kDouble, element->type);
EXPECT_STREQ(2.72, element->value.as_double);
}
}
}
{
// Generate a list of objects of different types from Dart code.
ApiNativeScope scope;
Dart_CObject* root = GetDeserializedDartMessage(lib, "getSelfRefList");
EXPECT_NOTNULL(root);
EXPECT_EQ(Dart_CObject::kArray, root->type);
EXPECT_EQ(kArrayLength, root->value.as_array.length);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element = root->value.as_array.values[i];
EXPECT_EQ(Dart_CObject::kArray, element->type);
EXPECT_EQ(root, element);
}
}
}
Dart_ExitScope();
Dart_ShutdownIsolate();
}


UNIT_TEST_CASE(PostCObject) {
// Create a native port for posting from C to Dart
TestIsolateScope __test_isolate__;
const char* kScriptChars =
"#import('dart:isolate');\n"
"void main() {\n"
" var messageCount = 0;\n"
" var exception = '';\n"
" var port = new ReceivePort();\n"
" port.receive((message, replyTo) {\n"
" if (messageCount < 7) {\n"
" exception += message.toString();\n"
" } else {\n"
" exception += message.length;\n"
" for (int i = 0; i < message.length; i++) {\n"
" exception += message[i];\n"
" }\n"
" }\n"
" messageCount++;\n"
" if (messageCount == 8) throw new Exception(exception);\n"
" });\n"
" return port.toSendPort();\n"
"}\n";
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
Dart_EnterScope();

// xxx
Dart_Handle send_port = Dart_Invoke(lib, Dart_NewString("main"), 0, NULL);
EXPECT_VALID(send_port);
Dart_Handle result = Dart_GetField(send_port, Dart_NewString("_id"));
ASSERT(!Dart_IsError(result));
ASSERT(Dart_IsInteger(result));
int64_t send_port_id;
Dart_Handle result2 = Dart_IntegerToInt64(result, &send_port_id);
ASSERT(!Dart_IsError(result2));

// Setup single object message.
Dart_CObject object;

object.type = Dart_CObject::kNull;
EXPECT(Dart_PostCObject(send_port_id, &object));

object.type = Dart_CObject::kBool;
object.value.as_bool = true;
EXPECT(Dart_PostCObject(send_port_id, &object));

object.type = Dart_CObject::kBool;
object.value.as_bool = false;
EXPECT(Dart_PostCObject(send_port_id, &object));

object.type = Dart_CObject::kInt32;
object.value.as_int32 = 123;
EXPECT(Dart_PostCObject(send_port_id, &object));

object.type = Dart_CObject::kString;
object.value.as_string = const_cast<char*>("456");
EXPECT(Dart_PostCObject(send_port_id, &object));

object.type = Dart_CObject::kDouble;
object.value.as_double = 3.14;
EXPECT(Dart_PostCObject(send_port_id, &object));

object.type = Dart_CObject::kArray;
object.value.as_array.length = 0;
EXPECT(Dart_PostCObject(send_port_id, &object));

static const int kArrayLength = 10;
Dart_CObject* array =
reinterpret_cast<Dart_CObject*>(
Dart_ScopeAllocate(
sizeof(Dart_CObject) + sizeof(Dart_CObject*) * kArrayLength)); // NOLINT
array->type = Dart_CObject::kArray;
array->value.as_array.length = kArrayLength;
array->value.as_array.values =
reinterpret_cast<Dart_CObject**>(array + 1);
for (int i = 0; i < kArrayLength; i++) {
Dart_CObject* element =
reinterpret_cast<Dart_CObject*>(
Dart_ScopeAllocate(sizeof(Dart_CObject)));
element->type = Dart_CObject::kInt32;
element->value.as_int32 = i;
array->value.as_array.values[i] = element;
}
EXPECT(Dart_PostCObject(send_port_id, array));

result = Dart_RunLoop();
EXPECT(Dart_IsError(result));
EXPECT(Dart_ErrorHasException(result));
EXPECT_SUBSTRING("Exception: nulltruefalse1234563.14[]100123456789\n",
Dart_GetError(result));

Dart_ExitScope();
}

#endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).

} // namespace dart

Change log

r7810 by dgr...@google.com on May 21 (4 days ago)   Diff
result of

svn merge -r7696:7804 https://dart.googlec
ode.com/svn/branches/bleeding_edge trunk

Go to: 

Older revisions

r7470 by dgr...@google.com on May 9, 2012   Diff
result of

svn merge -r 7388:7466 https://dart.go
oglecode.com/svn/branches/bleeding_edg
e trunk
...
r7391 by dgr...@google.com on May 7, 2012   Diff
result of

svn merge -r 7232:7388 https://dart.go
oglecode.com/svn/branches/bleeding_edg
e trunk
...
r6867 by dgr...@google.com on Apr 23, 2012   Diff
result of

svn merge -r 6722:6866 https://dart.go
oglecode.com/svn/branches/bleeding_edg
e trunk
...
All revisions of this file

File info

Size: 54641 bytes, 1549 lines
Powered by Google Project Hosting