aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/serializer/built-in/driver.cxx
blob: f5c1e3ac052835e9a0610e5312745c8b756ae66c (plain)
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
// file      : tests/cxx/serializer/built-in/driver.cxx
// copyright : Copyright (c) 2006-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

// Test built-in type serialization.
//

#include <stdlib.h> // strtof, strtod
#include <string.h> // memcpy, strlen, strcmp
#include <fstream>
#include <iostream>

#include "test-sskel.hxx"

using namespace std;
using namespace test;

struct any_type_simpl: xml_schema::any_type_simpl
{
  virtual void
  _serialize_attributes ()
  {
    _attribute ("foo", "one");
    _attribute ("test", "foo", "two");
  }

  virtual void
  _serialize_content ()
  {
    _start_element ("test", "inner");
    _characters ("hello");
    _end_element ();
  }
};
/*
struct any_simple_type_simpl: xml_schema::any_simple_type_simpl
{
  virtual void
  _serialize_content ()
  {
    _characters ("hello");
  }
};
*/

struct root_simpl: root_sskel
{
  virtual void
  pre ()
  {
    boolean_ = 0;
    byte_ = 0;
    unsigned_byte_ = 0;
    short__ = 0;
    unsigned_short_ = 0;
    int__ = 0;
    unsigned_int_ = 0;
    long__ = 0;
    unsigned_long_ = 0;

    integer_ = 0;
    negative_integer_ = 0;
    non_positive_integer_ = 0;
    positive_integer_ = 0;
    non_negative_integer_ = 0;

    float__ = 0;
    double__ = 0;
    decimal_ = 0;

    string_ = 0;
    normalized_string_ = 0;
    token_ = 0;
    name_ = 0;
    nmtoken_ = 0;
    nmtokens_ = 0;
    ncname_ = 0;
    id_ = 0;
    idref_ = 0;
    idrefs_ = 0;
    language_ = 0;
    uri_ = 0;
    qname_ = 0;

    base64_binary_ = 0;
    hex_binary_ = 0;

    gday_ = 0;
    gmonth_ = 0;
    gyear_ = 0;
    gmonth_day_ = 0;
    gyear_month_ = 0;
    date_ = 0;
    time_ = 0;
    date_time_ = 0;
    duration_ = 0;
  }

  virtual bool
  boolean_next ()
  {
    return boolean_ < 2;
  }

  virtual bool
  boolean ()
  {
    static const bool v[] = {true, false};
    return v[boolean_++];
  }

  virtual bool
  byte_next ()
  {
    return byte_ < 4;
  }

  virtual signed char
  byte ()
  {
    static const signed char v[] = {-128, -123, 0, 127};
    return v[byte_++];
  }

  virtual bool
  unsigned_byte_next ()
  {
    return unsigned_byte_ < 3;
  }

  virtual unsigned char
  unsigned_byte ()
  {
    static const unsigned char v[] = {0, 123, 255};
    return v[unsigned_byte_++];
  }

  virtual bool
  short__next ()
  {
    return short__ < 4;
  }

  virtual short
  short_ ()
  {
    static const short v[] = {-32768, -12345, 0, 32767};
    return v[short__++];
  }

  virtual bool
  unsigned_short_next ()
  {
    return unsigned_short_ < 3;
  }

  virtual unsigned short
  unsigned_short ()
  {
    static const unsigned short v[] = {0, 12345, 65535};
    return v[unsigned_short_++];
  }

  virtual bool
  int__next ()
  {
    return int__ < 4;
  }

  virtual int
  int_ ()
  {
    static const int v[] = {-2147483648, -1234567890, 0, 2147483647};
    return v[int__++];
  }

  virtual bool
  unsigned_int_next ()
  {
    return unsigned_int_ < 3;
  }

  virtual unsigned int
  unsigned_int ()
  {
    static const unsigned int v[] = {0, 1234567890, 4294967295};
    return v[unsigned_int_++];
  }

  virtual bool
  long__next ()
  {
    return long__ < 4;
  }

  virtual bool
  unsigned_long_next ()
  {
    return unsigned_long_ < 3;
  }

#ifdef XSDE_LONGLONG
  virtual long long
  long_ ()
  {
    static const long long v[] =
    {
      -9223372036854775807LL, -1234567890123456789LL,
      0LL, 9223372036854775807LL
    };

    return long__ == 0 ? (v[long__++] - 1) : v[long__++];
  }

