| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527 |
- //
- // System.Xml.XmlDocument
- //
- // Author:
- // Daniel Weber ([email protected])
- //
- // (C) 2001 Daniel Weber
- using System;
- using System.IO;
- using System.Xml.XPath;
- using System.Diagnostics;
- namespace System.Xml
- {
- public class XmlDocument : XmlNode
- {
- #region Fields
- XmlLinkedNode lastLinkedChild;
- XmlNameTable nameTable;
- #endregion
- #region Constructors
- public XmlDocument () : base (null) { }
- [MonoTODO]
- protected internal XmlDocument (XmlImplementation imp) : base (null)
- {
- throw new NotImplementedException ();
- }
- public XmlDocument (NameTable nt) : base (null)
- {
- nameTable = nt;
- }
- #endregion
- #region Events
- public event XmlNodeChangedEventHandler NodeChanged;
- public event XmlNodeChangedEventHandler NodeChanging;
- public event XmlNodeChangedEventHandler NodeInserted;
- public event XmlNodeChangedEventHandler NodeInserting;
- public event XmlNodeChangedEventHandler NodeRemoved;
- public event XmlNodeChangedEventHandler NodeRemoving;
- #endregion
- #region Properties
- [MonoTODO]
- public override string BaseURI {
- get { throw new NotImplementedException(); }
- }
- public XmlElement DocumentElement {
- get {
- XmlNode node = FirstChild;
- while (node != null) {
- if (node is XmlElement)
- break;
- node = node.NextSibling;
- }
- return node != null ? node as XmlElement : null;
- }
- }
- [MonoTODO]
- public virtual XmlDocumentType DocumentType {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public XmlImplementation Implementation {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public override string InnerXml {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- public override bool IsReadOnly {
- get { return false; }
- }
- internal override XmlLinkedNode LastLinkedChild {
- get {
- return lastLinkedChild;
- }
- set {
- lastLinkedChild = value;
- }
- }
-
- public override string LocalName {
- get { return "#document"; }
- }
- public override string Name {
- get { return "#document"; }
- }
- public XmlNameTable NameTable {
- get { return nameTable; }
- }
- public override XmlNodeType NodeType {
- get { return XmlNodeType.Document; }
- }
- public override XmlDocument OwnerDocument {
- get { return null; }
- }
- [MonoTODO]
- public bool PreserveWhitespace {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public XmlResolver XmlResolver {
- set { throw new NotImplementedException(); }
- }
- #endregion
- #region Methods
- [MonoTODO]
- public override XmlNode CloneNode (bool deep)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlAttribute CreateAttribute (string name)
- {
- int indexOfColon = name.IndexOf (':');
-
- if (indexOfColon == -1)
- return CreateAttribute (String.Empty, name, String.Empty);
- string prefix = name.Substring (0, indexOfColon);
- string localName = name.Substring (indexOfColon + 1);
- return CreateAttribute (prefix, localName, String.Empty);
- }
- [MonoTODO]
- public XmlAttribute CreateAttribute (string qualifiedName, string namespaceURI)
- {
- int indexOfColon = qualifiedName.IndexOf (':');
-
- if (indexOfColon == -1)
- return CreateAttribute (String.Empty, qualifiedName, String.Empty);
- string prefix = qualifiedName.Substring (0, indexOfColon);
- string localName = qualifiedName.Substring (indexOfColon + 1);
- return CreateAttribute (prefix, localName, String.Empty);
- }
- public virtual XmlAttribute CreateAttribute (string prefix, string localName, string namespaceURI)
- {
- return new XmlAttribute (prefix, localName, namespaceURI, this);
- }
- public virtual XmlCDataSection CreateCDataSection (string data)
- {
- return new XmlCDataSection (data, this);
- }
- public virtual XmlComment CreateComment (string data)
- {
- return new XmlComment(data, this);
- }
- [MonoTODO]
- protected internal virtual XmlAttribute CreateDefaultAttribute (string prefix, string localName, string namespaceURI)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual XmlDocumentFragment CreateDocumentFragment ()
- {
- throw new NotImplementedException ();
- }
- public virtual XmlDocumentType CreateDocumentType (string name, string publicId,
- string systemId, string internalSubset)
- {
- return new XmlDocumentType (name, publicId, systemId, internalSubset, this);
- }
- public XmlElement CreateElement (string name)
- {
- int indexOfColon = name.IndexOf (':');
-
- if (indexOfColon == -1)
- return CreateElement (String.Empty, name, String.Empty);
- string prefix = name.Substring (0, indexOfColon);
- string localName = name.Substring (indexOfColon + 1);
- return CreateElement (prefix, localName, String.Empty);
- }
- [MonoTODO]
- public XmlElement CreateElement (
- string qualifiedName,
- string namespaceURI)
- {
- int indexOfColon = qualifiedName.IndexOf (':');
-
- if (indexOfColon == -1)
- return CreateElement (String.Empty, qualifiedName, namespaceURI);
- string prefix = qualifiedName.Substring (0, indexOfColon);
- string localName = qualifiedName.Substring (indexOfColon + 1);
- return CreateElement (prefix, localName, namespaceURI);
- }
- public virtual XmlElement CreateElement (
- string prefix,
- string localName,
- string namespaceURI)
- {
- return new XmlElement (prefix, localName, namespaceURI, this);
- }
- [MonoTODO]
- public virtual XmlEntityReference CreateEntityReference (string name)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected internal virtual XPathNavigator CreateNavigator (XmlNode node)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual XmlNode CreateNode (
- string nodeTypeString,
- string name,
- string namespaceURI)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual XmlNode CreateNode (
- XmlNodeType type,
- string name,
- string namespaceURI)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual XmlNode CreateNode (
- XmlNodeType type,
- string prefix,
- string name,
- string namespaceURI)
- {
- throw new NotImplementedException ();
- }
- public virtual XmlProcessingInstruction CreateProcessingInstruction (
- string target,
- string data)
- {
- return new XmlProcessingInstruction (target, data, this);
- }
- public virtual XmlSignificantWhitespace CreateSignificantWhitespace (string text)
- {
- foreach (char c in text)
- if ((c != ' ') && (c != '\r') && (c != '\n') && (c != '\t'))
- throw new ArgumentException ("Invalid whitespace characters.");
-
- return new XmlSignificantWhitespace (text, this);
- }
- public virtual XmlText CreateTextNode (string text)
- {
- return new XmlText (text, this);
- }
- public virtual XmlWhitespace CreateWhitespace (string text)
- {
- foreach (char c in text)
- if ((c != ' ') && (c != '\r') && (c != '\n') && (c != '\t'))
- throw new ArgumentException ("Invalid whitespace characters.");
-
- return new XmlWhitespace (text, this);
- }
- public virtual XmlDeclaration CreateXmlDeclaration (string version, string encoding,
- string standalone)
- {
- if (version != "1.0")
- throw new ArgumentException ("version string is not correct.");
- if ((standalone != null) && !((standalone == "yes") || (standalone == "no")))
- throw new ArgumentException ("standalone string is not correct.");
-
- return new XmlDeclaration (version, encoding, standalone, this);
- }
- [MonoTODO]
- public virtual XmlElement GetElementById (string elementId)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual XmlNodeList GetElementsByTagName (string name)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual XmlNodeList GetElementsByTagName (string localName, string namespaceURI)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public virtual XmlNode ImportNode (XmlNode node, bool deep)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Load (Stream inStream)
- {
- throw new NotImplementedException ();
- }
- public virtual void Load (string filename)
- {
- XmlReader xmlReader = new XmlTextReader (new StreamReader (filename));
- Load (xmlReader);
- }
- [MonoTODO]
- public virtual void Load (TextReader txtReader)
- {
- throw new NotImplementedException ();
- }
- public virtual void Load (XmlReader xmlReader)
- {
- // Reset our document
- // For now this just means removing all our children but later this
- // may turn out o need to call a private method that resets other things
- // like properties we have, etc.
- RemoveAll ();
- XmlNode currentNode = this;
- XmlNode newNode;
- while (xmlReader.Read ())
- {
- switch (xmlReader.NodeType) {
- case XmlNodeType.CDATA:
- newNode = CreateCDataSection(xmlReader.Value);
- currentNode.AppendChild (newNode);
- break;
- case XmlNodeType.Comment:
- newNode = CreateComment (xmlReader.Value);
- currentNode.AppendChild (newNode);
- break;
- case XmlNodeType.Element:
- XmlElement element = CreateElement (xmlReader.Prefix, xmlReader.LocalName, xmlReader.NamespaceURI);
- currentNode.AppendChild (element);
- // set the element's attributes.
- while (xmlReader.MoveToNextAttribute ())
- element.SetAttribute (xmlReader.Name, xmlReader.Value);
- xmlReader.MoveToElement ();
- // if this element isn't empty, push it onto our "stack".
- if (!xmlReader.IsEmptyElement)
- currentNode = element;
- break;
- case XmlNodeType.EndElement:
- currentNode = currentNode.ParentNode;
- break;
- case XmlNodeType.ProcessingInstruction:
- newNode = CreateProcessingInstruction (xmlReader.Name, xmlReader.Value);
- currentNode.AppendChild (newNode);
- break;
- case XmlNodeType.Text:
- newNode = CreateTextNode (xmlReader.Value);
- currentNode.AppendChild (newNode);
- break;
- }
- }
- }
- public virtual void LoadXml (string xml)
- {
- XmlReader xmlReader = new XmlTextReader (new StringReader (xml));
- Load (xmlReader);
- }
- internal void onNodeChanged (XmlNode node, XmlNode Parent)
- {
- if (NodeChanged != null)
- NodeInserted (node, new XmlNodeChangedEventArgs
- (XmlNodeChangedAction.Change,
- node, Parent, Parent));
- }
- internal void onNodeChanging(XmlNode node, XmlNode Parent)
- {
- if (NodeInserting != null)
- NodeChanging (node, new XmlNodeChangedEventArgs
- (XmlNodeChangedAction.Change,
- node, Parent, Parent));
- }
- internal void onNodeInserted (XmlNode node, XmlNode newParent)
- {
- if (NodeInserted != null)
- NodeInserted (node, new XmlNodeChangedEventArgs
- (XmlNodeChangedAction.Insert,
- node, null, newParent));
- }
- internal void onNodeInserting (XmlNode node, XmlNode newParent)
- {
- if (NodeInserting != null)
- NodeInserting (node, new XmlNodeChangedEventArgs
- (XmlNodeChangedAction.Insert,
- node, null, newParent));
- }
- internal void onNodeRemoved (XmlNode node, XmlNode oldParent)
- {
- if (NodeRemoved != null)
- NodeRemoved (node, new XmlNodeChangedEventArgs
- (XmlNodeChangedAction.Remove,
- node, oldParent, null));
- }
- internal void onNodeRemoving (XmlNode node, XmlNode oldParent)
- {
- if (NodeRemoving != null)
- NodeRemoving (node, new XmlNodeChangedEventArgs
- (XmlNodeChangedAction.Remove,
- node, oldParent, null));
- }
- [MonoTODO]
- public virtual XmlNode ReadNode(XmlReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Save(Stream outStream)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Save (string filename)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Save (TextWriter writer)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Save (XmlWriter writer)
- {
- throw new NotImplementedException ();
- }
- public override void WriteContentTo (XmlWriter w)
- {
- foreach(XmlNode childNode in ChildNodes)
- childNode.WriteTo(w);
- }
- public override void WriteTo (XmlWriter w)
- {
- WriteContentTo(w);
- }
- #endregion
- }
- }
|