(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.XML / System.Xml / XmlResolver.cs
blob52b6ae6b8d9aa00ebdb295640fb7db31728e540a
1 //
2 // System.Xml.XmlResolver.cs
3 //
4 // Author:
5 // Jason Diamond (jason@injektilo.org)
6 // Atsushi Enomoto (atsushi@ximian.com)
7 //
8 // (C) 2001 Jason Diamond http://injektilo.org/
9 // (C) 2004 Novell Inc.
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.
33 using System;
34 using System.IO;
35 using System.Net;
37 namespace System.Xml
39 public abstract class XmlResolver
41 public abstract ICredentials Credentials { set; }
43 public abstract object GetEntity (
44 Uri absoluteUri,
45 string role,
46 Type type);
49 public virtual Uri ResolveUri (Uri baseUri, string relativeUri)
51 if (baseUri == null) {
52 if (relativeUri == null)
53 throw new NullReferenceException ("Either baseUri or relativeUri are required.");
54 // Don't ignore such case that relativeUri is in fact absolute uri (e.g. ResolveUri (null, "http://foo.com")).
55 if (relativeUri.StartsWith ("http:") ||
56 relativeUri.StartsWith ("https:") ||
57 relativeUri.StartsWith ("file:"))
58 return new Uri (relativeUri);
59 else
60 // extraneous "/a" is required because current Uri stuff
61 // seems ignorant of difference between "." and "./".
62 // I'd be appleciate if it is fixed with better solution.
63 return new Uri (Path.GetFullPath (relativeUri));
64 // return new Uri (new Uri (Path.GetFullPath ("./a")), EscapeRelativeUriBody (relativeUri));
67 if (relativeUri == null)
68 return baseUri;
70 return new Uri (baseUri, EscapeRelativeUriBody (relativeUri));
73 // see also XmlUrlResolver.UnescapeRelativeUriBody().
74 private string EscapeRelativeUriBody (string src)
76 return src.Replace ("<", "%3C")
77 .Replace (">", "%3E")
78 .Replace ("#", "%23")
79 .Replace ("%", "%25")
80 .Replace ("\"", "%22");