Bug 15574. XML deserialization recursion: add array type to known_types?
[mono.git] / mcs / class / System.Net.Http / System.Net.Http.Headers / HeaderInfo.cs
1 //
2 // HeaderInfo.cs
3 //
4 // Authors:
5 //      Marek Safar  <marek.safar@gmail.com>
6 //
7 // Copyright (C) 2011 Xamarin Inc (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.Diagnostics;
30 using System.Collections.Generic;
31
32 namespace System.Net.Http.Headers
33 {
34         delegate bool TryParseDelegate<T> (string value, out T result);
35
36         abstract class HeaderInfo
37         {
38                 class HeaderTypeInfo<T, U> : HeaderInfo where U : class
39                 {
40                         readonly TryParseDelegate<T> parser;
41
42                         public HeaderTypeInfo (string name, TryParseDelegate<T> parser, HttpHeaderKind headerKind)
43                                 : base (name, headerKind)
44                         {
45                                 this.parser = parser;
46                         }
47
48                         public override void AddToCollection (object collection, object value)
49                         {
50                                 Debug.Assert (AllowsMany);
51
52                                 var c = (HttpHeaderValueCollection<U>) collection;
53
54                                 var list = value as List<U>;
55                                 if (list != null)
56                                         c.AddRange (list);
57                                 else
58                                         c.Add ((U) value);
59                         }
60
61                         protected override object CreateCollection (HttpHeaders headers, HeaderInfo headerInfo)
62                         {
63                                 return new HttpHeaderValueCollection<U> (headers, headerInfo);
64                         }
65
66                         public override List<string> ToStringCollection (object collection)
67                         {
68                                 if (collection == null)
69                                         return null;
70
71                                 var c = (HttpHeaderValueCollection<U>) collection;
72                                 if (c.Count == 0)
73                                         return null;
74
75                                 var list = new List<string> ();
76                                 foreach (var item in c) {
77                                         list.Add (item.ToString ());
78                                 }
79
80                                 return list;
81                         }
82
83                         public override bool TryParse (string value, out object result)
84                         {
85                                 T tresult;
86                                 bool b = parser (value, out tresult);
87                                 result = tresult;
88                                 return b;
89                         }
90                 }
91
92                 public bool AllowsMany;
93                 public readonly HttpHeaderKind HeaderKind;
94                 public readonly string Name;
95
96                 protected HeaderInfo (string name, HttpHeaderKind headerKind)
97                 {
98                         this.Name = name;
99                         this.HeaderKind = headerKind;
100                 }
101
102                 public static HeaderInfo CreateSingle<T> (string name, TryParseDelegate<T> parser, HttpHeaderKind headerKind)
103                 {
104                         return new HeaderTypeInfo<T, object> (name, parser, headerKind);
105                 }
106
107                 public static HeaderInfo CreateMulti<T> (string name, TryParseDelegate<T> parser, HttpHeaderKind headerKind) where T : class
108                 {
109                         return new HeaderTypeInfo<T, T> (name, parser, headerKind) {
110                                 AllowsMany = true,
111                         };
112                 }
113
114                 public static HeaderInfo CreateMultiList<T> (string name, TryParseDelegate<List<T>> parser, HttpHeaderKind headerKind) where T : class
115                 {
116                         return new HeaderTypeInfo<List<T>, T> (name, parser, headerKind) {
117                                 AllowsMany = true,
118                         };
119                 }
120
121                 public object CreateCollection (HttpHeaders headers)
122                 {
123                         return CreateCollection (headers, this);
124                 }
125
126                 public abstract void AddToCollection (object collection, object value);
127                 protected abstract object CreateCollection (HttpHeaders headers, HeaderInfo headerInfo);
128                 public abstract List<string> ToStringCollection (object collection);
129                 public abstract bool TryParse (string value, out object result);
130         }
131 }