This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.XML / System.Xml / XmlResolver.cs
1 //\r
2 // System.Xml.XmlResolver.cs\r
3 //\r
4 // Author:\r
5 //   Jason Diamond (jason@injektilo.org)\r
6 //   Atsushi Enomoto (atsushi@ximian.com)\r
7 //\r
8 // (C) 2001 Jason Diamond  http://injektilo.org/\r
9 // (C) 2004 Novell Inc.\r
10 //\r
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32 \r
33 using System;\r
34 using System.IO;\r
35 using System.Net;\r
36 \r
37 namespace System.Xml\r
38 {\r
39         public abstract class XmlResolver\r
40         {\r
41                 public abstract ICredentials Credentials { set; }\r
42 \r
43                 public abstract object GetEntity (\r
44                         Uri absoluteUri,\r
45                         string role,\r
46                         Type type);\r
47 \r
48 \r
49                 public virtual Uri ResolveUri (Uri baseUri, string relativeUri)\r
50                 {\r
51                         if (baseUri == null) {\r
52                                 if (relativeUri == null)\r
53                                         throw new NullReferenceException ("Either baseUri or relativeUri are required.");\r
54                                 // Don't ignore such case that relativeUri is in fact absolute uri (e.g. ResolveUri (null, "http://foo.com")).\r
55                                 if (relativeUri.StartsWith ("http:") ||\r
56                                         relativeUri.StartsWith ("https:") ||\r
57                                         relativeUri.StartsWith ("file:"))\r
58                                         return new Uri (relativeUri);\r
59                                 else\r
60                                         // extraneous "/a" is required because current Uri stuff \r
61                                         // seems ignorant of difference between "." and "./". \r
62                                         // I'd be appleciate if it is fixed with better solution.\r
63                                         return new Uri (Path.GetFullPath (relativeUri));\r
64 //                                      return new Uri (new Uri (Path.GetFullPath ("./a")), EscapeRelativeUriBody (relativeUri));\r
65                         }\r
66 \r
67                         if (relativeUri == null)\r
68                                 return baseUri;\r
69 \r
70                         return new Uri (baseUri, EscapeRelativeUriBody (relativeUri));\r
71                 }\r
72 \r
73                 // see also XmlUrlResolver.UnescapeRelativeUriBody().\r
74                 private string EscapeRelativeUriBody (string src)\r
75                 {\r
76                         return src.Replace ("<", "%3C")\r
77                                 .Replace (">", "%3E")\r
78                                 .Replace ("#", "%23")\r
79                                 .Replace ("%", "%25")\r
80                                 .Replace ("\"", "%22");\r
81                 }\r
82         }\r
83 }\r