summaryrefslogtreecommitdiffstats
path: root/examples/serialize.c
blob: 1ee327a66f4abec2dc3afdbb86f07db23e65d488 (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
/*******************************************************************************
 * Copyright (C) 2004-2006 Intel Corp. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *  - Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 *  - Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 *  - Neither the name of Intel Corp. nor the names of its
 *    contributors may be used to endorse or promote products derived from this
 *    software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL Intel Corp. OR THE CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *******************************************************************************/

/** 
 * @author Vadim Revyakin
 */




#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>

#include "wsman-api.h"

#define CLASSNAME "Sample"

/*
 ************************************************************************

          HOW TO USE SERIALIZATION / DESERIALIZATION

    Serialization/deserialization of unsignedByte, unsignedShort,
 unsignedInt, boolean and string built-n XML Schema types is now supported.
 It is possible to serialize/deserialize structures, static and dynamic
 size arrays constructed from these types.

   For example, let us have the following schema:
   <xsd:element name="SAMPLE">
      <xsd:complexType>
        <xsd:sequence>
          <xsd:element name="STRING" type="xsd:string"/>
          <xsd:element name="BOOL" type="xsd:boolean"/>
          <xsd:element name="BYTE" type="xsd:unsignedByte"/>
          <xsd:element name="SHORT" type="xsd:unsignedShort"/>
          <xsd:element name="INT" type="xsd:unsignedInt"/>
          <xsd:element name="SHORTS" type="xsd:unsignedShort" minOccurs="3" maxOccurs="3"/>
          <xsd:element name="INTS" type="xsd:unsignedInt" minOccurs="0" maxOccurs="5"/>
          <xsd:element ref="FOO"  maxOccurs="unbounded"/>
        </xsd:sequence>
      </xsd:complexType>
   </xsd:element>
   <xsd:element name="FOO">
      <xsd:complexType>
        <xsd:sequence>
          <xsd:element name="FooSTRING" type="xsd:string"/>
          <xsd:element name="FooINT" type="xsd:unsignedInt"/>
          <xsd:element name="FooBOOL" type="xsd:boolean"/>
        </xsd:sequence>
      </xsd:complexType>
   </xsd:element>


   Each complex element is represented in the C programm by 2 objects - target
   structure (TS) definition and type description object (TDO) - the null
   terminated array of type XmlSerializerInfo elements. The following name
   convention exists: TDO for Foo is named Foo_TypeInfo.
   For our example these structures look the following:

    target structures:

    typedef struct {
        XML_TYPE_STR     FooString;
        XML_TYPE_UINT32  FooInt;
        XML_TYPE_BOOL    FooBoolean;
    } Foo;

    typedef struct {
        XML_TYPE_STR     String;
        XML_TYPE_BOOL    Boolean;
        XML_TYPE_UINT8   Byte;
        XML_TYPE_UINT16  Short;
        XML_TYPE_UINT32  Int;
        XML_TYPE_UINT16  Shorts[3];
        XML_TYPE_DYN_ARRAY  Ints;
        XML_TYPE_DYN_ARRAY  Foos;
   } Sample;

   Note, that the field 'Shorts' in Sample is defined as built-in array because
   the number of elements in schema is strictly defined. Elements Ints
   and Foos are defined as dynamic arrays because the number of these elements
  in the document is variable.

   For each TS an TDO is defined. Each TDS is defined by the sequence of
   defines described in wsman-xml-serializer.h. The order of defines in TDO
   must be same as the order of fields in TS.

  SER_START_ITEMS("FOO", Foo)
            // This is the beginning of the description. The first argument is the
            // name of an element in the XML schema, the second one is the name
            // of the TS type.
     SER_STR("FooSTRING", 1),
     SER_UINT32("FooINT", 1),
     SER_BOOL("FooBOOL", 1),
            // These 3 defines are for string, unsignedInt and boolean XML types
            // accordingly. The first argument is the name of an element in the XML
            // schema, the second one is the number of elements.
  SER_END_ITEMS("FOO", Foo);
            // This Define completes the definition. The arguments are same as
            // for SER_START_ITEMS.

   So if we define The TDO for Foo type. It looks like:
       XmlSerializerInfo Foo_TypeInfo[] = {
         ................
       };
   There are some Defines to add XmlSerializerInfo's for basic types XML_TYPE_UINT8,
   XML_TYPE_UINT16, XML_TYPE_UINT32, XML_TYPE_BOOL and XML_TYPE_STR:
       SER_TYPEINFO_UINT8;
       SER_TYPEINFO_UINT16;
       SER_TYPEINFO_UINT32;
       SER_TYPEINFO_BOOL;
       SER_TYPEINFO_STR;
   If you use dymanic arrays of basic types you must define the corespondent
   XmlSerializerInfo before defining TDO including this dynamic array. You will
   refer to these TDOs in SER_DYN_ARRAY define and use the fourth argument for
   these types uint8, uint16, uint32, bool and string as the last argument (see
   below). 

  Let's do the same for the Sample type.

    SER_START_ITEMS(sample)
       SER_STR("STRING", 1),
       SER_BOOL("BOOL", 1),
       SER_UINT8("BYTE", 1),
       SER_UINT16("SHORT", 1),
       SER_UINT32("INT", 1),
       SER_UINT16("SHORTS", 3),
       SER_DYN_ARRAY("INTS", 0, 5, uint32),
            // This dynamic array describes XML element INTS of type unsignedInt
            // with minOccurs=0 and maxOccurs=5.
       SER_DYN_ARRAY("FOOS", 1, 0, Foo),
            // Dynamic array of Foo type elements. maxOccures=0 means
            // "unbounded" in XML schema
    SER_END_ITEMS(sample);


   These objects can be used in ws_serialize() and ws_deserialize() API.

   There are 2 sets of defines SER_IN_* and SER_OUT_*. These defines are used
   if you want to skip the elements while deserialization(serialization). If
   define SER_INOUT_* is used the element is skipped always.

   If element name is a QName (with name space prefix) the
       SER_NS_*(ns, name, ..) define set must be used.



  *****************************************************************/




static void
example1()
{

#define EX1_NS "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem"

struct __Sample_Servie
{
  XML_TYPE_BOOL AcceptPause;
  XML_TYPE_BOOL AcceptStop;
  XML_TYPE_STR Caption;
  XML_TYPE_UINT32 CheckPoint;
  XML_TYPE_STR CreationClassName;
  XML_TYPE_STR Description;
  XML_TYPE_BOOL DesktopInteract;
  XML_TYPE_STR  DisplayName;
  XML_TYPE_STR ErrorControl;
  XML_TYPE_UINT32 ExitCode;
  XML_TYPE_STR InstallDate;
  XML_TYPE_STR Name;
  XML_TYPE_STR PathName;
  XML_TYPE_UINT32 ProcessId;
  XML_TYPE_UINT32 ServiceSpecificExitCode;
  XML_TYPE_STR ServiceType;
  XML_TYPE_BOOL Started;
  XML_TYPE_STR StartMode;
  XML_TYPE_STR StartName;
  XML_TYPE_STR State;
  XML_TYPE_STR Status;
  XML_TYPE_STR SystemCreationClassName;
  XML_TYPE_STR SystemName;
  XML_TYPE_UINT32 TagId;
  XML_TYPE_UINT32 WaitHint;
};
typedef struct __Sample_Servie Sample_Servie;

Sample_Servie servie = {
        0,
        1,
        "Caption",
        30,
        "CreationClassName",
        "Description",
        1,
        "DisplayName",
        "ErrorControl",
        50,
        "InstallDate",
        "Name",
        "PathName",
        60,
        70,
        "ServiceType",
        0,
        "StartMode",
        "StartName",
        "State",
        "Status",
        "SystemCreationClassName",
        "SystemName",
        90,
        100
};

SER_START_ITEMS(Sample_Servie)
SER_BOOL("AcceptPause", 1),
SER_BOOL("AcceptStop", 1),
SER_STR("Caption", 1),
SER_UINT32("CheckPoint", 1),
SER_STR("CreationClassName", 1),
SER_STR("Description", 1),
SER_BOOL("DesktopInteract", 1),
SER_NS_STR(EX1_NS, "DisplayName", 1),
SER_STR("ErrorControl", 1),
SER_UINT32("ExitCode", 1),
SER_STR("InstallDate", 1),
SER_STR("Name", 1),
SER_STR("PathName", 1),
SER_UINT32("ProcessId", 1),
SER_UINT32("ServiceSpecificExitCode", 1),
SER_STR("ServiceType", 1),
SER_BOOL("Started", 1),
SER_STR("StartMode", 1),
SER_STR("StartName", 1),
SER_STR("State", 1),
SER_STR("Status", 1),
SER_STR("SystemCreationClassName", 1),
SER_STR("SystemName", 1),
SER_UINT32("TagId", 1),
SER_UINT32("WaitHint", 1),
SER_END_ITEMS(Sample_Servie);

WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example1. Basic types  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &servie, Sample_Servie_TypeInfo,
               CLASSNAME,
               NULL, NULL,
               0);
    printf("ws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);
    node = ws_xml_get_doc_root(doc);
    Sample_Servie *cs = (Sample_Servie *)ws_deserialize(cntx,
                                     node,
                                     Sample_Servie_TypeInfo,
                                     CLASSNAME,
                                     NULL, NULL,
                                     0, 0);
    if (cs == NULL) {
        printf("Errror ws_serialize\n");
        return;
    }
    retval = memcmp(cs, &servie, sizeof (&servie));
    if (retval) {
            printf("Not compared (%d)   -    FAILED\n", retval);
            printf("%d   :  %d\n", servie.AcceptPause, cs->AcceptPause);
            printf("%d   :  %d\n", servie.AcceptStop, cs->AcceptStop);
            printf("%s   :  %s\n", servie.Caption, cs->Caption);
   }
}




static void
example2()
{

typedef struct {
    XML_TYPE_UINT8 byte1;
    XML_TYPE_UINT32 int1;
    XML_TYPE_UINT8 byte2;
} Foo;

typedef struct {
  XML_TYPE_UINT8 byte1;
  XML_TYPE_UINT16 short1;
  XML_TYPE_UINT32 int1;
  char *string1;
  Foo  foo;
} Sample;


Sample sample = { 1, 2, 4, "string", {5, 196, 8} };

SER_START_ITEMS(Foo)
  SER_UINT8("FOOBYTE1", 1),
  SER_UINT32("FOOINT32", 1),
  SER_UINT8("FOOBYTE2", 1),
SER_END_ITEMS(Foo);


SER_START_ITEMS(Sample)
  SER_UINT8("BYTE", 1),
  SER_UINT16("SHORT", 1),
  SER_UINT32("INT32", 1),
  SER_STR("STRING", 1),
  SER_STRUCT("FOO", 1, Foo),
SER_END_ITEMS(Sample);

WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example2. Structure with pads.  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &sample, Sample_TypeInfo,
               CLASSNAME, NULL, NULL, 0);
    printf("ws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);

    node = ws_xml_get_doc_root(doc);
    Sample *cs = (Sample *)ws_deserialize(cntx,
                                     node,
                                     Sample_TypeInfo,
                                     CLASSNAME, NULL, NULL,
                                     0, 0);
    if (cs == NULL) {
        printf("Errror ws_deserialize\n");
        return;
    }

    printf("\n      initial and deserialized structures\n");
    printf("     byte1    =    %d : %d\n", sample.byte1, cs->byte1);
    printf("     short1   =    %d : %d\n", sample.short1, cs->short1);
    printf("     int1     =    %d : %d\n", sample.int1, cs->int1);
    printf("     string1  =    <%s> : <%s>\n", sample.string1, cs->string1);
    printf("     foo :\n");
    printf("        byte1    =    %d : %d\n", sample.foo.byte1, cs->foo.byte1);
    printf("        int1     =    %d : %d\n", sample.foo.int1, cs->foo.int1);
    printf("        byte2    =    %d : %d\n", sample.foo.byte2, cs->foo.byte2);
}



static void
example3()
{
typedef struct {
  XML_TYPE_UINT8 a;
  XML_TYPE_UINT8 b;
  XML_TYPE_UINT8 c;
  XML_TYPE_UINT8 pad;
  XML_TYPE_STR string;
} Sample;



SER_START_ITEMS(Sample)
SER_UINT8("a", 1),
SER_UINT8("b", 1),
SER_UINT8("c", 1),
SER_IN_UINT8("pad", 1),
SER_STR("string", 1),
SER_END_ITEMS(Sample);

Sample sample = {'a', 'b', 'c', 'x', "simple string"};
Sample *p = NULL;


WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example3. Skip elements.  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &sample, Sample_TypeInfo,
               CLASSNAME, NULL, NULL, 0);
    printf("ws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);

    printf("\n\nws_deserialize (prints original : result):\n");

    node = ws_xml_get_doc_root(doc);
    Sample *cs = (Sample *)ws_deserialize(cntx,
                                     node,
                                     Sample_TypeInfo,
                                     CLASSNAME, NULL, NULL,
                                     0, 0);
    if (cs == NULL) {
        printf("Errror ws_serialize\n");
        return;
    }

    printf("a   = %c   :  %c\n", sample.a, cs->a);
    printf("b   = %c   :  %c\n", sample.b, cs->b);
    printf("c   = %c   :  %c\n", sample.c, cs->c);
    printf("pad = %c(%d)   :  %c(%d)\n", sample.pad, sample.pad,
                                cs->pad, cs->pad);
    printf("string = <%s>   :  <%s>\n", sample.string, cs->string);
}


static void
example4()
{

typedef struct {
  XML_TYPE_BOOL a;
  XML_TYPE_STR string;
  XML_TYPE_BOOL b;
} Embed;

typedef struct {
    XML_TYPE_UINT32 A;
    Embed EMBED[2];
    XML_TYPE_STR STRING;
} Sample;


Sample sample = {
        10,
        {{1, "string 1", 0}, {0, "string 2", 1},},
        "STRING",
};

SER_START_ITEMS(Embed)
SER_BOOL("a", 1),
SER_STR("string", 1),
SER_BOOL("b", 1),
SER_END_ITEMS(Embed);

SER_START_ITEMS(Sample)
SER_UINT32("A", 1),
SER_STRUCT("EMBED", 2, Embed),
SER_STR("STRING", 1),
SER_END_ITEMS(Sample);

WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example4. Static structure array  ********\n");
    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &sample, Sample_TypeInfo,
               CLASSNAME, NULL, NULL, 0);
    printf("ws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);
}





static void
example5()
{


typedef struct {
    XML_TYPE_BOOL AcceptPause;
    XML_TYPE_STR Caption;
} Foo;

Foo foos[] = {
        {1, "Caption 1"},
        {0, "Caption 2"},
        {1, "Caption 1",},
        {0, "Caption 2",},};


SER_START_ITEMS(Foo)
SER_BOOL("AcceptPause", 1),
SER_STR("Caption", 1),
SER_END_ITEMS(Foo);

XML_TYPE_UINT16 myshorts[] = {5, 11, 14,19, 27, 36};
SER_TYPEINFO_UINT16;

typedef struct {
        XML_TYPE_STR city;
        XML_TYPE_DYN_ARRAY shorts;
        XML_TYPE_DYN_ARRAY foos;
        XML_TYPE_UINT16 tag;
} Sample;

Sample sample = { "Moscow", {6, myshorts}, {2, foos}, 99};




SER_START_ITEMS(Sample)
SER_STR("city", 1),
SER_DYN_ARRAY("shorts", 0, 1000, uint16),
SER_DYN_ARRAY("foos", 0, 1000, Foo),
SER_UINT16("tag", 1),
SER_END_ITEMS(Sample);

WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example5. Dynamic arrays  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &sample, Sample_TypeInfo,
               CLASSNAME, NULL, NULL, 0);
    printf("\n\nws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);

    node = ws_xml_get_doc_root(doc);

    printf("\n\nws_deserialize:\n");
    Sample *cs = (Sample *)ws_deserialize(cntx,
                                     node,
                                     Sample_TypeInfo,
                                     CLASSNAME, NULL, NULL,
                                     0, 0);
    if (cs == NULL) {
        printf("Errror ws_deserialize\n");
        return;
    }
    int i;
    printf("shorts count = %d\n", cs->shorts.count);
    printf("foos count   = %d\n", cs->foos.count);
    printf("\n");
    printf("    city = <%s>\n", cs->city);
    if (cs->shorts.data == NULL) {
        printf("No uint16 objects\n");
        goto AFTER_SHORTS;
    }
    unsigned short *newuints = (unsigned short *)cs->shorts.data;
    printf("    shorts = {");
    for (i = 0; i < cs->shorts.count; i++) {
        printf("%u, ", *newuints);
        newuints++;
    }
    printf("}\n");
AFTER_SHORTS:
    if (cs->foos.data == NULL) {
        printf("No foo objects\n");
        goto AFTER_FOOS;
    }
    Foo *newfoos = cs->foos.data;
    for (i = 0; i < cs->foos.count; i++) {
        printf("   ====   Foo %d =====\n", i);
        printf("    AcceptPause  =   %d\n",  newfoos->AcceptPause);
        printf("    Caption       =   <%s>\n", newfoos->Caption);
        printf("   ====   End of Foo %d =====\n", i);
        newfoos++;
    }
AFTER_FOOS:
    printf("    tag = %d\n", cs->tag);
}

static void
example6()
{
    typedef struct {
        struct {XML_TYPE_UINT8 body; XML_NODE_ATTR *attrs;} uint8_with_attrs;
        struct {XML_TYPE_UINT16 body; XML_NODE_ATTR *attrs;} uint16_with_attrs;
        struct {XML_TYPE_UINT32 body; XML_NODE_ATTR *attrs;} uint32_with_attrs;
        struct {XML_TYPE_BOOL body; XML_NODE_ATTR *attrs;} bool_with_attrs;
        struct {XML_TYPE_STR body; XML_NODE_ATTR *attrs;} str_with_attrs;
    } Dummy;

    typedef struct {
        struct {Dummy body; XML_NODE_ATTR *attrs;} struct_with_attrs;
    } Sample;

    XML_NODE_ATTR attrs[] = {
        {NULL, NULL, "Uint8AttrName1", "Uint8AttrValue1"},
        {NULL, NULL, "Uint16AttrName1", "Uint16AttrValue1"},
        {NULL, NULL, "Uint32AttrName1", "Uint32AttrValue1"},
        {NULL, NULL, "BoolAttrName1", "BoolAttrValue1"},
        {NULL, NULL, "StringAttrName1", "StringAttrValue1"},
    };
    XML_NODE_ATTR str_attrs[3] = {
        {NULL, NULL, "AttrName1", "AttrValue1"},
        {NULL, NULL, "AttrName2", "AttrValue2"},
        {NULL, XML_NS_ADDRESSING, "AttrQName", "AttrValue3"},
    };
    Sample sample = {
       {
         {
          {8, &attrs[0]},
          {16, &attrs[1]},
          {32, &attrs[2]},
          {0, &attrs[3]},
          {"string", &attrs[4]},
        },
        &str_attrs[0]
      }
    };
    str_attrs[0].next = &str_attrs[1];
    str_attrs[1].next = &str_attrs[2];

    SER_START_ITEMS(Dummy)
        SER_ATTR_NS_UINT8_FLAGS(NULL, "UINT8", 1, 0),
        SER_ATTR_NS_UINT16_FLAGS(NULL, "UINT16", 1, 0),
        SER_ATTR_NS_UINT32_FLAGS(NULL, "UINT32", 1, 0),
        SER_ATTR_NS_BOOL_FLAGS(NULL, "BOOL", 1, 0),
        SER_ATTR_NS_STR_FLAGS(NULL, "STRING", 1, 0),
    SER_END_ITEMS(Dummy);

    SER_START_ITEMS(Sample)
        SER_ATTR_NS_STRUCT_FLAGS(XML_NS_WS_MAN, "STRUCT", 1, 0, Dummy),
    SER_END_ITEMS(Sample);

    WsContextH cntx;
    WsXmlDocH doc;
    WsXmlNodeH node;
    int retval;

    printf("\n\n   ********   example5. Nodes with attributes  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &sample, Sample_TypeInfo,
               CLASSNAME, XML_NS_WS_MAN, NULL, 0);
    printf("\n\nws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);

    Sample *news;
    printf("\n\nws_deserialize:\n");
    news = (Sample *)ws_deserialize(cntx,
                                     node,
                                     Sample_TypeInfo,
                                     CLASSNAME,
                                     XML_NS_ADDRESSING,
                                     NULL, 0, 0);
    if (news == NULL) {
        printf("Errror ws_deserialize\n");
        return;
    }

    XML_NODE_ATTR *nattrs;
    Dummy *dm = &(news->struct_with_attrs.body);
    printf("****     Deserialized document  %p *****\n", news);
    printf("struct_with_attrs.body (");
    nattrs = news->struct_with_attrs.attrs;
    while (nattrs) {
        printf("%s:%s=\"%s\" ", nattrs->ns, nattrs->name, nattrs->value);
        nattrs = nattrs->next;
    }
    printf(")\n");

    printf("    uint8_with_attrs = %d (", dm->uint8_with_attrs.body);
    nattrs = dm->uint8_with_attrs.attrs;
    while (nattrs) {
        printf("%s:%s=\"%s\" ", nattrs->ns, nattrs->name, nattrs->value);
        nattrs = nattrs->next;
    }
    printf(")\n");

    printf("    uint16_with_attrs = %d (", dm->uint16_with_attrs.body);
    nattrs = dm->uint16_with_attrs.attrs;
    while (nattrs) {
        printf("%s:%s=\"%s\" ", nattrs->ns, nattrs->name, nattrs->value);
        nattrs = nattrs->next;
    }
    printf(")\n");

    printf("    uint32_with_attrs = %d (", dm->uint32_with_attrs.body);
    nattrs = dm->uint32_with_attrs.attrs;
    while (nattrs) {
        printf("%s:%s=\"%s\" ", nattrs->ns, nattrs->name, nattrs->value);
        nattrs = nattrs->next;
    }
    printf(")\n");

    printf("    bool_with_attrs = %d (", dm->bool_with_attrs.body);
    nattrs = dm->bool_with_attrs.attrs;
    while (nattrs) {
        printf("%s:%s=\"%s\" ", nattrs->ns, nattrs->name, nattrs->value);
        nattrs = nattrs->next;
    }
    printf(")\n");

    printf("    str_with_attrs = %s (", dm->str_with_attrs.body);
    nattrs = dm->str_with_attrs.attrs;
    while (nattrs) {
        printf("%s:%s=\"%s\" ", nattrs->ns, nattrs->name, nattrs->value);
        nattrs = nattrs->next;
    }
    printf(")\n");}




static void
example7()
{
    typedef struct {
        XML_TYPE_STR value;
        XML_NODE_ATTR *attrs;
    } Selector;

    SER_TYPEINFO_STRING_ATTR;


    typedef struct {
        XML_TYPE_DYN_ARRAY selectors;
    } SelectorSet;

    SER_START_ITEMS(SelectorSet)
        SER_NS_DYN_ARRAY(XML_NS_WS_MAN, WSM_SELECTOR, 0, 1000, string_attr),
    SER_END_ITEMS(SelectorSet);
 

    typedef struct {
        XML_TYPE_STR uri;
        SelectorSet selectorset;
    } ReferenceParameters;

    SER_START_ITEMS(ReferenceParameters)
       SER_NS_STR(XML_NS_WS_MAN, "ResourceURI", 1),
       SER_NS_STRUCT(XML_NS_WS_MAN, WSM_SELECTOR_SET, 1, SelectorSet),
    SER_END_ITEMS(ReferenceParameters);

    typedef struct {
        XML_TYPE_STR address;
        ReferenceParameters refparams;
    } EPR;

    SER_START_ITEMS(EPR)
        SER_NS_STR(XML_NS_ADDRESSING, WSA_ADDRESS, 1),
        SER_NS_STRUCT(XML_NS_ADDRESSING, "ReferenceParameters", 1, ReferenceParameters),
    SER_END_ITEMS(EPR);

   XML_NODE_ATTR attrs[3] = {
        {NULL, NULL, "Name", "SelName1"},
        {NULL, NULL, "Name", "SelName2"},
        {NULL, NULL, "Name", "SelName3"},
    };
    Selector selectors[] = {
         {"selector1", &attrs[0]},
         {"selector2", &attrs[1]},
         {"selector3", &attrs[2]}
   };
    EPR Epr = {
       "http://localhost:8889/wsman",
       {"http://acme.org/hardware/2005/02/storage/physDisk",
        { {3, selectors}}
       }
    };

WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example7. Endpoint Reference  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);

    retval = ws_serialize(cntx, node, &Epr, EPR_TypeInfo,
               "EndpointReference", XML_NS_ADDRESSING, NULL, 0);
    printf("\n\nws_serialize: %d\n", retval);
    ws_xml_dump_node_tree(stdout, node);

    EPR *newEPR;
    node = ws_xml_get_doc_root(doc);

    printf("\n\nws_deserialize:\n");
    newEPR = (EPR *)ws_deserialize(cntx,
                                     node,
                                     EPR_TypeInfo,
                                     "EndpointReference",
                                     XML_NS_ADDRESSING,
                                     NULL, 0, 0);
    if (newEPR == NULL) {
        printf("Errror ws_deserialize\n");
        return;
    }

    printf("****     Deserialized document   *****\n");
    printf("address             = %s\n", newEPR->address);
    printf("refparams.uri       = %s\n", newEPR->refparams.uri);
    int i;
    Selector *ss = (Selector *)newEPR->refparams.selectorset.selectors.data;
    if (ss == NULL) {
        printf("    !!!!  newEPR->refparams.selectors.data == NULL\n");
        return;
    } 
    for (i = 0; i < newEPR->refparams.selectorset.selectors.count; i++) {
        Selector *s;
        s = ss + i;
        printf("    Selector(");
        XML_NODE_ATTR *a = s->attrs;
        while (a) {
            printf("%s:%s=%s",
             a->ns ? a->ns : "", a->name, a->value);
            a = a->next;
        }
        printf(")  =  %s\n", s->value);
    }
}






/*
static void
debug_message_handler(const char *str, debug_level_e level, void *user_data)
{
    if (wsman_debug_level_debugged(level)) {
        struct tm      *tm;
        time_t          now;
        char            timestr[128];

        time(&now);
        tm = localtime(&now);
        strftime(timestr, 128, "%b %e %T", tm);
        fprintf(stderr, "%s  %s\n", timestr, str);
    }
}
*/



        // No serialization examples(shttpd_0)


static void
example106()
{
char *data = "<dummy><qq>This is qq body</qq><pp>This is pp</pp></dummy>";
//      WsXmlDocH       response;
      WsManClient *cl = wsman_create_client("mstevbakrov.ims.intel.com",
        8889,
        "/wsman",
        "http",
        "wsman",
        "secret");

      actionOptions   options;
      initialize_action_options(&options);

      WsXmlDocH   request = wsman_client_create_request(cl,
                    "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem",
                    options,
                    WSMAN_ACTION_TRANSFER_CREATE, NULL, NULL);
      WsXmlDocH d = wsman_client_read_memory(cl, data, strlen(data), NULL, 0);
ws_xml_dump_node_tree(stdout, ws_xml_get_doc_root(d));
//      WsXmlNodeH n = ws_xml_get_doc_root(d);

      ws_xml_duplicate_tree(ws_xml_get_soap_body(request), ws_xml_get_doc_root(d));
      ws_xml_destroy_doc(d);
//      ws_xml_copy_node(ws_xml_get_doc_root(d), ws_xml_get_soap_body(request));
      ws_xml_dump_node_tree(stdout, ws_xml_get_doc_root(request));
      wsman_release_client(cl);
      ws_xml_destroy_doc(request);
}



static void
example107()
{


WsContextH cntx;
WsXmlDocH doc;
WsXmlNodeH node;
int retval;

    printf("\n\n   ********   example7. Endpoint Reference  ********\n");

    cntx = wsman_create_runtime();
    if (cntx == NULL) {
        printf("Error ws_create_runtime\n");
        return;
    }
    doc = wsman_create_doc(cntx, "example");
    node = ws_xml_get_doc_root(doc);
    WsXmlAttrH attr;
    attr = ws_xml_add_node_attr(node, NULL, "Name", "Attribute");
    attr = ws_xml_add_node_attr(node, NULL, "Name", "Attribute");
}




static void
initialize_logging(void)
{
    debug_add_handler(wsman_debug_message_handler, DEBUG_LEVEL_ALWAYS, NULL);
}

int debug_level = 0;
int
main(int argc, char **argv)
{
    int num;
    int i;
    actionOptions options;
    char retval = 0;
    u_error_t *error = NULL;
    u_option_entry_t opt[] = {
        { "debug",  'd',    U_OPTION_ARG_INT,   &debug_level,
               "Set the verbosity of debugging output.",   "1-6" }
    };
    u_option_context_t *opt_ctx; 
    opt_ctx = u_option_context_new("");
    u_option_context_set_ignore_unknown_options(opt_ctx, FALSE);
    u_option_context_add_main_entries(opt_ctx, opt, "wsmid_identify");
    retval = u_option_context_parse(opt_ctx, &argc, &argv, &error);

    u_option_context_free(opt_ctx);

    if (error) {
      if (error->message)
        printf ("%s\n", error->message);
      u_error_free(error);
      return 1;
    }
    u_error_free(error);

    if (debug_level) {
        initialize_logging();
        wsman_debug_set_level(debug_level);
    }

    if (argc == 1) {
        // execute all
        example1();
        example2();
        example3();
        example4();
        example6();
        example7();
        return 0;
    }

    for (i = 1; i < argc; i++) {
        num = atoi(argv[i]);
        switch (num) {
        case 1: example1(); break;
        case 2: example2(); break;
        case 3: example3(); break;
        case 4: example4(); break;
//        case 5: example5(); break;
        case 6: example6(); break;
        case 7: example7(); break;
        case 106: example106(); break;
        case 107: example107(); break;
        default:
            printf("\n    No example%d()\n", num);
            break;
        }
    }
    return 0;
}