Merge pull request #301 from directhex/master
[mono.git] / mcs / class / System.Net.Http / System.Net.Http.Headers / ProductInfoHeaderValue.cs
1 //
2 // ProductInfoHeaderValue.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 namespace System.Net.Http.Headers
30 {
31         public class ProductInfoHeaderValue : ICloneable
32         {
33                 public ProductInfoHeaderValue (ProductHeaderValue product)
34                 {
35                         if (product == null)
36                                 throw new ArgumentNullException ();
37
38                         Product = product;
39                 }
40
41                 public ProductInfoHeaderValue (string comment)
42                 {
43                         Parser.Token.CheckComment (comment);
44                         Comment = comment;
45                 }
46
47                 public ProductInfoHeaderValue (string productName, string productVersion)
48                 {
49                         Product = new ProductHeaderValue (productName, productVersion);
50                 }
51
52                 private ProductInfoHeaderValue ()
53                 {
54                 }
55
56                 public string Comment { get; private set; }
57                 public ProductHeaderValue Product { get; private set; }
58
59                 object ICloneable.Clone ()
60                 {
61                         return MemberwiseClone ();
62                 }
63
64                 public override bool Equals (object obj)
65                 {
66                         var source = obj as ProductInfoHeaderValue;
67                         if (source == null)
68                                 return false;
69
70                         return Product != null ?
71                                 Product.Equals (source.Product) :
72                                 source.Comment == Comment;
73                 }
74
75                 public override int GetHashCode ()
76                 {
77                         return Product != null ?
78                                 Product.GetHashCode () :
79                                 Comment.GetHashCode ();
80                 }
81
82                 public static ProductInfoHeaderValue Parse (string input)
83                 {
84                         ProductInfoHeaderValue value;
85                         if (TryParse (input, out value))
86                                 return value;
87
88                         throw new FormatException (input);
89                 }
90                 
91                 public static bool TryParse (string input, out ProductInfoHeaderValue parsedValue)
92                 {
93                         parsedValue = null;
94
95                         var lexer = new Lexer (input);
96                         string comment;
97
98                         if (lexer.ScanCommentOptional (out comment)) {
99                                 if (comment == null)
100                                         return false;
101
102                                 parsedValue = new ProductInfoHeaderValue ();
103                                 parsedValue.Comment = comment;
104                                 return true;
105                         }
106
107                         ProductHeaderValue res;
108                         if (!ProductHeaderValue.TryParse (input, out res))
109                                 return false;
110
111                         parsedValue = new ProductInfoHeaderValue (res);
112                         return true;
113                 }
114
115                 public override string ToString ()
116                 {
117                         if (Product == null)
118                                 return Comment;
119
120                         return Product.ToString ();
121                 }
122         }
123 }