  virtual unsigned long long
  unsigned_long ()
  {
    static const unsigned long long v[] =
    {
      0ULL, 12345678901234567890ULL, 18446744073709551615ULL
    };

    return v[unsigned_long_++];
  }
#else
  virtual long
  long_ ()
  {
    static const long v[] = {-2147483647L, -1234567890L, 0L, 2147483647L};
    return long__ == 0 ? (v[long__++] - 1) : v[long__++];
  }

  virtual unsigned long
  unsigned_long ()
  {
    static const unsigned long v[] = {0UL, 1234567890UL, 4294967295UL};
    return v[unsigned_long_++];
  }
#endif

  //
  //
  virtual bool
  integer_next ()
  {
    return integer_ < 4;
  }

  virtual long
  integer ()
  {
    static const long v[] = {-2147483647L, -1234567890L, 0L, 2147483647L};
    return integer_ == 0 ? (v[integer_++] - 1) : v[integer_++];
  }

  virtual bool
  negative_integer_next ()
  {
    return negative_integer_ < 2;
  }

  virtual long
  negative_integer ()
  {
    static const long v[] = {-2147483647L, -1234567890L};
    return negative_integer_ == 0
      ? (v[negative_integer_++] - 1)
      : v[negative_integer_++];
  }

  virtual bool
  non_positive_integer_next ()
  {
    return non_positive_integer_ < 3;
  }

  virtual long
  non_positive_integer ()
  {
    static const long v[] = {-2147483647L, -1234567890L, 0L};
    return non_positive_integer_ == 0
      ? (v[non_positive_integer_++] - 1)
      : v[non_positive_integer_++];
  }

  virtual bool
  positive_integer_next ()
  {
    return positive_integer_ < 2;
  }

  virtual unsigned long
  positive_integer ()
  {
    static const unsigned long v[] = {1234567890UL, 4294967295UL};
    return v[positive_integer_++];
  }

  virtual bool
  non_negative_integer_next ()
  {
    return non_negative_integer_ < 3;
  }

  virtual unsigned long
  non_negative_integer ()
  {
    static const unsigned long v[] = {0UL, 1234567890UL, 4294967295UL};
    return v[non_negative_integer_++];
  }

  //
  //
  virtual bool
  float__next ()
  {
    return float__ < 9;
  }

  virtual float
  float_ ()
  {
    static const float v[] = {0.0, 0.0, 0.0, 0.0, 1.0, -1.0,
                              123.567, -123.567e5, -0.45e-5};

    switch (float__)
    {
    case 0:
      {
        float__++;
        return strtof ("INF", 0);
      }
    case 1:
      {
        float__++;
        return strtof ("-INF", 0);
      }
    case 2:
      {
        float__++;
        return strtof ("NAN", 0);
      }
    default:
      {
        return v[float__++];
      }
    }
  }

  virtual bool
  double__next ()
  {
    return double__ < 9;
  }

  virtual double
  double_ ()
  {
    static const double v[] = {0.0, 0.0, 0.0, 0.0, 1.0, -1.0,
                               123.56789, -123.56789e8, -0.45E-5};

    switch (double__)
    {
    case 0:
      {
        double__++;
        return strtod ("INF", 0);
      }
    case 1:
      {
        double__++;
        return strtod ("-INF", 0);
      }
    case 2:
      {
        double__++;
        return strtod ("NAN", 0);
      }
    default:
      {
        return v[double__++];
      }
    }
  }

  virtual bool
  decimal_next ()
  {
    return decimal_ < 5;
  }

  virtual double
  decimal ()
  {
    static const double v[] = {0.0, 1.0, -1.0, 123.56789, -123.56789};
    return v[decimal_++];
  }

  //
  //

#ifdef XSDE_STL

  virtual std::string
  any_simple_type ()
  {
    return "hello";
  }

  virtual bool
  string_next ()
  {
    return string_++ < 1;
  }

  virtual std::string
  string ()
  {
    return " test \n string ";
  }

  virtual bool
  normalized_string_next ()
  {
    return normalized_string_++ < 1;
  }

  virtual std::string
  normalized_string ()
  {
    return "test  normalized  string";
  }

  virtual bool
  token_next ()
  {
    return token_++ < 1;
  }

  virtual std::string
  token ()
  {
    return "test token";
  }

  virtual bool
  name_next ()
  {
    return name_++ < 1;
  }

