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
pub mod version {


    //! jsonrpc version field
    use serde::{Serialize, Serializer, Deserialize, Deserializer, Error};
    use serde::de::Visitor;
    #[derive(PartialEq, Debug)]
    pub enum Version { V2, }
    impl Serialize for Version {
        fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
         where S: Serializer {
            match self { &Version::V2 => serializer.visit_str("2.0"), }
        }
    }
    impl Deserialize for Version {
        fn deserialize<D>(deserializer: &mut D) -> Result<Version, D::Error>
         where D: Deserializer {
            deserializer.visit(VersionVisitor)
        }
    }
    struct VersionVisitor;
    impl Visitor for VersionVisitor {
        type
        Value
        =
        Version;
        fn visit_str<E>(&mut self, value: &str) -> Result<Self::Value, E>
         where E: Error {
            match value {
                "2.0" => Ok(Version::V2),
                _ => Err(Error::syntax("invalid version")),
            }
        }
        fn visit_string<E>(&mut self, value: String) -> Result<Self::Value, E>
         where E: Error {
            self.visit_str(value.as_ref())
        }
    }
}
pub mod id {
    //! jsonrpc id field
    use serde::{Serialize, Serializer, Deserialize, Deserializer, Error};
    use serde::de::Visitor;
    #[derive(PartialEq, Debug)]
    pub enum Id { Null, Num(u64), }
    impl Serialize for Id {
        fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
         where S: Serializer {
            match *self {
                Id::Null => serializer.visit_unit(),
                Id::Num(v) => serializer.visit_u64(v),
            }
        }
    }
    impl Deserialize for Id {
        fn deserialize<D>(deserializer: &mut D) -> Result<Id, D::Error> where
         D: Deserializer {
            deserializer.visit(IdVisitor)
        }
    }
    struct IdVisitor;
    impl Visitor for IdVisitor {
        type
        Value
        =
        Id;
        fn visit_unit<E>(&mut self) -> Result<Self::Value, E> where E: Error {
            Ok(Id::Null)
        }
        fn visit_u64<E>(&mut self, value: u64) -> Result<Self::Value, E> where
         E: Error {
            Ok(Id::Num(value))
        }
        fn visit_str<E>(&mut self, value: &str) -> Result<Self::Value, E>
         where E: Error {
            self.visit_string(value.to_owned())
        }
        fn visit_string<E>(&mut self, value: String) -> Result<Self::Value, E>
         where E: Error {
            value.parse::<u64>().map(Id::Num).map_err(|_|
                                                          Error::syntax("invalid id"))
        }
    }
    #[cfg(test)]
    mod tests {
        use super::*;
        use serde_json;
        #[test]
        fn id_deserialization() {
            let s = r#""2""#;
            let deserialized: Id = serde_json::from_str(s).unwrap();
            assert_eq!(deserialized , Id:: Num ( 2 ));
            let s = r#"[null, 0, 2, "3"]"#;
            let deserialized: Vec<Id> = serde_json::from_str(s).unwrap();
            assert_eq!(deserialized , vec ! [
                       Id:: Null , Id:: Num ( 0 ) , Id:: Num ( 2 ) , Id:: Num
                       ( 3 ) ]);
        }
        #[test]
        fn id_serialization() {
            let d =
                vec!(Id:: Null , Id:: Num ( 0 ) , Id:: Num ( 2 ) , Id:: Num (
                     3 ));
            let serialized = serde_json::to_string(&d).unwrap();
            assert_eq!(serialized , r#"[null,0,2,3]"#);
        }
    }
}
pub mod params {
    //! jsonrpc params field
    use std::collections::BTreeMap;
    use serde::{Serialize, Serializer, Deserialize, Deserializer};
    use serde::de::{Visitor, SeqVisitor, MapVisitor};
    use serde::de::impls::{VecVisitor, BTreeMapVisitor};
    use super::Value;
    #[derive(PartialEq, Debug)]
    pub enum Params { Array(Vec<Value>), Map(BTreeMap<String, Value>), None, }
    impl Serialize for Params {
        fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
         where S: Serializer {
            match *self {
                Params::Array(ref vec) => vec.serialize(serializer),
                Params::Map(ref map) => map.serialize(serializer),
                Params::None => ([] as [u8; 0]).serialize(serializer),
            }
        }
    }
    struct ParamsVisitor;
    impl Deserialize for Params {
        fn deserialize<D>(deserializer: &mut D) -> Result<Params, D::Error>
         where D: Deserializer {
            deserializer.visit(ParamsVisitor)
        }
    }
    impl Visitor for ParamsVisitor {
        type
        Value
        =
        Params;
        fn visit_seq<V>(&mut self, visitor: V)
         -> Result<Self::Value, V::Error> where V: SeqVisitor {
            VecVisitor::new().visit_seq(visitor).and_then(|vec|
                                                              match vec.is_empty()
                                                                  {
                                                                  true =>
                                                                  Ok(Params::None),
                                                                  false =>
                                                                  Ok(Params::Array(vec)),
                                                              })
        }
        fn visit_map<V>(&mut self, visitor: V)
         -> Result<Self::Value, V::Error> where V: MapVisitor {
            BTreeMapVisitor::new().visit_map(visitor).and_then(|map|
                                                                   match map.is_empty()
                                                                       {
                                                                       true =>
                                                                       Ok(Params::None),
                                                                       false
                                                                       =>
                                                                       Ok(Params::Map(map)),
                                                                   })
        }
    }
    #[test]
    fn params_deserialization() {
        use serde_json;
        use std::collections::BTreeMap;
        let s = r#"[null, true, -1, 4, 2.3, "hello", [0], {"key": "value"}]"#;
        let deserialized: Params = serde_json::from_str(s).unwrap();
        let mut map = BTreeMap::new();
        map.insert("key".to_string(), Value::String("value".to_string()));
        assert_eq!(Params:: Array (
                   vec ! [
                   Value:: Null , Value:: Bool ( true ) , Value:: I64 ( - 1 )
                   , Value:: U64 ( 4 ) , Value:: F64 ( 2.3 ) , Value:: String
                   ( "hello" . to_string (  ) ) , Value:: Array (
                   vec ! [ Value:: U64 ( 0 ) ] ) , Value:: Object ( map ) ] )
                   , deserialized);
    }
}
pub mod request {
    //! jsonrpc request
    use serde::de::{Deserialize, Deserializer, Visitor, SeqVisitor,
                    MapVisitor, Error};
    use serde_json::value;
    use super::{Id, Params, Version, Value};
    /// Represents jsonrpc request which is a method call.
    #[derive(PartialEq, Debug)]
    pub struct MethodCall {
        /// A String specifying the version of the JSON-RPC protocol. 
        /// MUST be exactly "2.0".
        pub jsonrpc: Version,
        /// A String containing the name of the method to be invoked.
        pub method: String,
        /// A Structured value that holds the parameter values to be used 
        /// during the invocation of the method. This member MAY be omitted.
        pub params: Option<Params>,
        /// An identifier established by the Client that MUST contain a String,
        /// Number, or NULL value if included. If it is not included it is assumed 
        /// to be a notification. 
        pub id: Id,
    }
    impl ::serde::de::Deserialize for MethodCall {
        fn deserialize<__D>(deserializer: &mut __D)
         -> ::std::result::Result<MethodCall, __D::Error> where
         __D: ::serde::de::Deserializer {
            {
                #[allow(non_camel_case_types)]
                enum __Field { __field0, __field1, __field2, __field3, }
                impl ::serde::de::Deserialize for __Field {
                    #[inline]
                    fn deserialize<D>(deserializer: &mut D)
                     -> ::std::result::Result<__Field, D::Error> where
                     D: ::serde::de::Deserializer {
                        use std::marker::PhantomData;
                        struct __FieldVisitor<D> {
                            phantom: PhantomData<D>,
                        }
                        impl <__D> ::serde::de::Visitor for
                         __FieldVisitor<__D> where
                         __D: ::serde::de::Deserializer {
                            type
                            Value
                            =
                            __Field;
                            fn visit_usize<E>(&mut self, value: usize)
                             -> ::std::result::Result<__Field, E> where
                             E: ::serde::de::Error {
                                match value {
                                    0usize => { Ok(__Field::__field0) }
                                    1usize => { Ok(__Field::__field1) }
                                    2usize => { Ok(__Field::__field2) }
                                    3usize => { Ok(__Field::__field3) }
                                    _ => {
                                        Err(::serde::de::Error::syntax("expected a field"))
                                    }
                                }
                            }
                            fn visit_str<E>(&mut self, value: &str)
                             -> ::std::result::Result<__Field, E> where
                             E: ::serde::de::Error {
                                match value {
                                    "jsonrpc" => { Ok(__Field::__field0) }
                                    "method" => { Ok(__Field::__field1) }
                                    "params" => { Ok(__Field::__field2) }
                                    "id" => { Ok(__Field::__field3) }
                                    _ => {
                                        Err(::serde::de::Error::unknown_field(value))
                                    }
                                }
                            }
                            fn visit_bytes<E>(&mut self, value: &[u8])
                             -> ::std::result::Result<__Field, E> where
                             E: ::serde::de::Error {
                                match ::std::str::from_utf8(value) {
                                    Ok(s) => self.visit_str(s),
                                    _ => {
                                        Err(::serde::de::Error::syntax("could not convert a byte string to a String"))
                                    }
                                }
                            }
                        }
                        deserializer.visit_struct_field(__FieldVisitor::<D>{phantom:
                                                                                PhantomData,})
                    }
                }
                struct __Visitor<__D: ::serde::de::Deserializer>(::std::marker::PhantomData<__D>);
                impl <__D: ::serde::de::Deserializer> ::serde::de::Visitor for
                 __Visitor<__D> {
                    type
                    Value
                    =
                    MethodCall;
                    #[inline]
                    fn visit_seq<__V>(&mut self, mut visitor: __V)
                     -> ::std::result::Result<MethodCall, __V::Error> where
                     __V: ::serde::de::SeqVisitor {
                        {
                            let __field0 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            let __field1 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            let __field2 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            let __field3 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            try!(visitor . end (  ));
                            Ok(MethodCall{jsonrpc: __field0,
                                          method: __field1,
                                          params: __field2,
                                          id: __field3,})
                        }
                    }
                    #[inline]
                    fn visit_map<__V>(&mut self, mut visitor: __V)
                     -> ::std::result::Result<MethodCall, __V::Error> where
                     __V: ::serde::de::MapVisitor {
                        {
                            let mut __field0 = None;
                            let mut __field1 = None;
                            let mut __field2 = None;
                            let mut __field3 = None;
                            while let Some(key) =
                                      try!(visitor . visit_key (  )) {
                                match key {
                                    __Field::__field0 => {
                                        __field0 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                    __Field::__field1 => {
                                        __field1 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                    __Field::__field2 => {
                                        __field2 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                    __Field::__field3 => {
                                        __field3 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                }
                            }
                            let __field0 =
                                match __field0 {
                                    Some(__field0) => __field0,
                                    None =>
                                    try!(visitor . missing_field ( "jsonrpc"
                                         )),
                                };
                            let __field1 =
                                match __field1 {
                                    Some(__field1) => __field1,
                                    None =>
                                    try!(visitor . missing_field ( "method"
                                         )),
                                };
                            let __field2 =
                                match __field2 {
                                    Some(__field2) => __field2,
                                    None =>
                                    try!(visitor . missing_field ( "params"
                                         )),
                                };
                            let __field3 =
                                match __field3 {
                                    Some(__field3) => __field3,
                                    None =>
                                    try!(visitor . missing_field ( "id" )),
                                };
                            try!(visitor . end (  ));
                            Ok(MethodCall{jsonrpc: __field0,
                                          method: __field1,
                                          params: __field2,
                                          id: __field3,})
                        }
                    }
                }
                const FIELDS: &'static [&'static str] =
                    &["jsonrpc", "method", "params", "id"];
                deserializer.visit_struct("MethodCall", FIELDS,
                                          __Visitor::<__D>(::std::marker::PhantomData))
            }
        }
    }
    /// Represents jsonrpc request which is a notification.
    #[derive(PartialEq, Debug)]
    pub struct Notification {
        /// A String specifying the version of the JSON-RPC protocol. 
        /// MUST be exactly "2.0".
        pub jsonrpc: Version,
        /// A String containing the name of the method to be invoked.
        pub method: String,
        /// A Structured value that holds the parameter values to be used 
        /// during the invocation of the method. This member MAY be omitted.
        pub params: Option<Params>,
    }
    impl ::serde::de::Deserialize for Notification {
        fn deserialize<__D>(deserializer: &mut __D)
         -> ::std::result::Result<Notification, __D::Error> where
         __D: ::serde::de::Deserializer {
            {
                #[allow(non_camel_case_types)]
                enum __Field { __field0, __field1, __field2, }
                impl ::serde::de::Deserialize for __Field {
                    #[inline]
                    fn deserialize<D>(deserializer: &mut D)
                     -> ::std::result::Result<__Field, D::Error> where
                     D: ::serde::de::Deserializer {
                        use std::marker::PhantomData;
                        struct __FieldVisitor<D> {
                            phantom: PhantomData<D>,
                        }
                        impl <__D> ::serde::de::Visitor for
                         __FieldVisitor<__D> where
                         __D: ::serde::de::Deserializer {
                            type
                            Value
                            =
                            __Field;
                            fn visit_usize<E>(&mut self, value: usize)
                             -> ::std::result::Result<__Field, E> where
                             E: ::serde::de::Error {
                                match value {
                                    0usize => { Ok(__Field::__field0) }
                                    1usize => { Ok(__Field::__field1) }
                                    2usize => { Ok(__Field::__field2) }
                                    _ => {
                                        Err(::serde::de::Error::syntax("expected a field"))
                                    }
                                }
                            }
                            fn visit_str<E>(&mut self, value: &str)
                             -> ::std::result::Result<__Field, E> where
                             E: ::serde::de::Error {
                                match value {
                                    "jsonrpc" => { Ok(__Field::__field0) }
                                    "method" => { Ok(__Field::__field1) }
                                    "params" => { Ok(__Field::__field2) }
                                    _ => {
                                        Err(::serde::de::Error::unknown_field(value))
                                    }
                                }
                            }
                            fn visit_bytes<E>(&mut self, value: &[u8])
                             -> ::std::result::Result<__Field, E> where
                             E: ::serde::de::Error {
                                match ::std::str::from_utf8(value) {
                                    Ok(s) => self.visit_str(s),
                                    _ => {
                                        Err(::serde::de::Error::syntax("could not convert a byte string to a String"))
                                    }
                                }
                            }
                        }
                        deserializer.visit_struct_field(__FieldVisitor::<D>{phantom:
                                                                                PhantomData,})
                    }
                }
                struct __Visitor<__D: ::serde::de::Deserializer>(::std::marker::PhantomData<__D>);
                impl <__D: ::serde::de::Deserializer> ::serde::de::Visitor for
                 __Visitor<__D> {
                    type
                    Value
                    =
                    Notification;
                    #[inline]
                    fn visit_seq<__V>(&mut self, mut visitor: __V)
                     -> ::std::result::Result<Notification, __V::Error> where
                     __V: ::serde::de::SeqVisitor {
                        {
                            let __field0 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            let __field1 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            let __field2 =
                                match try!(visitor . visit (  )) {
                                    Some(value) => { value }
                                    None => {
                                        return Err(::serde::de::Error::end_of_stream());
                                    }
                                };
                            try!(visitor . end (  ));
                            Ok(Notification{jsonrpc: __field0,
                                            method: __field1,
                                            params: __field2,})
                        }
                    }
                    #[inline]
                    fn visit_map<__V>(&mut self, mut visitor: __V)
                     -> ::std::result::Result<Notification, __V::Error> where
                     __V: ::serde::de::MapVisitor {
                        {
                            let mut __field0 = None;
                            let mut __field1 = None;
                            let mut __field2 = None;
                            while let Some(key) =
                                      try!(visitor . visit_key (  )) {
                                match key {
                                    __Field::__field0 => {
                                        __field0 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                    __Field::__field1 => {
                                        __field1 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                    __Field::__field2 => {
                                        __field2 =
                                            Some(try!(visitor . visit_value (
                                                      )));
                                    }
                                }
                            }
                            let __field0 =
                                match __field0 {
                                    Some(__field0) => __field0,
                                    None =>
                                    try!(visitor . missing_field ( "jsonrpc"
                                         )),
                                };
                            let __field1 =
                                match __field1 {
                                    Some(__field1) => __field1,
                                    None =>
                                    try!(visitor . missing_field ( "method"
                                         )),
                                };
                            let __field2 =
                                match __field2 {
                                    Some(__field2) => __field2,
                                    None =>
                                    try!(visitor . missing_field ( "params"
                                         )),
                                };
                            try!(visitor . end (  ));
                            Ok(Notification{jsonrpc: __field0,
                                            method: __field1,
                                            params: __field2,})
                        }
                    }
                }
                const FIELDS: &'static [&'static str] =
                    &["jsonrpc", "method", "params"];
                deserializer.visit_struct("Notification", FIELDS,
                                          __Visitor::<__D>(::std::marker::PhantomData))
            }
        }
    }
    /// Represents single jsonrpc call.
    #[derive(PartialEq, Debug)]
    pub enum Call {
        MethodCall(MethodCall),
        Notification(Notification),
        Invalid,
    }
    impl Deserialize for Call {
        fn deserialize<D>(deserializer: &mut D) -> Result<Call, D::Error>
         where D: Deserializer {
            let v = try!(Value:: deserialize ( deserializer ));
            Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(Call::Notification).or_else(|_|
                                                                                                                   Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(Call::MethodCall)).map_err(|_|
                                                                                                                                                                                                                         Error::syntax("")).or_else(|_:
                                                                                                                                                                                                                                                         D::Error|
                                                                                                                                                                                                                                                        Ok(Call::Invalid))
        }
    }
    /// Represents jsonrpc request.
    #[derive(PartialEq, Debug)]
    pub enum Request { Single(Call), Batch(Vec<Call>), }
    impl Deserialize for Request {
        fn deserialize<D>(deserializer: &mut D) -> Result<Request, D::Error>
         where D: Deserializer {
            let v = try!(Value:: deserialize ( deserializer ));
            Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(Request::Batch).or_else(|_|
                                                                                                               Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(Request::Single)).map_err(|_|
                                                                                                                                                                                                                    Error::syntax(""))
        }
    }
    #[test]
    fn notification_deserialize() {
        use serde_json;
        use serde_json::Value;
        let s = r#"{"jsonrpc": "2.0", "method": "update", "params": [1,2]}"#;
        let deserialized: Notification = serde_json::from_str(s).unwrap();
        assert_eq!(deserialized , Notification {
                   jsonrpc : Version:: V2 , method : "update" . to_string (  )
                   , params : Some (
                   Params:: Array (
                   vec ! [ Value:: U64 ( 1 ) , Value:: U64 ( 2 ) ] ) ) });
        let s = r#"{"jsonrpc": "2.0", "method": "foobar"}"#;
        let deserialized: Notification = serde_json::from_str(s).unwrap();
        assert_eq!(deserialized , Notification {
                   jsonrpc : Version:: V2 , method : "foobar" . to_string (  )
                   , params : None });
        let s =
            r#"{"jsonrpc": "2.0", "method": "update", "params": [1,2], "id": 1}"#;
        let deserialized: Result<Notification, _> = serde_json::from_str(s);
        assert!(deserialized . is_err (  ))
    }
    #[test]
    fn call_deserialize() {
        use serde_json;
        let s = r#"{"jsonrpc": "2.0", "method": "update", "params": [1]}"#;
        let deserialized: Call = serde_json::from_str(s).unwrap();
        assert_eq!(deserialized , Call:: Notification (
                   Notification {
                   jsonrpc : Version:: V2 , method : "update" . to_owned (  )
                   , params : Some (
                   Params:: Array ( vec ! [ Value:: U64 ( 1 ) ] ) ) } ));
        let s =
            r#"{"jsonrpc": "2.0", "method": "update", "params": [1], "id": 1}"#;
        let deserialized: Call = serde_json::from_str(s).unwrap();
        assert_eq!(deserialized , Call:: MethodCall (
                   MethodCall {
                   jsonrpc : Version:: V2 , method : "update" . to_owned (  )
                   , params : Some (
                   Params:: Array ( vec ! [ Value:: U64 ( 1 ) ] ) ) , id :
                   Id:: Num ( 1 ) } ));
    }
    #[test]
    fn request_deserialize_batch() {
        use serde_json;
        let s =
            r#"[1, {"jsonrpc": "2.0", "method": "update", "params": [1,2], "id": 1},{"jsonrpc": "2.0", "method": "update", "params": [1]}]"#;
        let deserialized: Request = serde_json::from_str(s).unwrap();
        assert_eq!(deserialized , Request:: Batch (
                   vec ! [
                   Call:: Invalid , Call:: MethodCall (
                   MethodCall {
                   jsonrpc : Version:: V2 , method : "update" . to_owned (  )
                   , params : Some (
                   Params:: Array (
                   vec ! [ Value:: U64 ( 1 ) , Value:: U64 ( 2 ) ] ) ) , id :
                   Id:: Num ( 1 ) } ) , Call:: Notification (
                   Notification {
                   jsonrpc : Version:: V2 , method : "update" . to_owned (  )
                   , params : Some (
                   Params:: Array ( vec ! [ Value:: U64 ( 1 ) ] ) ) } ) ] ))
    }
}
pub mod response {
    //! jsonrpc response
    use serde::{Serialize, Serializer};
    use super::{Id, Value, Error, Version};
    #[derive(PartialEq, Debug)]
    pub struct Success {
        pub jsonrpc: Version,
        pub result: Value,
        pub id: Id,
    }
    impl ::serde::ser::Serialize for Success {
        fn serialize<__S>(&self, serializer: &mut __S)
         -> ::std::result::Result<(), __S::Error> where
         __S: ::serde::ser::Serializer {
            {
                struct Visitor<'__a> {
                    state: usize,
                    value: &'__a Success,
                    _structure_ty: ::std::marker::PhantomData<&'__a Success>,
                }
                impl <'__a> ::serde::ser::MapVisitor for Visitor<'__a> {
                    #[inline]
                    fn visit<S>(&mut self, serializer: &mut S)
                     -> ::std::result::Result<Option<()>, S::Error> where
                     S: ::serde::ser::Serializer {
                        loop  {
                            match self.state {
                                0usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "jsonrpc" ,
                                                        &self.value.jsonrpc ,
                                                        ))));
                                }
                                1usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "result" ,
                                                        &self.value.result ,
                                                        ))));
                                }
                                2usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "id" , &self.value.id
                                                        , ))));
                                }
                                _ => { return Ok(None); }
                            }
                        }
                    }
                    #[inline]
                    fn len(&self) -> Option<usize> { Some(0 + 1 + 1 + 1) }
                }
                serializer.visit_struct("Success",
                                        Visitor{value: self,
                                                state: 0,
                                                _structure_ty:
                                                    ::std::marker::PhantomData::<&Success>,})
            }
        }
    }
    #[derive(PartialEq, Debug)]
    pub struct Failure {
        pub jsonrpc: Version,
        pub error: Error,
        pub id: Id,
    }
    impl ::serde::ser::Serialize for Failure {
        fn serialize<__S>(&self, serializer: &mut __S)
         -> ::std::result::Result<(), __S::Error> where
         __S: ::serde::ser::Serializer {
            {
                struct Visitor<'__a> {
                    state: usize,
                    value: &'__a Failure,
                    _structure_ty: ::std::marker::PhantomData<&'__a Failure>,
                }
                impl <'__a> ::serde::ser::MapVisitor for Visitor<'__a> {
                    #[inline]
                    fn visit<S>(&mut self, serializer: &mut S)
                     -> ::std::result::Result<Option<()>, S::Error> where
                     S: ::serde::ser::Serializer {
                        loop  {
                            match self.state {
                                0usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "jsonrpc" ,
                                                        &self.value.jsonrpc ,
                                                        ))));
                                }
                                1usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "error" ,
                                                        &self.value.error ,
                                                        ))));
                                }
                                2usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "id" , &self.value.id
                                                        , ))));
                                }
                                _ => { return Ok(None); }
                            }
                        }
                    }
                    #[inline]
                    fn len(&self) -> Option<usize> { Some(0 + 1 + 1 + 1) }
                }
                serializer.visit_struct("Failure",
                                        Visitor{value: self,
                                                state: 0,
                                                _structure_ty:
                                                    ::std::marker::PhantomData::<&Failure>,})
            }
        }
    }
    #[derive(PartialEq, Debug)]
    pub enum Output { Success(Success), Failure(Failure), }
    impl Serialize for Output {
        fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
         where S: Serializer {
            match *self {
                Output::Success(ref s) => s.serialize(serializer),
                Output::Failure(ref f) => f.serialize(serializer),
            }
        }
    }
    #[derive(PartialEq, Debug)]
    pub enum Response { Single(Output), Batch(Vec<Output>), }
    impl Serialize for Response {
        fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
         where S: Serializer {
            match *self {
                Response::Single(ref o) => o.serialize(serializer),
                Response::Batch(ref b) => b.serialize(serializer),
            }
        }
    }
}
pub mod error {
    //! jsonrpc errors
    use serde::{Serialize, Serializer};
    use super::Value;
    #[derive(PartialEq, Debug)]
    pub enum ErrorCode {

