Added tests for Task.WhenAll w/ empty list
[mono.git] / mcs / class / System.Net.Http / System.Net.Http.Headers / NameValueHeaderValue.cs
1 //
2 // NameValueHeaderValue.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.Collections.Generic;
30
31 namespace System.Net.Http.Headers
32 {
33         public class NameValueHeaderValue : ICloneable
34         {
35                 string value;
36
37                 public NameValueHeaderValue (string name)
38                         : this (name, null)
39                 {
40                 }
41
42                 public NameValueHeaderValue (string name, string value)
43                 {
44                         Parser.Token.Check (name);
45
46                         this.Name = name;
47                         this.Value = value;
48                 }
49
50                 protected internal NameValueHeaderValue (NameValueHeaderValue source)
51                 {
52                         this.Name = source.Name;
53                         this.value = source.value;
54                 }
55
56                 private NameValueHeaderValue ()
57                 {
58                 }
59
60                 public string Name { get; private set; }
61
62                 public string Value {
63                         get {
64                                 return value;
65                         }
66                         set {
67                                 if (!string.IsNullOrEmpty (value)) {
68                                         var lexer = new Lexer (value);
69                                         var token = lexer.Scan ();
70                                         if (lexer.Scan () != Token.Type.End || !(token == Token.Type.Token || token == Token.Type.QuotedString))
71                                                 throw new FormatException ();
72
73                                         value = lexer.GetStringValue (token);
74                                 }
75
76                                 this.value = value;
77                         }
78                 }
79
80                 internal static NameValueHeaderValue Create (string name, string value)
81                 {
82                         return new NameValueHeaderValue () {
83                                 Name = name,
84                                 value = value
85                         };
86                 }
87
88                 object ICloneable.Clone ()
89                 {
90                         return new NameValueHeaderValue (this);
91                 }
92
93                 public override int GetHashCode ()
94                 {
95                         int hc = Name.ToLowerInvariant ().GetHashCode ();
96                         if (!string.IsNullOrEmpty (value)) {
97                                 hc ^= value.ToLowerInvariant ().GetHashCode ();
98                         }
99
100                         return hc;
101                 }
102
103                 public override bool Equals (object obj)
104                 {
105                         var source = obj as NameValueHeaderValue;
106                         if (source == null || !string.Equals (source.Name, Name, StringComparison.OrdinalIgnoreCase))
107                                 return false;
108
109                         if (string.IsNullOrEmpty (value))
110                                 return string.IsNullOrEmpty (source.value);
111
112                         return string.Equals (source.value, value, StringComparison.OrdinalIgnoreCase);
113                 }
114
115                 public static NameValueHeaderValue Parse (string input)
116                 {
117                         NameValueHeaderValue value;
118                         if (TryParse (input, out value))
119                                 return value;
120
121                         throw new FormatException (input);
122                 }
123
124                 internal static bool ParseParameters (Lexer lexer, out List<NameValueHeaderValue> result)
125                 {
126                         var list = new List<NameValueHeaderValue> ();
127                         result = null;
128
129                         Token t;
130
131                         do {
132                                 var attr = lexer.Scan ();
133                                 if (attr != Token.Type.Token)
134                                         return false;
135
136                                 string value = null;
137
138                                 t = lexer.Scan ();
139                                 if (t == Token.Type.SeparatorEqual) {
140                                         t = lexer.Scan ();
141                                         if (t != Token.Type.Token && t != Token.Type.QuotedString)
142                                                 return false;
143
144                                         value = lexer.GetStringValue (t);
145
146                                         t = lexer.Scan ();
147                                 }
148
149                                 if (t == Token.Type.SeparatorSemicolon || t == Token.Type.End) {
150                                         list.Add (new NameValueHeaderValue () {
151                                                 Name = lexer.GetStringValue (attr),
152                                                 value = value
153                                         });
154                                 } else {
155                                         return false;
156                                 }
157
158                         } while (t == Token.Type.SeparatorSemicolon);
159
160                         result = list;
161                         return true;
162                 }
163
164                 public override string ToString ()
165                 {
166                         if (string.IsNullOrEmpty (value))
167                                 return Name;
168
169                         return Name + "=" + value;
170                 }
171
172                 public static bool TryParse (string input, out NameValueHeaderValue parsedValue)
173                 {
174                         parsedValue = null;
175
176                         var lexer = new Lexer (input);
177                         var t = lexer.Scan ();
178                         if (t != Token.Type.Token && t != Token.Type.QuotedString)
179                                 return false;
180
181                         string v = null;
182                         var token2 = lexer.Scan ();
183                         if (token2 != Token.Type.End) {
184                                 if (token2 != Token.Type.SeparatorEqual)
185                                         return false;
186
187                                 token2 = lexer.Scan ();
188
189                                 if (token2 == Token.Type.Token || token2 == Token.Type.QuotedString) {
190                                         v = lexer.GetStringValue (token2);
191                                         token2 = lexer.Scan ();
192                                 }
193
194                                 if (token2 != Token.Type.End)
195                                         return false;
196                         }
197
198                         parsedValue = new NameValueHeaderValue () {
199                                 Name = lexer.GetStringValue (t),
200                                 value = v
201                         };
202
203                         return true;
204                 }
205         }
206 }