  virtual std::string
  name ()
  {
    return "as123:345-.abs";
  }

  virtual bool
  nmtoken_next ()
  {
    return nmtoken_++ < 1;
  }

  virtual std::string
  nmtoken ()
  {
    return "1as123:345-.abs";
  }

  virtual bool
  nmtokens_next ()
  {
    return nmtokens_ < 2;
  }

  virtual xml_schema::string_sequence*
  nmtokens ()
  {
    using xml_schema::string_sequence;

    switch (nmtokens_++)
    {
    case 0:
      {
        string_sequence* r = new string_sequence;
        r->push_back ("one");
        return r;
      }
    case 1:
      {
        string_sequence* r = new string_sequence;
        r->push_back ("one");
        r->push_back ("two");
        r->push_back ("three");
        return r;
      }
    default:
      return 0;
    }
  }

  virtual bool
  ncname_next ()
  {
    return ncname_++ < 1;
  }

  virtual std::string
  ncname ()
  {
    return "as123_345-.abs";
  }

  virtual bool
  id_next ()
  {
    return id_ < 4;
  }

  virtual std::string
  id ()
  {
    static const char* v[] = {"as123_345-.abs", "one", "two", "three"};
    return v[id_++];
  }

  virtual bool
  idref_next ()
  {
    return idref_++ < 1;
  }

  virtual std::string
  idref ()
  {
    return "as123_345-.abs";
  }

  virtual bool
  idrefs_next ()
  {
    return idrefs_ < 2;
  }

  virtual xml_schema::string_sequence*
  idrefs ()
  {
    using xml_schema::string_sequence;

    switch (idrefs_++)
    {
    case 0:
      {
        string_sequence* r = new string_sequence;
        r->push_back ("one");
        return r;
      }
    case 1:
      {
        string_sequence* r = new string_sequence;
        r->push_back ("two");
        r->push_back ("three");
        return r;
      }
    default:
      return 0;
    }
  }

  virtual bool
  language_next ()
  {
    return language_++ < 1;
  }

  virtual std::string
  language ()
  {
    return "en-us";
  }

  virtual bool
  uri_next ()
  {
    return uri_++ < 1;
  }

  virtual std::string
  uri ()
  {
    return "http://www.example.com/foo#bar";
  }

  virtual bool
  qname_next ()
  {
    return qname_ < 2;
  }

  virtual xml_schema::qname
  qname ()
  {
    using xml_schema::qname;

    switch (qname_++)
    {
    case 0:
      {
        qname r ("g1", "qname");
        return r;
      }
    case 1:
      {
        qname r ("qname");
        return r;
      }
    default:
      return qname ("bad");
    }
  }

#else

  virtual const char*
  any_simple_type ()
  {
    return "hello";
  }

  virtual bool
  string_next ()
  {
    return string_++ < 1;
  }

  virtual const char*
  string ()
  {
    return " test \n string ";
  }

  virtual bool
  normalized_string_next ()
  {
    return normalized_string_++ < 1;
  }

  virtual const char*
  normalized_string ()
  {
    return "test  normalized  string";
  }

  virtual bool
  token_next ()
  {
    return token_++ < 1;
  }

  virtual const char*
  token ()
  {
    return "test token";
  }

  virtual bool
  name_next ()
  {
    return name_++ < 1;
  }

  virtual const char*
  name ()
  {
    return "as123:345-.abs";
  }

  virtual bool
  nmtoken_next ()
  {
    return nmtoken_++ < 1;
  }

  virtual const char*
  nmtoken ()
  {
    return "1as123:345-.abs";
  }

  virtual bool
  nmtokens_next ()
  {
    return nmtokens_ < 2;
  }

  virtual const xml_schema::string_sequence*
  nmtokens ()
  {
    using xml_schema::string_sequence;

    switch (nmtokens_++)
    {
    case 0:
      {
        string_sequence* r = new string_sequence ();
        r->push_back_copy ("one");
        return r;
      }
    case 1:
      {
        string_sequence* r = new string_sequence ();
        r->push_back_copy ("one");
        r->push_back_copy ("two");
        r->push_back_copy ("three");
        return r;
      }
    default:
      return 0;
    }
  }

  virtual bool
  ncname_next ()
  {
    return ncname_++ < 1;
  }

  virtual const char*
  ncname ()
  {
    return "as123_345-.abs";
  }

