| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602 |
- //
- // System.Xml.XmlValidatingReader.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Atsushi Enomoto ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- // (C)2003 Atsushi Enomoto
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Collections;
- using System.IO;
- using System.Text;
- using System.Xml.Schema;
- using Mono.Xml;
- using Mono.Xml.Schema;
- namespace System.Xml
- {
- #if NET_2_0
- [Obsolete("Use XmlReader created by XmlReader.Create() method using"
- + " appropriate XmlReaderSettings instead.")]
- public class XmlValidatingReader : XmlReader, IXmlLineInfo, IXmlNamespaceResolver
- #else
- public class XmlValidatingReader : XmlReader, IXmlLineInfo
- #endif
- {
- #region Fields
- EntityHandling entityHandling;
- XmlReader sourceReader;
- XmlTextReader xmlTextReader;
- XmlReader validatingReader;
- XmlResolver resolver; // Only used to non-XmlTextReader XmlReader
- bool specifiedResolver;
- ValidationType validationType;
- // for 2.0: Now it is obsolete. It is allocated only when it is required
- XmlSchemaSet schemas;
- DTDValidatingReader dtdReader;
- IHasXmlSchemaInfo schemaInfo;
- StringBuilder storedCharacters;
- #endregion // Fields
- #region Constructors
- public XmlValidatingReader (XmlReader reader)
- {
- sourceReader = reader;
- xmlTextReader = reader as XmlTextReader;
- if (xmlTextReader == null)
- resolver = new XmlUrlResolver ();
- entityHandling = EntityHandling.ExpandEntities;
- validationType = ValidationType.Auto;
- schemas = new XmlSchemaSet ();
- storedCharacters = new StringBuilder ();
- }
- public XmlValidatingReader (Stream xmlFragment, XmlNodeType fragType, XmlParserContext context)
- : this (new XmlTextReader (xmlFragment, fragType, context))
- {
- }
- public XmlValidatingReader (string xmlFragment, XmlNodeType fragType, XmlParserContext context)
- : this (new XmlTextReader (xmlFragment, fragType, context))
- {
- }
- #endregion // Constructors
- #region Properties
- public override int AttributeCount {
- get { return validatingReader == null ? 0 : validatingReader.AttributeCount; }
- }
- public override string BaseURI {
- get { return validatingReader == null ? sourceReader.BaseURI : validatingReader.BaseURI; }
- }
- // This property for this class always return true.
- public override bool CanResolveEntity {
- get { return true; }
- }
- public override int Depth {
- get { return validatingReader == null ? 0 : validatingReader.Depth; }
- }
- public Encoding Encoding {
- get {
- if (xmlTextReader != null)
- return xmlTextReader.Encoding;
- else
- throw new NotSupportedException ("Encoding is supported only for XmlTextReader.");
- }
- }
- public EntityHandling EntityHandling {
- get { return entityHandling; }
- set { entityHandling = value; }
- }
- public override bool EOF {
- get { return validatingReader == null ? false : validatingReader.EOF; }
- }
- #if DTD_HANDLE_EVENTS
- internal bool HasValidationEvent {
- get { return ValidationEventHandler != null; }
- }
- #endif
- public override bool HasValue {
- get { return validatingReader == null ? false : validatingReader.HasValue; }
- }
- public override bool IsDefault {
- get { return validatingReader == null ? false : validatingReader.IsDefault; }
- }
- public override bool IsEmptyElement {
- get { return validatingReader == null ? false : validatingReader.IsEmptyElement; }
- }
- public override string this [int i] {
- get {
- if (validatingReader == null)
- throw new IndexOutOfRangeException ("Reader is not started.");
- return validatingReader [i];
- }
- }
- public override string this [string name] {
- get { return validatingReader == null ? null : validatingReader [name]; }
- }
- public override string this [string localName, string namespaceName] {
- get { return validatingReader == null ? null : validatingReader [localName, namespaceName]; }
- }
- #if NET_2_0
- public int LineNumber {
- #else
- int IXmlLineInfo.LineNumber {
- #endif
- get {
- if (IsDefault)
- return 0;
- IXmlLineInfo info = validatingReader as IXmlLineInfo;
- return info != null ? info.LineNumber : 0;
- }
- }
- #if NET_2_0
- public int LinePosition {
- #else
- int IXmlLineInfo.LinePosition {
- #endif
- get {
- if (IsDefault)
- return 0;
- IXmlLineInfo info = validatingReader as IXmlLineInfo;
- return info != null ? info.LinePosition : 0;
- }
- }
- public override string LocalName {
- get {
- if (validatingReader == null)
- return String.Empty;
- else if (Namespaces)
- return validatingReader.LocalName;
- else
- return validatingReader.Name;
- }
- }
- public override string Name {
- get { return validatingReader == null ? String.Empty : validatingReader.Name; }
- }
- public bool Namespaces {
- get {
- if (xmlTextReader != null)
- return xmlTextReader.Namespaces;
- else
- return true;
- }
- set {
- if (ReadState != ReadState.Initial)
- throw new InvalidOperationException ("Namespaces have to be set before reading.");
- if (xmlTextReader != null)
- xmlTextReader.Namespaces = value;
- else
- throw new NotSupportedException ("Property 'Namespaces' is supported only for XmlTextReader.");
- }
- }
- public override string NamespaceURI {
- get {
- if (validatingReader == null)
- return String.Empty;
- else if (Namespaces)
- return validatingReader.NamespaceURI;
- else
- return String.Empty;
- }
- }
- public override XmlNameTable NameTable {
- get { return validatingReader == null ? sourceReader.NameTable : validatingReader.NameTable; }
- }
- public override XmlNodeType NodeType {
- get { return validatingReader == null ? XmlNodeType.None : validatingReader.NodeType; }
- }
- public override string Prefix {
- get { return validatingReader == null ? String.Empty : validatingReader.Prefix; }
- }
- public override char QuoteChar {
- get { return validatingReader == null ? sourceReader.QuoteChar : validatingReader.QuoteChar; }
- }
- public XmlReader Reader {
- get { return sourceReader; }
- }
- public override ReadState ReadState {
- get {
- if (validatingReader == null)
- return ReadState.Initial;
- return validatingReader.ReadState;
- }
- }
- internal XmlResolver Resolver {
- get {
- // This is special rule... MS.NET shares the
- // XmlResolver between XmlTextReader and
- // XmlValidatingReader, so we mimick that
- // silly behavior here.
- if (this.xmlTextReader != null)
- return this.xmlTextReader.Resolver;
- else
- return resolver;
- }
- }
- public XmlSchemaCollection Schemas {
- get {
- return schemas.SchemaCollection;
- }
- }
- internal void SetSchemas (XmlSchemaSet schemas)
- {
- this.schemas = schemas;
- }
- public object SchemaType {
- get { return schemaInfo.SchemaType; }
- }
- #if NET_2_0
- [MonoTODO]
- public override XmlReaderSettings Settings {
- get { return validatingReader == null ? sourceReader.Settings : validatingReader.Settings; }
- }
- #endif
- [MonoTODO ("We decided not to support XDR schema that spec is obsolete.")]
- public ValidationType ValidationType {
- get { return validationType; }
- set {
- if (ReadState != ReadState.Initial)
- throw new InvalidOperationException ("ValidationType cannot be set after the first call to Read method.");
- switch (validationType) {
- case ValidationType.Auto:
- case ValidationType.DTD:
- case ValidationType.None:
- case ValidationType.Schema:
- validationType = value;
- break;
- case ValidationType.XDR:
- throw new NotSupportedException ();
- }
- }
- }
- public override string Value {
- get { return validatingReader == null ? String.Empty : validatingReader.Value; }
- }
- public override string XmlLang {
- get { return validatingReader == null ? String.Empty : validatingReader.XmlLang; }
- }
- public XmlResolver XmlResolver {
- set {
- specifiedResolver = true;
- if (xmlTextReader != null)
- xmlTextReader.XmlResolver = value;
- else
- resolver = value;
- XsdValidatingReader xsvr = validatingReader as XsdValidatingReader;
- if (xsvr != null)
- xsvr.XmlResolver = value;
- DTDValidatingReader dvr = validatingReader as DTDValidatingReader;
- if (dvr != null)
- dvr.XmlResolver = value;
- }
- }
- public override XmlSpace XmlSpace {
- get { return validatingReader == null ? XmlSpace.None : validatingReader.XmlSpace; }
- }
- #endregion // Properties
- #region Methods
- public override void Close ()
- {
- if (validatingReader == null)
- sourceReader.Close ();
- else
- validatingReader.Close ();
- }
- public override string GetAttribute (int i)
- {
- return this [i];
- }
- public override string GetAttribute (string name)
- {
- return this [name];
- }
- public override string GetAttribute (string localName, string namespaceName)
- {
- return this [localName, namespaceName];
- }
- internal XmlParserContext GetInternalParserContext ()
- {
- return dtdReader != null ?
- dtdReader.ParserContext : null;
- }
- #if NET_2_0
- IDictionary IXmlNamespaceResolver.GetNamespacesInScope (XmlNamespaceScope scope)
- {
- return GetInternalParserContext ().NamespaceManager.GetNamespacesInScope (scope);
- }
- #endif
- #if NET_2_0
- public bool HasLineInfo ()
- #else
- bool IXmlLineInfo.HasLineInfo ()
- #endif
- {
- IXmlLineInfo info = validatingReader as IXmlLineInfo;
- return info != null ? info.HasLineInfo () : false;
- }
- public override string LookupNamespace (string prefix)
- {
- if (validatingReader != null)
- return sourceReader.LookupNamespace (prefix);
- else
- return validatingReader.LookupNamespace (prefix);
- }
- #if NET_2_0
- string IXmlNamespaceResolver.LookupPrefix (string ns)
- {
- IXmlNamespaceResolver res = null;
- if (validatingReader != null)
- res = sourceReader as IXmlNamespaceResolver;
- else
- res = validatingReader as IXmlNamespaceResolver;
- return res != null ?
- res.LookupNamespace (ns) :
- null;
- }
- string IXmlNamespaceResolver.LookupPrefix (string ns, bool atomizedNames)
- {
- IXmlNamespaceResolver res = null;
- if (validatingReader != null)
- res = sourceReader as IXmlNamespaceResolver;
- else
- res = validatingReader as IXmlNamespaceResolver;
- return res != null ?
- res.LookupNamespace (ns, atomizedNames) :
- null;
- }
- #endif
- public override void MoveToAttribute (int i)
- {
- if (validatingReader == null)
- throw new IndexOutOfRangeException ("Reader is not started.");
- else
- validatingReader.MoveToAttribute (i);
- }
- public override bool MoveToAttribute (string name)
- {
- if (validatingReader == null)
- return false;
- return validatingReader.MoveToAttribute (name);
- }
- public override bool MoveToAttribute (string localName, string namespaceName)
- {
- if (validatingReader == null)
- return false;
- return validatingReader.MoveToAttribute (localName, namespaceName);
- }
- public override bool MoveToElement ()
- {
- if (validatingReader == null)
- return false;
- return validatingReader.MoveToElement ();
- }
- public override bool MoveToFirstAttribute ()
- {
- if (validatingReader == null)
- return false;
- return validatingReader.MoveToFirstAttribute ();
- }
- public override bool MoveToNextAttribute ()
- {
- if (validatingReader == null)
- return false;
- return validatingReader.MoveToNextAttribute ();
- }
- [MonoTODO ("We decided not to support XDR schema that spec is obsolete.")]
- public override bool Read ()
- {
- if (ReadState == ReadState.Initial) {
- switch (ValidationType) {
- case ValidationType.Auto:
- case ValidationType.None:
- goto case ValidationType.Schema; // might be specified by xsi:schemaLocation.
- case ValidationType.DTD:
- validatingReader = dtdReader = new DTDValidatingReader (sourceReader, this);
- dtdReader.XmlResolver = Resolver;
- break;
- case ValidationType.Schema:
- dtdReader = new DTDValidatingReader (sourceReader, this);
- XsdValidatingReader xsvr = new XsdValidatingReader (dtdReader, this);
- xsvr.Schemas = Schemas.SchemaSet;
- validatingReader = xsvr;
- xsvr.XmlResolver = Resolver;
- dtdReader.XmlResolver = Resolver;
- break;
- case ValidationType.XDR:
- throw new NotSupportedException ();
- }
- schemaInfo = validatingReader as IHasXmlSchemaInfo;
- }
- return validatingReader.Read ();
- }
- public override bool ReadAttributeValue ()
- {
- if (validatingReader == null)
- return false;
- return validatingReader.ReadAttributeValue ();
- }
- #if NET_1_0
- // LAMESPEC: MS.NET 1.0 has critical bug here.
- // After calling these methods, validation does not work anymore!
- public override string ReadInnerXml ()
- {
- if (validatingReader == null)
- return "";
- return validatingReader.ReadInnerXml ();
- }
- public override string ReadOuterXml ()
- {
- if (validatingReader == null)
- return "";
- return validatingReader.ReadOuterXml ();
- }
- #endif
- #if NET_1_0
- public override string ReadString ()
- {
- return base.ReadStringInternal ();
- }
- #else
- public override string ReadString ()
- {
- return base.ReadString ();
- }
- #endif
- #if NET_2_0
- public override object ReadTypedValue ()
- #else
- public object ReadTypedValue ()
- #endif
- {
- if (dtdReader == null)
- return null;
- XmlSchemaDatatype dt = schemaInfo.SchemaType as XmlSchemaDatatype;
- if (dt == null)
- return null;
- switch (NodeType) {
- case XmlNodeType.Element:
- if (IsEmptyElement)
- return null;
- storedCharacters.Length = 0;
- bool loop = true;
- do {
- Read ();
- switch (NodeType) {
- case XmlNodeType.SignificantWhitespace:
- case XmlNodeType.Text:
- case XmlNodeType.CDATA:
- storedCharacters.Append (Value);
- break;
- case XmlNodeType.Comment:
- break;
- default:
- loop = false;
- break;
- }
- } while (loop && !EOF);
- return dt.ParseValue (storedCharacters.ToString (), NameTable, dtdReader.ParserContext.NamespaceManager);
- case XmlNodeType.Attribute:
- return dt.ParseValue (Value, NameTable, dtdReader.ParserContext.NamespaceManager);
- }
- return null;
- }
- public override void ResolveEntity ()
- {
- validatingReader.ResolveEntity ();
- }
- // It should be "protected" as usual "event model"
- // methods are, but validation event is not exposed,
- // so it is no other way to make it "internal".
- internal void OnValidationEvent (object o, ValidationEventArgs e)
- {
- if (ValidationEventHandler != null)
- ValidationEventHandler (o, e);
- else if (ValidationType != ValidationType.None && e.Severity == XmlSeverityType.Error)
- throw e.Exception;
- }
- #endregion // Methods
- #region Events and Delegates
- public event ValidationEventHandler ValidationEventHandler;
- #endregion // Events and Delegates
- }
- }
|