| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- //
- // XmlNamespaceManager.cs
- //
- // Author:
- // Jason Diamond ([email protected])
- //
- // (C) 2001 Jason Diamond http://injektilo.org/
- //
- using System.Collections;
- namespace System.Xml
- {
- public class XmlNamespaceManager : IEnumerable
- {
- #region Fields
- private XmlNameTable nameTable;
- private NamespaceScope currentScope;
- #endregion
- #region Constructor
- public XmlNamespaceManager (XmlNameTable nameTable)
- {
- this.nameTable = nameTable;
- nameTable.Add ("xmlns");
- nameTable.Add ("xml");
- nameTable.Add (String.Empty);
- nameTable.Add ("http://www.w3.org/2000/xmlns/");
- nameTable.Add ("http://www.w3.org/XML/1998/namespace");
- PushScope ();
- }
- #endregion
- #region Properties
- public virtual string DefaultNamespace {
- get { return LookupNamespace (String.Empty); }
- }
- public XmlNameTable NameTable {
- get { return nameTable; }
- }
- #endregion
- #region Methods
- public virtual void AddNamespace (string prefix, string uri)
- {
- if (prefix == null)
- throw new ArgumentNullException ("prefix", "Value cannot be null.");
- if (uri == null)
- throw new ArgumentNullException ("uri", "Value cannot be null.");
- if (prefix.Length > 2 && prefix.Substring (0, 3).ToLower () == "xml")
- throw new ArgumentException ( "Prefixes beginning with \"xml\" (regardless " + "of whether the characters are uppercase, lowercase, or some combination thereof) are reserved for use by XML.", "prefix");
- if (currentScope.Namespaces == null)
- currentScope.Namespaces = new Hashtable ();
- if (prefix != String.Empty)
- nameTable.Add (prefix);
- currentScope.Namespaces [prefix] = nameTable.Add (uri);
- }
- public virtual IEnumerator GetEnumerator ()
- {
- if (currentScope.Namespaces == null)
- currentScope.Namespaces = new Hashtable ();
- return currentScope.Namespaces.Keys.GetEnumerator ();
- }
- public virtual bool HasNamespace (string prefix)
- {
- return currentScope != null && currentScope.Namespaces != null && currentScope.Namespaces.Contains (prefix);
- }
- public virtual string LookupNamespace (string prefix)
- {
- NamespaceScope scope = currentScope;
- while (scope != null) {
- if (scope.Namespaces != null && scope.Namespaces.Contains (prefix))
- return scope.Namespaces[prefix] as string;
- scope = scope.Next;
- }
- switch (prefix) {
- case "xmlns":
- return nameTable.Get ("http://www.w3.org/2000/xmlns/");
- case "xml":
- return nameTable.Get ("http://www.w3.org/XML/1998/namespace");
- case "":
- return nameTable.Get (String.Empty);
- }
- return null;
- }
- public virtual string LookupPrefix (string uri)
- {
- if (uri == null)
- return null;
- NamespaceScope scope = currentScope;
- while (scope != null)
- {
- if (scope.Namespaces != null && scope.Namespaces.ContainsValue (uri)) {
- foreach (DictionaryEntry entry in scope.Namespaces) {
- if (entry.Value.ToString() == uri)
- return nameTable.Get (entry.Key as string) as string;
- }
- }
- scope = scope.Next;
- }
- // ECMA specifies that this method returns String.Empty
- // in case of no match. But actually MS.NET returns null.
- // For more information,see
- // http://lists.ximian.com/archives/public/mono-list/2003-January/005071.html
- //return String.Empty;
- return null;
- }
- public virtual bool PopScope ()
- {
- if (currentScope != null)
- currentScope = currentScope.Next;
- return currentScope != null;
- }
- public virtual void PushScope ()
- {
- NamespaceScope newScope = new NamespaceScope ();
- newScope.Next = currentScope;
- currentScope = newScope;
- }
- public virtual void RemoveNamespace (string prefix, string uri)
- {
- if (prefix == null)
- throw new ArgumentNullException ("prefix");
- if (uri == null)
- throw new ArgumentNullException ("uri");
- if (currentScope == null || currentScope.Namespaces == null)
- return;
- string p = nameTable.Get (prefix);
- string u = nameTable.Get (uri);
- if (p == null || u == null)
- return;
-
- string storedUri = currentScope.Namespaces [p] as string;
- if (storedUri == null || storedUri != u)
- return;
- currentScope.Namespaces.Remove (p);
- }
- #endregion
- }
- internal class NamespaceScope
- {
- internal NamespaceScope Next;
- internal Hashtable Namespaces;
- }
- }
|