3ee4747f4a4a069a77fd49b1acb464f9ba3ae5d4
[mono.git] / mcs / class / System.Runtime.Remoting / MonoHttp / HttpUtility.cs
1 #define EMBEDDED_IN_1_0
2
3 //
4 // System.Net.HttpUtility
5 //
6 // Author:
7 //      Gonzalo Paniagua Javier (gonzalo@novell.com)
8 //
9 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 #if EMBEDDED_IN_1_0
31 using System.Globalization;
32 using System.IO;
33 using System.Text;
34 using System; using System.Net; namespace MonoHttp {
35         sealed class HttpUtility
36         {
37                 private HttpUtility ()
38                 {
39                 }
40
41                 public static string UrlDecode (string s)
42                 {
43                         return UrlDecode (s, null);
44                 }
45
46                 static char [] GetChars (MemoryStream b, Encoding e)
47                 {
48                         return e.GetChars (b.GetBuffer (), 0, (int) b.Length);
49                 }
50
51                 public static string UrlDecode (string s, Encoding e)
52                 {
53                         if (null == s) 
54                                 return null;
55
56                         if (s.IndexOf ('%') == -1 && s.IndexOf ('+') == -1)
57                                 return s;
58
59                         if (e == null)
60                                 e = Encoding.GetEncoding (28591);
61         
62                         StringBuilder output = new StringBuilder ();
63                         long len = s.Length;
64                         NumberStyles hexa = NumberStyles.HexNumber;
65                         MemoryStream bytes = new MemoryStream ();
66         
67                         for (int i = 0; i < len; i++) {
68                                 if (s [i] == '%' && i + 2 < len) {
69                                         if (s [i + 1] == 'u' && i + 5 < len) {
70                                                 if (bytes.Length > 0) {
71                                                         output.Append (GetChars (bytes, e));
72                                                         bytes.SetLength (0);
73                                                 }
74                                                 output.Append ((char) Int32.Parse (s.Substring (i + 2, 4), hexa));
75                                                 i += 5;
76                                         } else {
77                                                 bytes.WriteByte ((byte) Int32.Parse (s.Substring (i + 1, 2), hexa));
78                                                 i += 2;
79                                         }
80                                         continue;
81                                 }
82
83                                 if (bytes.Length > 0) {
84                                         output.Append (GetChars (bytes, e));
85                                         bytes.SetLength (0);
86                                 }
87
88                                 if (s [i] == '+') {
89                                         output.Append (' ');
90                                 } else {
91                                         output.Append (s [i]);
92                                 }
93                         }
94         
95                         if (bytes.Length > 0) {
96                                 output.Append (GetChars (bytes, e));
97                         }
98
99                         bytes = null;
100                         return output.ToString ();
101                 }
102         }
103 }
104 #endif
105