  virtual bool
  id_next ()
  {
    return id_ < 4;
  }

  virtual const char*
  id ()
  {
    static const char* v[] = {"as123_345-.abs", "one", "two", "three"};
    return v[id_++];
  }

  virtual bool
  idref_next ()
  {
    return idref_++ < 1;
  }

  virtual const char*
  idref ()
  {
    return "as123_345-.abs";
  }

  virtual bool
  idrefs_next ()
  {
    return idrefs_ < 2;
  }

  virtual const xml_schema::string_sequence*
  idrefs ()
  {
    using xml_schema::string_sequence;

    switch (idrefs_++)
    {
    case 0:
      {
        string_sequence* r = new string_sequence ();
        r->push_back_copy ("one");
        return r;
      }
    case 1:
      {
        string_sequence* r = new string_sequence ();
        r->push_back_copy ("two");
        r->push_back_copy ("three");
        return r;
      }
    default:
      return 0;
    }
  }

  virtual bool
  language_next ()
  {
    return language_++ < 1;
  }

  virtual const char*
  language ()
  {
    return "en-us";
  }

  virtual bool
  uri_next ()
  {
    return uri_++ < 1;
  }

  virtual const char*
  uri ()
  {
    return "http://www.example.com/foo#bar";
  }

  virtual bool
  qname_next ()
  {
    return qname_ < 2;
  }

  virtual const xml_schema::qname*
  qname ()
  {
    using xml_schema::qname;

    switch (qname_++)
    {
    case 0:
      {
        qname* r = new qname ();
        r->prefix_copy ("g1");
        r->name_copy ("qname");
        return r;
      }
    case 1:
      {
        qname* r = new qname ();
        r->name_copy ("qname");
        return r;
      }
    default:
      return 0;
    }
  }
#endif

  //
  //
  virtual bool
  base64_binary_next ()
  {
    return base64_binary_ < 6;
  }

  virtual const xml_schema::buffer*
  base64_binary ()
  {
    xml_schema::buffer* r = new xml_schema::buffer ();

    switch (base64_binary_++)
    {
    case 0:
      {
        // Empty buffer.
        //
        break;
      }
    case 1:
      {
        const char data[] = "12345abcjk";
        const size_t size = sizeof (data) - 1;
        r->size (size);
        memcpy (r->data (), data, size);
        break;
      }
    case 2:
      {
        const char data[] = "a";
        const size_t size = sizeof (data) - 1;
        r->size (size);
        memcpy (r->data (), data, size);
        break;
      }
    case 3:
      {
        const char data[] = "ab";
        const size_t size = sizeof (data) -1;
        r->size (size);
        memcpy (r->data (), data, size);
        break;
      }
    case 4:
      {
        const char data[] = "abc";
        const size_t size = sizeof (data) - 1;
        r->size (size);
        memcpy (r->data (), data, size);
        break;
      }
    case 5:
      {
        const size_t size = 345;

        r->size (size);
        unsigned char v = 0;

        for (size_t i = 0; i < size; ++i)
        {
          r->data ()[i] = static_cast<char> (v++);
        }

        break;
      }
    }

    return r;
  }

  virtual bool
  hex_binary_next ()
  {
    return hex_binary_ < 3;
  }

  virtual const xml_schema::buffer*
  hex_binary ()
  {
    xml_schema::buffer* r = new xml_schema::buffer ();

    switch (hex_binary_++)
    {
    case 0:
      {
        // Empty buffer.
        //
        break;
      }
    case 1:
      {
        const char data[] = "12345abcjk";
        const size_t size = sizeof (data) - 1;
        r->size (size);
        memcpy (r->data (), data, size);
        break;
      }
    case 2:
      {
        const size_t size = 345;

        r->size (size);
        unsigned char v = 0;

        for (size_t i = 0; i < size; ++i)
        {
          r->data ()[i] = static_cast<char> (v++);
        }

        break;
      }
    }

    return r;
  }

  virtual bool
  gday_next ()
  {
    return gday_ < 3;
  }

  virtual xml_schema::gday
  gday ()
  {
    using xml_schema::gday;

    switch (gday_++)
    {
    case 0:
      return gday (23);
    case 1:
      return gday (31, 2, 30);
    case 2:
      return gday (15, 0, 0);
    }

    return gday (0);
  }

  virtual bool
  gmonth_next ()
  {
    return gmonth_ < 2;
  }

