Merge pull request #3600 from henricm/fix-win-network-info-tests
[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, 2014 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         delegate bool TryParseListDelegate<T> (string value, int minimalCount, out List<T> result);
36
37         abstract class HeaderInfo
38         {
39                 class HeaderTypeInfo<T, U> : HeaderInfo where U : class
40                 {
41                         readonly TryParseDelegate<T> parser;
42
43                         public HeaderTypeInfo (string name, TryParseDelegate<T> parser, HttpHeaderKind headerKind)
44                                 : base (name, headerKind)
45                         {
46                                 this.parser = parser;
47                         }
48
49                         public override void AddToCollection (object collection, object value)
50                         {
51                                 Debug.Assert (AllowsMany);
52
53                                 var c = (HttpHeaderValueCollection<U>) collection;
54
55                                 var list = value as List<U>;
56                                 if (list != null)
57                                         c.AddRange (list);
58                                 else
59                                         c.Add ((U) value);
60                         }
61
62                         protected override object CreateCollection (HttpHeaders headers, HeaderInfo headerInfo)
63                         {
64                                 return new HttpHeaderValueCollection<U> (headers, headerInfo);
65                         }
66
67                         public override List<string> ToStringCollection (object collection)
68                         {
69                                 if (collection == null)
70                                         return null;
71
72                                 var c = (HttpHeaderValueCollection<U>) collection;
73                                 if (c.Count == 0) {
74                                         if (c.InvalidValues == null)
75                                                 return null;
76
77                                         return new List<string> (c.InvalidValues);
78                                 }
79
80                                 var list = new List<string> ();
81                                 foreach (var item in c) {
82                                         list.Add (item.ToString ());
83                                 }
84
85                                 if (c.InvalidValues != null)
86                                         list.AddRange (c.InvalidValues);
87
88                                 return list;
89                         }
90
91                         public override bool TryParse (string value, out object result)
92                         {
93                                 T tresult;
94                                 bool b = parser (value, out tresult);
95                                 result = tresult;
96                                 return b;
97                         }
98                 }
99
100                 class CollectionHeaderTypeInfo<T, U> : HeaderTypeInfo<T, U> where U : class
101                 {
102                         readonly int minimalCount;
103                         readonly string separator;
104                         readonly TryParseListDelegate<T> parser;
105
106                         public CollectionHeaderTypeInfo (string name, TryParseListDelegate<T> parser, HttpHeaderKind headerKind, int minimalCount, string separator)
107                                 : base (name, null, headerKind)
108                         {
109                                 this.parser = parser;
110                                 this.minimalCount = minimalCount;
111                                 AllowsMany = true;
112                                 this.separator = separator;
113                         }
114
115                         public override string Separator {
116                                 get {
117                                         return separator;
118                                 }
119                         }
120
121                         public override bool TryParse (string value, out object result)
122                         {
123                                 List<T> tresult;
124                                 if (!parser (value, minimalCount, out tresult)) {
125                                         result = null;
126                                         return false;
127                                 }
128
129                                 result = tresult;
130                                 return true;
131                         }
132                 }
133
134                 public bool AllowsMany;
135                 public readonly HttpHeaderKind HeaderKind;
136                 public readonly string Name;
137
138                 protected HeaderInfo (string name, HttpHeaderKind headerKind)
139                 {
140                         this.Name = name;
141                         this.HeaderKind = headerKind;
142                 }
143
144                 public static HeaderInfo CreateSingle<T> (string name, TryParseDelegate<T> parser, HttpHeaderKind headerKind, Func<object, string> toString = null)
145                 {
146                         return new HeaderTypeInfo<T, object> (name, parser, headerKind) {
147                                 CustomToString = toString
148                         };
149                 }
150
151                 //
152                 // Headers with #rule for defining lists of elements or *rule for defining occurences of elements
153                 //
154                 public static HeaderInfo CreateMulti<T> (string name, TryParseListDelegate<T> elementParser, HttpHeaderKind headerKind, int minimalCount = 1, string separator = ", ") where T : class
155                 {
156                         return new CollectionHeaderTypeInfo<T, T> (name, elementParser, headerKind, minimalCount, separator);
157                 }
158
159                 public object CreateCollection (HttpHeaders headers)
160                 {
161                         return CreateCollection (headers, this);
162                 }
163
164                 public Func<object, string> CustomToString {
165                         get; private set;
166                 }
167
168                 public virtual string Separator {
169                         get {
170                                 // Needed for AllowsMany only
171                                 throw new NotSupportedException ();
172                         }
173                 }
174
175                 public abstract void AddToCollection (object collection, object value);
176                 protected abstract object CreateCollection (HttpHeaders headers, HeaderInfo headerInfo);
177                 public abstract List<string> ToStringCollection (object collection);
178                 public abstract bool TryParse (string value, out object result);
179         }
180 }