00001 #ifndef S11N_LITE_H_INCLUDED
00002 #define S11N_LITE_H_INCLUDED 1
00003
00004
00005
00006
00007 #define s11n_S11NLITE_INCLUDED 1
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057 namespace s11nlite { }
00058
00059 #include <memory>
00060 #include <iterator>
00061
00062 #include <s11n.net/s11n/s11n.hpp>
00063 #include <s11n.net/s11n/io/data_node_io.hpp>
00064 #include <s11n.net/s11n/client_api.hpp>
00065
00066
00067 namespace s11nlite {
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 typedef client_api<s11n::s11n_node> client_interface;
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093 typedef client_interface::node_type node_type;
00094
00095
00096 typedef client_interface::node_traits node_traits;
00097
00098
00099
00100
00101 typedef client_interface::serializer_interface serializer_interface;
00102
00103
00104
00105
00106
00107
00108
00109
00110 client_interface & instance();
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121 void instance( client_interface * newinstance );
00122
00123
00124
00125
00126
00127
00128
00129 serializer_interface * create_serializer();
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165 serializer_interface *
00166 create_serializer( const std::string & classname );
00167
00168
00169
00170
00171
00172
00173
00174 void serializer_class( const std::string & );
00175
00176
00177
00178
00179 std::string serializer_class();
00180
00181
00182
00183
00184
00185
00186 node_type *
00187 find_child( node_type & parent,
00188 const std::string subnodename );
00189
00190
00191
00192
00193 const node_type *
00194 find_child( const node_type & parent,
00195 const std::string subnodename );
00196
00197
00198
00199
00200 template <typename SerializableType>
00201 bool serialize( node_type & dest,
00202 const SerializableType & src )
00203 {
00204 return instance().template serialize<SerializableType>( dest, src );
00205 }
00206
00207
00208
00209
00210 template <typename SerializableType>
00211 bool serialize_subnode( node_type & dest,
00212 const std::string & subnodename,
00213 const SerializableType & src )
00214 {
00215 return instance().template serialize_subnode<SerializableType>( dest, subnodename, src );
00216 }
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227 bool save( const node_type & src, std::ostream & dest );
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237 bool save( const node_type & src, const std::string & filename );
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247 template <typename SerializableType>
00248 bool save( const SerializableType & src, std::ostream & dest )
00249 {
00250 return instance().template save<SerializableType>( src, dest );
00251 }
00252
00253
00254
00255
00256
00257
00258
00259
00260 template <typename SerializableType>
00261 bool save( const SerializableType & src, const std::string & dest )
00262 {
00263 return instance().template save<SerializableType>(src,dest);
00264 }
00265
00266
00267
00268
00269
00270
00271 node_type * load_node( const std::string & src );
00272
00273
00274
00275
00276
00277
00278
00279
00280 node_type * load_node( std::istream & src );
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317 template <typename SerializableType>
00318 SerializableType * deserialize( const node_type & src )
00319 {
00320 return instance().template deserialize<SerializableType>( src );
00321 }
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338 template <typename DeserializableT>
00339 bool deserialize( const node_type & src, DeserializableT & target )
00340 {
00341 return instance().template deserialize<DeserializableT>( src, target );
00342 }
00343
00344
00345
00346
00347
00348
00349
00350 template <typename DeserializableT>
00351 bool deserialize_subnode( const node_type & src,
00352 const std::string & subnodename,
00353 DeserializableT & target )
00354 {
00355 return instance().template deserialize_subnode<DeserializableT>( src, subnodename, target );
00356 }
00357
00358
00359
00360
00361
00362
00363 template <typename DeserializableT>
00364 DeserializableT * deserialize_subnode( const node_type & src,
00365 const std::string & subnodename )
00366 {
00367 return instance().template deserialize_subnode<DeserializableT>( src, subnodename );
00368 }
00369
00370
00371
00372
00373
00374
00375 template <typename SerializableType>
00376 SerializableType * load_serializable( std::istream & src )
00377 {
00378 return instance().template load_serializable<SerializableType>( src );
00379 }
00380
00381
00382
00383
00384
00385
00386 template <typename SerializableType>
00387 SerializableType * load_serializable( const std::string & src )
00388 {
00389 return instance().template load_serializable<SerializableType>( src );
00390 }
00391
00392
00393
00394
00395
00396
00397 template <typename SerializableType>
00398 SerializableType * s11n_clone( const SerializableType & tocp )
00399 {
00400 return instance().template clone<SerializableType>( tocp );
00401 }
00402
00403
00404
00405
00406 template <typename Type1, typename Type2>
00407 bool s11n_cast( const Type1 & t1, Type2 & t2 )
00408 {
00409 return instance().template cast<Type1,Type2>(t1,t2);
00410 }
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420 struct save_binary_f
00421 {
00422 typedef ::s11nlite::node_type node_type;
00423
00424
00425
00426
00427 inline bool operator()( node_type const & src, std::string const & dest ) const
00428 {
00429 return ::s11nlite::save( src, dest );
00430 }
00431
00432
00433
00434
00435 inline bool operator()( node_type const & src, std::ostream & dest ) const
00436 {
00437 return ::s11nlite::save( src, dest );
00438 }
00439
00440
00441
00442
00443 template <typename SerT>
00444 inline bool operator()( SerT const & src, std::string const & dest ) const
00445 {
00446 return ::s11nlite::save( src, dest );
00447 }
00448
00449
00450
00451
00452 template <typename SerT>
00453 inline bool operator()( SerT const & src, std::ostream & dest ) const
00454 {
00455 return ::s11nlite::save( src, dest );
00456 }
00457
00458
00459 };
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469 struct save_string_unary_f : ::s11n::serialize_unary_serializable_f_tag,
00470 ::s11n::serialize_unary_node_f_tag
00471 {
00472 typedef ::s11nlite::node_type node_type;
00473 const std::string destination;
00474
00475
00476
00477
00478
00479 explicit save_string_unary_f( std::string const & s ) : destination(s)
00480 {}
00481
00482
00483
00484
00485 bool operator()( node_type const & src ) const
00486 {
00487 return ::s11nlite::save( src, this->destination );
00488 }
00489
00490
00491
00492
00493 template <typename SerT>
00494 bool operator()( SerT const & src ) const
00495 {
00496 return ::s11nlite::save( src, this->destination );
00497 }
00498 };
00499
00500
00501
00502
00503
00504
00505
00506
00507
00508
00509
00510
00511
00512
00513
00514 struct save_stream_unary_f : ::s11n::serialize_unary_serializable_f_tag,
00515 ::s11n::serialize_unary_node_f_tag
00516 {
00517 typedef ::s11nlite::node_type node_type;
00518 std::ostream & stream;
00519
00520
00521
00522
00523 explicit save_stream_unary_f( std::ostream & os ) : stream(os)
00524 {}
00525
00526
00527
00528
00529 bool operator()( node_type const & src ) const
00530 {
00531 return ::s11nlite::save( src, this->stream );
00532 }
00533
00534
00535
00536
00537 template <typename SerT>
00538 bool operator()( SerT const & src ) const
00539 {
00540 return ::s11nlite::save( src, this->stream );
00541 }
00542 };
00543
00544
00545
00546
00547
00548
00549
00550
00551
00552
00553
00554
00555
00556
00557
00558
00559
00560
00561
00562
00563
00564
00565
00566
00567
00568
00569
00570
00571
00572
00573
00574
00575
00576
00577
00578
00579
00580
00581 template <typename T,typename OutputT>
00582 struct save_nullary_base_f
00583 {
00584 T const & source;
00585 OutputT destination;
00586
00587
00588
00589
00590
00591
00592
00593
00594 save_nullary_base_f( T const & src, OutputT dest )
00595 : source(src), destination(dest)
00596 {}
00597
00598
00599
00600 inline bool operator()() const
00601 {
00602 return ::s11nlite::save( this->source, this->destination );
00603 }
00604 };
00605
00606
00607
00608
00609 struct save_node_string_nullary_f : save_nullary_base_f< ::s11nlite::node_type, const std::string >
00610 {
00611 typedef save_nullary_base_f< ::s11nlite::node_type, const std::string > parent_t;
00612 typedef ::s11nlite::node_type node_type;
00613
00614
00615
00616
00617 save_node_string_nullary_f( node_type const & src, std::string const & dest )
00618 : parent_t( src, dest )
00619 {}
00620
00621 };
00622
00623
00624
00625
00626
00627 struct save_node_stream_nullary_f : save_nullary_base_f< ::s11nlite::node_type, std::ostream & >
00628 {
00629 typedef save_nullary_base_f< ::s11nlite::node_type, std::ostream & > parent_t;
00630 typedef ::s11nlite::node_type node_type;
00631
00632
00633
00634
00635 save_node_stream_nullary_f( node_type const & src, std::ostream & dest )
00636 : parent_t( src, dest )
00637 {}
00638 };
00639
00640
00641
00642
00643 template <typename SerT>
00644 struct save_serializable_string_nullary_f : save_nullary_base_f< SerT, const std::string >
00645 {
00646 typedef save_nullary_base_f< SerT, const std::string > parent_t;
00647
00648
00649
00650
00651 save_serializable_string_nullary_f( SerT const & src, std::string const & dest )
00652 : parent_t( src, dest )
00653 {}
00654 };
00655
00656
00657
00658
00659 template <typename SerT>
00660 struct save_serializable_stream_nullary_f : save_nullary_base_f< SerT, std::ostream & >
00661 {
00662
00663
00664
00665
00666 typedef save_nullary_base_f< SerT, std::ostream & > parent_t;
00667 save_serializable_stream_nullary_f( SerT const & src, std::ostream & dest )
00668 : parent_t( src, dest )
00669 {}
00670 };
00671
00672
00673
00674
00675
00676 template <typename SerT>
00677 inline save_serializable_string_nullary_f<SerT>
00678 save_nullary_f( SerT const & src, std::string const & dest )
00679 {
00680 return save_serializable_string_nullary_f<SerT>( src, dest );
00681 }
00682
00683
00684
00685
00686 template <typename SerT>
00687 inline save_serializable_stream_nullary_f<SerT>
00688 save_nullary_f( SerT const & src, std::ostream & dest )
00689 {
00690 return save_serializable_stream_nullary_f<SerT>( src, dest );
00691 }
00692
00693
00694
00695
00696 inline save_node_string_nullary_f
00697 save_nullary_f( node_type const & src, std::string const & dest )
00698 {
00699 return save_node_string_nullary_f( src, dest );
00700 }
00701
00702
00703
00704 inline save_node_stream_nullary_f
00705 save_nullary_f( node_type const & src, std::ostream & dest )
00706 {
00707 return save_node_stream_nullary_f( src, dest );
00708 }
00709
00710
00711
00712
00713
00714
00715
00716
00717
00718 struct load_node_stream_nullary_f
00719 {
00720 std::istream & stream;
00721 typedef ::s11nlite::node_type node_type;
00722
00723
00724
00725
00726 explicit load_node_stream_nullary_f( std::istream & s ) : stream(s)
00727 {}
00728
00729
00730
00731
00732
00733
00734 inline node_type * operator()() const
00735 {
00736 return ::s11nlite::load_node( this->stream );
00737 }
00738 };
00739
00740
00741
00742
00743 struct load_node_nullary_string_f
00744 {
00745 typedef ::s11nlite::node_type node_type;
00746 const std::string resource;
00747
00748
00749
00750
00751
00752 explicit load_node_nullary_string_f( std::string const & s ) : resource(s)
00753 {}
00754
00755
00756
00757
00758
00759
00760 inline node_type * operator()() const
00761 {
00762 return ::s11nlite::load_node( this->resource );
00763 }
00764 };
00765
00766
00767
00768
00769
00770 inline load_node_nullary_string_f
00771 load_node_nullary_f( std::string const & s )
00772 {
00773 return load_node_nullary_string_f(s);
00774 }
00775
00776
00777
00778
00779 inline load_node_stream_nullary_f
00780 load_node_nullary_f( std::istream & s )
00781 {
00782 return load_node_stream_nullary_f(s);
00783 }
00784
00785
00786
00787
00788
00789 struct load_node_unary_f
00790 {
00791
00792
00793
00794
00795 inline bool operator()( std::string const & src ) const
00796 {
00797 return ::s11nlite::load_node( src );
00798 }
00799
00800
00801
00802
00803 inline bool operator()( std::istream & src ) const
00804 {
00805 return ::s11nlite::load_node( src );
00806 }
00807 };
00808
00809
00810 }
00811
00812 #endif // S11N_LITE_H_INCLUDED