Try hardly to fix the revert the style changes I made...
[mono.git] / mcs / class / System / System.Net / ListenerPrefix.cs
1 //
2 // System.Net.ListenerPrefix
3 //
4 // Author:
5 //      Gonzalo Paniagua Javier (gonzalo@novell.com)
6 //      Oleg Mihailik (mihailik gmail co_m)
7 //
8 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if SECURITY_DEP
31
32 namespace System.Net {
33         sealed class ListenerPrefix
34         {
35                 string original;
36                 string host;
37                 ushort port;
38                 string path;
39                 bool secure;
40                 IPAddress [] addresses;
41                 public HttpListener Listener;
42
43                 public ListenerPrefix (string prefix)
44                 {
45                         this.original = prefix;
46                         Parse (prefix);
47                 }
48
49                 public override string ToString ()
50                 {
51                         return original;
52                 }
53
54                 public IPAddress [] Addresses {
55                         get { return addresses; }
56                         set { addresses = value; }
57                 }
58                 public bool Secure {
59                         get { return secure; }
60                 }
61
62                 public string Host {
63                         get { return host; }
64                 }
65
66                 public int Port {
67                         get { return (int)port; }
68                 }
69
70                 public string Path {
71                         get { return path; }
72                 }
73
74                 // Equals and GetHashCode are required to detect duplicates in HttpListenerPrefixCollection.
75                 public override bool Equals (object o)
76                 {
77                         ListenerPrefix other = o as ListenerPrefix;
78                         if (other == null)
79                                 return false;
80
81                         return (original == other.original);
82                 }
83
84                 public override int GetHashCode ()
85                 {
86                         return original.GetHashCode ();
87                 }
88
89                 void Parse (string uri)
90                 {
91                         ushort default_port = 80;
92                         if (uri.StartsWith ("https://")) {
93                                 default_port = 443;
94                                 secure = true;
95                         }
96
97                         int length = uri.Length;
98                         int start_host = uri.IndexOf (':') + 3;
99                         if (start_host >= length)
100                                 throw new ArgumentException ("No host specified.");
101
102                         int startPort = uri.IndexOf (':', start_host, length - start_host);
103                         if (uri [start_host] == '[') {
104                                 startPort = uri.IndexOf ("]:") + 1;
105                         }
106                         if (start_host == startPort)
107                                 throw new ArgumentException ("No host specified.");
108
109                         int root = uri.IndexOf ('/', start_host, length - start_host);
110                         if (root == -1)
111                                 throw new ArgumentException ("No path specified.");
112
113                         if (startPort > 0) {
114                                 host = uri.Substring (start_host, startPort - start_host).Trim ('[', ']');
115                                 port = UInt16.Parse (uri.Substring (startPort + 1, root - startPort - 1));
116                         } else {
117                                 host = uri.Substring (start_host, root - start_host).Trim ('[', ']');
118                                 port = default_port;
119                         }
120                         path = uri.Substring (root);
121
122                         if (path.Length != 1)
123                                 path = path.Substring (0, path.Length - 1);
124                 }
125
126                 public static void CheckUri (string uri)
127                 {
128                         if (uri == null)
129                                 throw new ArgumentNullException ("uriPrefix");
130
131                         if (!uri.StartsWith ("http://") && !uri.StartsWith ("https://"))
132                                 throw new ArgumentException ("Only 'http' and 'https' schemes are supported.");
133
134                         int length = uri.Length;
135                         int start_host = uri.IndexOf (':') + 3;
136                         if (start_host >= length)
137                                 throw new ArgumentException ("No host specified.");
138
139
140                         int startPort = uri.IndexOf (':', start_host, length - start_host);
141                         if (uri [start_host] == '[')
142                                 startPort = uri.IndexOf ("]:") + 1;
143                         if (start_host == startPort)
144                                 throw new ArgumentException ("No host specified.");
145                         int root = uri.IndexOf ('/', start_host, length - start_host);
146                         if (root == -1)
147                                 throw new ArgumentException ("No path specified.");
148
149                         if (startPort > 0) {
150                                 try
151                                 {
152                                         int p = Int32.Parse (uri.Substring (startPort + 1, root - startPort - 1));
153                                         if (p <= 0 || p >= 65536)
154                                                 throw new Exception ();
155                                 }
156                                 catch
157                                 {
158                                         throw new ArgumentException ("Invalid port.");
159                                 }
160                         }
161
162                         if (uri [uri.Length - 1] != '/')
163                                 throw new ArgumentException ("The prefix must end with '/'");
164                 }
165         }
166 }
167 #endif