  virtual ::xml_schema::gmonth
  gmonth ()
  {
    using xml_schema::gmonth;

    switch (gmonth_++)
    {
    case 0:
      return gmonth (6);
    case 1:
      return gmonth (12, 2, 30);
    }

    return gmonth (0);
  }

  virtual bool
  gyear_next ()
  {
    return gyear_ < 2;
  }

  virtual ::xml_schema::gyear
  gyear ()
  {
    using xml_schema::gyear;

    switch (gyear_++)
    {
    case 0:
      return gyear (2007);
    case 1:
      return gyear (-2007, -2, -30);
    }

    return gyear (0);
  }

  virtual bool
  gmonth_day_next ()
  {
    return gmonth_day_ < 2;
  }

  virtual ::xml_schema::gmonth_day
  gmonth_day ()
  {
    using xml_schema::gmonth_day;

    switch (gmonth_day_++)
    {
    case 0:
      return gmonth_day (6, 15);
    case 1:
      return gmonth_day (12, 31, 2, 30);
    }

    return gmonth_day (0, 0);
  }

  virtual bool
  gyear_month_next ()
  {
    return gyear_month_ < 2;
  }

  virtual ::xml_schema::gyear_month
  gyear_month ()
  {
    using xml_schema::gyear_month;

    switch (gyear_month_++)
    {
    case 0:
      return gyear_month (2007, 10);
    case 1:
      return gyear_month (-2007, 12, -2, -30);
    }

    return gyear_month (0, 0);
  }

  virtual bool
  date_next ()
  {
    return date_ < 2;
  }

  virtual ::xml_schema::date
  date ()
  {
    using xml_schema::date;

    switch (date_++)
    {
    case 0:
      return date (2007, 6, 15);
    case 1:
      return date (-2007, 12, 31, -2, -30);
    }

    return date (0, 0, 0);
  }

  virtual bool
  time_next ()
  {
    return time_ < 2;
  }

  virtual ::xml_schema::time
  time ()
  {
    using xml_schema::time;

    switch (time_++)
    {
    case 0:
      return time (12, 30, 30.0);
    case 1:
      return time (23, 59, 59.55, 2, 30);
    }

    return time (0, 0, 0);
  }

  virtual bool
  date_time_next ()
  {
    return date_time_ < 2;
  }

  virtual ::xml_schema::date_time
  date_time ()
  {
    using xml_schema::date_time;

    switch (date_time_++)
    {
    case 0:
      return date_time (2007, 6, 15, 12, 30, 30.0);
    case 1:
      return date_time (-2007, 12, 31, 23, 59, 59.55, -2, -30);
    }

    return date_time (0, 0, 0, 0, 0, 0);
  }

  virtual bool
  duration_next ()
  {
    return duration_ < 7;
  }

  virtual ::xml_schema::duration
  duration ()
  {
    using xml_schema::duration;

    switch (duration_++)
    {
    case 0:
      return duration (false, 1, 0, 0, 0, 0, 0.0);
    case 1:
      return duration (true, 0, 1, 0, 0, 0, 0.0);
    case 2:
      return duration (false, 0, 0, 1, 0, 0, 0.0);
    case 3:
      return duration (true, 0, 0, 0, 1, 0, 0.0);
    case 4:
      return duration (false, 0, 0, 0, 0, 1, 0.0);
    case 5:
      return duration (true, 0, 0, 0, 0, 0, 1.1);
    case 6:
      return duration (false, 1, 2, 3, 4, 5, 6.7);
    }

    return duration (false, 0, 0, 0, 0, 0, 0);
  }

private:
  int boolean_;
  int byte_;
  int unsigned_byte_;
  int short__;
  int unsigned_short_;
  int int__;
  int unsigned_int_;
  int long__;
  int unsigned_long_;

  int integer_;
  int negative_integer_;
  int non_positive_integer_;
  int positive_integer_;
  int non_negative_integer_;

  int float__;
  int double__;
  int decimal_;

  int string_;
  int normalized_string_;
  int token_;
  int name_;
  int nmtoken_;
  int nmtokens_;
  int ncname_;
  int id_;
  int idref_;
  int idrefs_;
  int language_;
  int uri_;
  int qname_;

  int base64_binary_;
  int hex_binary_;

  int gday_;
  int gmonth_;
  int gyear_;
  int gmonth_day_;
  int gyear_month_;
  int date_;
  int time_;
  int date_time_;
  int duration_;
};

