Merge pull request #3548 from cmp-/fix-sgen-resume-thread-win32
[mono.git] / mcs / class / System.Net.Http / System.Net.Http.Headers / HttpHeaderValueCollection.cs
1 //
2 // HttpHeaderValueCollection.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 using System.Collections;
31
32 namespace System.Net.Http.Headers
33 {
34         public sealed class HttpHeaderValueCollection<T> : ICollection<T> where T : class
35         {
36                 readonly List<T> list;
37                 readonly HttpHeaders headers;
38                 readonly HeaderInfo headerInfo;
39                 List<string> invalidValues;
40
41                 internal HttpHeaderValueCollection (HttpHeaders headers, HeaderInfo headerInfo)
42                 {
43                         list = new List<T> ();
44                         this.headers = headers;
45                         this.headerInfo = headerInfo;
46                 }
47
48                 public int Count {
49                         get {
50                                 return list.Count;
51                         }
52                 }
53
54                 internal List<string> InvalidValues {
55                         get {
56                                 return invalidValues;
57                         }
58                 }
59
60                 public bool IsReadOnly {
61                         get {
62                                 return false;
63                         }
64                 }
65
66                 public void Add (T item)
67                 {
68                         list.Add (item);
69                 }
70
71                 internal void AddRange (List<T> values)
72                 {
73                         list.AddRange (values);
74                 }
75
76                 internal void AddInvalidValue (string invalidValue)
77                 {
78                         if (invalidValues == null)
79                                 invalidValues = new List<string> ();
80
81                         invalidValues.Add (invalidValue);
82                 }
83
84                 public void Clear ()
85                 {
86                         list.Clear ();
87                         invalidValues = null;
88                 }
89
90                 public bool Contains (T item)
91                 {
92                         return list.Contains (item);
93                 }
94
95                 public void CopyTo (T[] array, int arrayIndex)
96                 {
97                         list.CopyTo (array, arrayIndex);
98                 }
99
100                 public void ParseAdd (string input)
101                 {
102                         headers.AddValue (input, headerInfo, false);
103                 }
104
105                 public bool Remove (T item)
106                 {
107                         return list.Remove (item);
108                 }
109
110                 public override string ToString ()
111                 {
112                         var res = string.Join (headerInfo.Separator, list);
113
114                         if (invalidValues != null)
115                                 res += string.Join (headerInfo.Separator, invalidValues);
116
117                         return res;
118                 }
119
120                 public bool TryParseAdd (string input)
121                 {
122                         return headers.AddValue (input, headerInfo, true);
123                 }
124
125                 public IEnumerator<T> GetEnumerator ()
126                 {
127                         return list.GetEnumerator ();
128                 }
129
130                 IEnumerator IEnumerable.GetEnumerator ()
131                 {
132                         return GetEnumerator ();
133                 }
134
135                 internal T Find (Predicate<T> predicate)
136                 {
137                         return list.Find (predicate);
138                 }
139
140                 internal void Remove (Predicate<T> predicate)
141                 {
142                         T item = Find (predicate);
143                         if (item != null)
144                                 Remove (item);
145                 }
146         }
147 }