In System.Timers:
[mono.git] / mcs / class / System / System / UriData.cs
1 //
2 // System.UriData class
3 //
4 // Author:
5 //      Raja R Harinath <harinath@hurrynot.org>
6 //
7 // Copyright (C) 2009 Novell, Inc (http://www.novell.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;
30 using System.Globalization;
31 using System.Security.Permissions;
32 using System.Text;
33
34 namespace System {
35         class UriData : IUriData {
36                 Uri uri;
37                 UriParser parser;
38
39                 public UriData (Uri uri, UriParser parser)
40                 {
41                         this.uri = uri;
42                         this.parser = parser;
43                 }
44
45                 string Lookup (ref string cache, UriComponents components)
46                 {
47                         return Lookup (ref cache, components, uri.UserEscaped ? UriFormat.Unescaped : UriFormat.UriEscaped);
48                 }
49
50                 string Lookup (ref string cache, UriComponents components, UriFormat format)
51                 {
52                         if (cache == null)
53                                 cache = parser.GetComponents (uri, components, format);
54                         return cache;
55                 }
56
57                 string absolute_path;
58                 public string AbsolutePath {
59                         get { return Lookup ( ref absolute_path, UriComponents.Path | UriComponents.KeepDelimiter);
60                         }
61                 }
62
63                 string absolute_uri;
64                 public string AbsoluteUri {
65                         get { return Lookup (ref absolute_uri, UriComponents.AbsoluteUri); }
66                 }
67
68                 string absolute_uri_unescaped;
69                 public string AbsoluteUri_SafeUnescaped {
70                         get { return Lookup (ref absolute_uri_unescaped, UriComponents.AbsoluteUri, UriFormat.SafeUnescaped); }
71                 }
72
73                 string authority;
74                 public string Authority {
75                         get { return Lookup (ref authority, UriComponents.Host | UriComponents.Port); }
76                 }
77
78                 string fragment;
79                 public string Fragment {
80                         get { return Lookup (ref fragment, UriComponents.Fragment | UriComponents.KeepDelimiter); }
81                 }
82
83                 string host;
84                 public string Host {
85                         get { return Lookup (ref host, UriComponents.Host); }
86                 }
87
88                 string path_and_query;
89                 public string PathAndQuery {
90                         get { return Lookup (ref path_and_query, UriComponents.PathAndQuery); }
91                 }
92
93                 string strong_port;
94                 public string StrongPort {
95                         get { return Lookup (ref strong_port, UriComponents.StrongPort); }
96                 }
97
98                 string query;
99                 public string Query {
100                         get { return Lookup (ref query, UriComponents.Query | UriComponents.KeepDelimiter); }
101                 }
102
103                 string user_info;
104                 public string UserInfo {
105                         get { return Lookup (ref user_info, UriComponents.UserInfo); }
106                 }
107         }
108 }