int
main (int argc, char* argv[])
{
  if (argc != 2)
  {
    cerr << "usage: " << argv[0] << " <test-id>" << endl;
    return 1;
  }

  // Ignore one of the tests depending on whether long long is available.
  //
  {
    char* s = argv[1];
    size_t n = strlen (s);

    if (strcmp (s + n - 12,
#ifdef XSDE_LONGLONG
                "test-000.xml"
#else
                "test-001.xml"
#endif
        ) == 0)
    {
      s[n - 3] = 's';
      s[n - 2] = 't';
      s[n - 1] = 'd';

      ifstream ifs (s);
      cout << ifs.rdbuf ();
      return 0;
    }
  }

  any_type_simpl any_type_s;
  xml_schema::any_simple_type_simpl any_simple_type_s;

  xml_schema::boolean_simpl boolean_s;

  xml_schema::byte_simpl byte_s;
  xml_schema::unsigned_byte_simpl unsigned_byte_s;
  xml_schema::short_simpl short_s;
  xml_schema::unsigned_short_simpl unsigned_short_s;
  xml_schema::int_simpl int_s;
  xml_schema::unsigned_int_simpl unsigned_int_s;
  xml_schema::long_simpl long_s;
  xml_schema::unsigned_long_simpl unsigned_long_s;

  xml_schema::integer_simpl integer_s;
  xml_schema::negative_integer_simpl negative_integer_s;
  xml_schema::non_positive_integer_simpl non_sositive_integer_s;
  xml_schema::positive_integer_simpl positive_integer_s;
  xml_schema::non_negative_integer_simpl non_negative_integer_s;

  xml_schema::float_simpl float_s;
  xml_schema::double_simpl double_s;
  xml_schema::decimal_simpl decimal_s;

  xml_schema::string_simpl string_s;
  xml_schema::normalized_string_simpl normalized_string_s;
  xml_schema::token_simpl token_s;
  xml_schema::name_simpl name_s;
  xml_schema::nmtoken_simpl nmtoken_s;
  xml_schema::ncname_simpl ncname_s;
  xml_schema::id_simpl id_s;
  xml_schema::idref_simpl idref_s;

  xml_schema::language_simpl language_s;
  xml_schema::uri_simpl uri_s;

#ifdef XSDE_STL
  xml_schema::qname_simpl qname_s;
#else
  xml_schema::qname_simpl qname_s (true);
#endif

  xml_schema::idrefs_simpl idrefs_s (true);
  xml_schema::nmtokens_simpl nmtokens_s (true);

  xml_schema::base64_binary_simpl base64_binary_s (true);
  xml_schema::hex_binary_simpl hex_binary_s (true);

  xml_schema::gday_simpl gday_s;
  xml_schema::gmonth_simpl gmonth_s;
  xml_schema::gyear_simpl gyear_s;
  xml_schema::gmonth_day_simpl gmonth_day_s;
  xml_schema::gyear_month_simpl gyear_month_s;
  xml_schema::date_simpl date_s;
  xml_schema::time_simpl time_s;
  xml_schema::date_time_simpl date_time_s;
  xml_schema::duration_simpl duration_s;

  root_simpl root_s;

  root_s.serializers (any_type_s,
                      any_simple_type_s,
                      boolean_s,
                      byte_s,
                      unsigned_byte_s,
                      short_s,
                      unsigned_short_s,
                      int_s,
                      unsigned_int_s,
                      long_s,
                      unsigned_long_s,
                      integer_s,
                      negative_integer_s,
                      non_sositive_integer_s,
                      positive_integer_s,
                      non_negative_integer_s,
                      float_s,
                      double_s,
                      decimal_s,
                      string_s,
                      normalized_string_s,
                      token_s,
                      name_s,
                      nmtoken_s,
                      nmtokens_s,
                      ncname_s,
                      id_s,
                      idref_s,
                      idrefs_s,
                      language_s,
                      uri_s,
                      qname_s,
                      base64_binary_s,
                      hex_binary_s,
                      gday_s,
                      gmonth_s,
                      gyear_s,
                      gmonth_day_s,
                      gyear_month_s,
                      date_s,
                      time_s,
                      date_time_s,
                      duration_s);

  xml_schema::document_simpl doc_s (root_s, "test", "root");

  root_s.pre ();
  doc_s.serialize (cout);
  root_s.post ();

  return 0;
}