        /// Invalid JSON was received by the server.
        /// An error occurred on the server while parsing the JSON text.
        ParseError,

        /// The JSON sent is not a valid Request object.
        InvalidRequest,

        /// The method does not exist / is not available.
        MethodNotFound,

        /// Invalid method parameter(s).
        InvalidParams,

        /// Internal JSON-RPC error.
        InternalError,

        /// Reserved for implementation-defined server-errors.
        ServerError(i64),
    }
    impl ErrorCode {
        pub fn code(&self) -> i64 {
            match *self {
                ErrorCode::ParseError => -32700,
                ErrorCode::InvalidRequest => -32600,
                ErrorCode::MethodNotFound => -32601,
                ErrorCode::InvalidParams => -32602,
                ErrorCode::InternalError => -32603,
                ErrorCode::ServerError(code) => code,
            }
        }
        pub fn description(&self) -> String {
            let desc =
                match *self {
                    ErrorCode::ParseError => "Parse error.",
                    ErrorCode::InvalidRequest => "Invalid request.",
                    ErrorCode::MethodNotFound => "Method not found.",
                    ErrorCode::InvalidParams => "Invalid params.",
                    ErrorCode::InternalError => "Internal error.",
                    ErrorCode::ServerError(_) => "Server error.",
                };
            desc.to_string()
        }
    }
    impl Serialize for ErrorCode {
        fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
         where S: Serializer {
            serializer.visit_i64(self.code())
        }
    }
    #[derive(PartialEq, Debug)]
    pub struct Error {
        pub code: ErrorCode,
        pub message: String,
        pub data: Option<Value>,
    }
    impl ::serde::ser::Serialize for Error {
        fn serialize<__S>(&self, serializer: &mut __S)
         -> ::std::result::Result<(), __S::Error> where
         __S: ::serde::ser::Serializer {
            {
                struct Visitor<'__a> {
                    state: usize,
                    value: &'__a Error,
                    _structure_ty: ::std::marker::PhantomData<&'__a Error>,
                }
                impl <'__a> ::serde::ser::MapVisitor for Visitor<'__a> {
                    #[inline]
                    fn visit<S>(&mut self, serializer: &mut S)
                     -> ::std::result::Result<Option<()>, S::Error> where
                     S: ::serde::ser::Serializer {
                        loop  {
                            match self.state {
                                0usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "code" ,
                                                        &self.value.code ,
                                                        ))));
                                }
                                1usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "message" ,
                                                        &self.value.message ,
                                                        ))));
                                }
                                2usize => {
                                    self.state += 1;
                                    { }
                                    return Ok(Some(try!(serializer .
                                                        visit_struct_elt (
                                                        "data" ,
                                                        &self.value.data ,
                                                        ))));
                                }
                                _ => { return Ok(None); }
                            }
                        }
                    }
                    #[inline]
                    fn len(&self) -> Option<usize> { Some(0 + 1 + 1 + 1) }
                }
                serializer.visit_struct("Error",
                                        Visitor{value: self,
                                                state: 0,
                                                _structure_ty:
                                                    ::std::marker::PhantomData::<&Error>,})
            }
        }
    }
    impl Error {
        pub fn new(code: ErrorCode) -> Self {
            Error{message: code.description(), code: code, data: None,}
        }
        pub fn parse_error() -> Self { Self::new(ErrorCode::ParseError) }
        pub fn invalid_request() -> Self {
            Self::new(ErrorCode::InvalidRequest)
        }
        pub fn method_not_found() -> Self {
            Self::new(ErrorCode::MethodNotFound)
        }
        pub fn invalid_params() -> Self {
            Self::new(ErrorCode::InvalidParams)
        }
        pub fn internal_error() -> Self {
            Self::new(ErrorCode::InternalError)
        }
    }
}
pub mod commander {
    //! method and notification commands executor
    use std::collections::HashMap;
    use super::{Params, Value, Error, ErrorCode};
    /// Should be used to handle single method call.
    pub trait MethodCommand: Send + Sync {
        fn execute(&mut self, params: Params)
        -> Result<Value, Error>;
    }
    /// Default method command implementation for closure.
    impl <F> MethodCommand for F where F: Fn(Params) -> Result<Value, Error>,
     F: Sync + Send {
        fn execute(&mut self, params: Params) -> Result<Value, Error> {
            self(params)
        }
    }
    /// Should be used to handle single notification.
    pub trait NotificationCommand: Send + Sync {
        fn execute(&mut self, params: Params);
    }
    /// Default notification command implementation for closure.
    impl <F> NotificationCommand for F where F: Fn(Params), F: Sync + Send {
        fn execute(&mut self, params: Params) { self(params) }
    }
    /// Commands executor.
    pub struct Commander {
        methods: HashMap<String, Box<MethodCommand>>,
        notifications: HashMap<String, Box<NotificationCommand>>,
    }
    impl Commander {
        pub fn new() -> Self {
            Commander{methods: HashMap::new(), notifications: HashMap::new(),}
        }
        pub fn add_method<C>(&mut self, name: String, command: Box<C>) where
         C: MethodCommand + 'static {
            self.methods.insert(name, command);
        }
        pub fn add_methods(&mut self,
                           methods: HashMap<String, Box<MethodCommand>>) {
            self.methods.extend(methods);
        }
        pub fn add_notification<C>(&mut self, name: String, command: Box<C>)
         where C: NotificationCommand + 'static {
            self.notifications.insert(name, command);
        }
        pub fn add_notifications(&mut self,
                                 notifications:
                                     HashMap<String,
                                             Box<NotificationCommand>>) {
            self.notifications.extend(notifications);
        }
        pub fn execute_method(&mut self, name: String, params: Params)
         -> Result<Value, Error> {
            match self.methods.get_mut(&name) {
                Some(command) => command.execute(params),
                None => Err(Error::new(ErrorCode::MethodNotFound)),
            }
        }
        pub fn execute_notification(&mut self, name: String, params: Params) {
            if let Some(command) = self.notifications.get_mut(&name) {
                command.execute(params)
            }
        }
    }
}
pub mod request_handler {
    //! jsonrpc server request handler
    use std::collections::HashMap;
    use super::*;
    pub struct RequestHandler {
        commander: Commander,
    }
    impl RequestHandler {
        pub fn new() -> Self { RequestHandler{commander: Commander::new(),} }
        #[inline]
        pub fn add_method<C>(&mut self, name: String, command: Box<C>) where
         C: MethodCommand + 'static {
            self.commander.add_method(name, command)
        }
        #[inline]
        pub fn add_methods(&mut self,
                           methods: HashMap<String, Box<MethodCommand>>) {
            self.commander.add_methods(methods);
        }
        #[inline]
        pub fn add_notification<C>(&mut self, name: String, command: Box<C>)
         where C: NotificationCommand + 'static {
            self.commander.add_notification(name, command)
        }
        #[inline]
        pub fn add_notifications(&mut self,
                                 notifications:
                                     HashMap<String,
                                             Box<NotificationCommand>>) {
            self.commander.add_notifications(notifications);
        }
        pub fn handle_request(&mut self, request: Request)
         -> Option<Response> {
            match request {
                Request::Single(call) =>
                self.handle_call(call).map(Response::Single),
                Request::Batch(calls) => {
                    let outs: Vec<Output> =
                        calls.into_iter().filter_map(|call|
                                                         self.handle_call(call)).collect();
                    match outs.len() {
                        0 => None,
                        _ => Some(Response::Batch(outs)),
                    }
                }
            }
        }
        fn handle_call(&mut self, call: Call) -> Option<Output> {
            match call {
                Call::MethodCall(method) =>
                Some(self.handle_method_call(method)),
                Call::Notification(notification) => {
                    self.handle_notification(notification);
                    None
                }
                Call::Invalid =>
                Some(Output::Failure(Failure{id: Id::Null,
                                             jsonrpc: Version::V2,
                                             error:
                                                 Error::new(ErrorCode::InvalidRequest),})),
            }
        }
        fn handle_method_call(&mut self, method: MethodCall) -> Output {
            let params =
                match method.params { Some(p) => p, None => Params::None, };
            match self.commander.execute_method(method.method, params) {
                Ok(result) =>
                Output::Success(Success{id: method.id,
                                        jsonrpc: method.jsonrpc,
                                        result: result,}),
                Err(error) =>
                Output::Failure(Failure{id: method.id,
                                        jsonrpc: method.jsonrpc,
                                        error: error,}),
            }
        }
        fn handle_notification(&mut self, notification: Notification) {
            let params =
                match notification.params {
                    Some(p) => p,
                    None => Params::None,
                };
            self.commander.execute_notification(notification.method, params)
        }
    }
}
pub mod io {
    //! jsonrpc io
    use std::sync::Arc;
    use std::collections::HashMap;
    use super::{MethodCommand, NotificationCommand, Params, Value, Error,
                Response, Output, Version, Id, ErrorCode, RequestHandler,
                Request, Failure};
    use serde_json;
    struct DelegateMethod<T, F> where F: Fn(&T, Params) ->
           Result<Value, Error>, F: Send + Sync, T: Send + Sync {
        delegate: Arc<T>,
        closure: F,
    }
    impl <T, F> MethodCommand for DelegateMethod<T, F> where F: Fn(&T, Params)
     -> Result<Value, Error>, F: Send + Sync, T: Send + Sync {
        fn execute(&mut self, params: Params) -> Result<Value, Error> {
            let closure = &self.closure;
            closure(&self.delegate, params)
        }
    }
    struct DelegateNotification<T, F> where F: Fn(&T, Params), F: Send + Sync,
           T: Send + Sync {
        delegate: Arc<T>,
        closure: F,
    }
    impl <T, F> NotificationCommand for DelegateNotification<T, F> where
     F: Fn(&T, Params), F: Send + Sync, T: Send + Sync {
        fn execute(&mut self, params: Params) {
            let closure = &self.closure;
            closure(&self.delegate, params)
        }
    }
    pub struct IoDelegate<T> where T: Send + Sync + 'static {
        delegate: Arc<T>,
        methods: HashMap<String, Box<MethodCommand>>,
        notifications: HashMap<String, Box<NotificationCommand>>,
    }
    impl <T> IoDelegate<T> where T: Send + Sync + 'static {
        pub fn new(delegate: Arc<T>) -> Self {
            IoDelegate{delegate: delegate,
                       methods: HashMap::new(),
                       notifications: HashMap::new(),}
        }
        pub fn add_method<F>(&mut self, name: &str, closure: F) where
         F: Fn(&T, Params) -> Result<Value, Error> + Send + Sync + 'static {
            let delegate = self.delegate.clone();
            self.methods.insert(name.to_owned(),
                                Box::new(DelegateMethod{delegate: delegate,
                                                        closure: closure,}));
        }
        pub fn add_notification<F>(&mut self, name: &str, closure: F) where
         F: Fn(&T, Params) + Send + Sync + 'static {
            let delegate = self.delegate.clone();
            self.notifications.insert(name.to_owned(),
                                      Box::new(DelegateNotification{delegate:
                                                                        delegate,
                                                                    closure:
                                                                        closure,}));
        }
    }
    /// Should be used to handle jsonrpc io.
    /// 
    /// ```rust
    /// extern crate jsonrpc_core;
    /// use jsonrpc_core::*;
    ///
    /// fn main() {
    /// 	let mut io = IoHandler::new();
    /// 	struct SayHello;
    /// 	impl MethodCommand for SayHello {
    /// 		fn execute(&mut self, _params: Params) -> Result<Value, Error> {
    /// 			Ok(Value::String("hello".to_string()))
    /// 		}
    /// 	}
    ///
    /// 	io.add_method("say_hello", SayHello);
    ///
    /// 	let request = r#"{"jsonrpc": "2.0", "method": "say_hello", "params": [42, 23], "id": 1}"#;
    /// 	let response = r#"{"jsonrpc":"2.0","result":"hello","id":1}"#;
    ///
    /// 	assert_eq!(io.handle_request(request), Some(response.to_string()));
    /// }
    /// ```
    pub struct IoHandler {
        request_handler: RequestHandler,
    }
    fn read_request(request_str: &str) -> Result<Request, Error> {
        serde_json::from_str(request_str).map_err(|_|
                                                      Error::new(ErrorCode::ParseError))
    }
    fn write_response(response: Response) -> String {
        serde_json::to_string(&response).unwrap()
    }
    impl IoHandler {
        pub fn new() -> Self {
            IoHandler{request_handler: RequestHandler::new(),}
        }
        #[inline]
        pub fn add_method<C>(&mut self, name: &str, command: C) where
         C: MethodCommand + 'static {
            self.request_handler.add_method(name.to_owned(),
                                            Box::new(command))
        }
        #[inline]
        pub fn add_notification<C>(&mut self, name: &str, command: C) where
         C: NotificationCommand + 'static {
            self.request_handler.add_notification(name.to_owned(),
                                                  Box::new(command))
        }
        pub fn add_delegate<D>(&mut self, delegate: IoDelegate<D>) where
         D: Send + Sync {
            self.request_handler.add_methods(delegate.methods);
            self.request_handler.add_notifications(delegate.notifications);
        }
        pub fn handle_request<'a>(&mut self, request_str: &'a str)
         -> Option<String> {
            match read_request(request_str) {
                Ok(request) =>
                self.request_handler.handle_request(request).map(write_response),
                Err(error) =>
                Some(write_response(Response::Single(Output::Failure(Failure{id:
                                                                                 Id::Null,
                                                                             jsonrpc:
                                                                                 Version::V2,
                                                                             error:
                                                                                 error,})))),
            }
        }
    }
    #[cfg(test)]
    mod tests {
        use super::super::*;
        #[test]
        fn test_io_handler() {
            let mut io = IoHandler::new();
            struct SayHello;
            impl MethodCommand for SayHello {
                fn execute(&mut self, _params: Params)
                 -> Result<Value, Error> {
                    Ok(Value::String("hello".to_string()))
                }
            }
            io.add_method("say_hello", SayHello);
            let request =
                r#"{"jsonrpc": "2.0", "method": "say_hello", "params": [42, 23], "id": 1}"#;
            let response = r#"{"jsonrpc":"2.0","result":"hello","id":1}"#;
            assert_eq!(io . handle_request ( request ) , Some (
                       response . to_string (  ) ));
        }
    }
}
pub mod util {
    use serde::{Deserialize, Serialize};
    use serde_json::value::{Value, Deserializer, Serializer};
    use super::{Params, Error};
    pub fn from_params<D>(params: Params) -> Result<D, Error> where
     D: Deserialize {
        let value =
            match params {
                Params::Array(vec) => Value::Array(vec),
                Params::Map(map) => Value::Object(map),
                Params::None => Value::Null,
            };
        let mut deserializer = Deserializer::new(value);
        Deserialize::deserialize(&mut deserializer).map_err(|_|
                                                                Error::invalid_params())
    }
    pub fn to_value<S>(s: &S) -> Result<Value, Error> where S: Serialize {
        let mut serializer = Serializer::new();
        match s.serialize(&mut serializer) {
            Err(_) => Err(Error::internal_error()),
            _ => Ok(serializer.unwrap()),
        }
    }
}
pub use serde_json::Value;
pub use self::version::Version;
pub use self::id::Id;
pub use self::params::Params;
pub use self::request::{Request, Call, MethodCall, Notification};
pub use self::response::{Response, Output, Success, Failure};
pub use self::error::{ErrorCode, Error};
pub use self::commander::{Commander, MethodCommand, NotificationCommand};
pub use self::request_handler::RequestHandler;
pub use self::io::{IoHandler, IoDelegate};
pub use self::util::{from_params, to_value};