| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112 |
- //
- // Mono.Xml.DTDObjectModel
- //
- // Author:
- // Atsushi Enomoto ([email protected])
- //
- // (C)2003 Atsushi Enomoto
- //
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.Globalization;
- using System.IO;
- using System.Text;
- using System.Xml;
- using System.Xml.Schema;
- using Mono.Xml.Schema;
- using Mono.Xml.Native;
- namespace Mono.Xml
- {
- public class DTDObjectModel
- {
- DTDAutomataFactory factory;
- DTDElementAutomata rootAutomata;
- DTDEmptyAutomata emptyAutomata;
- DTDAnyAutomata anyAutomata;
- DTDInvalidAutomata invalidAutomata;
- DTDElementDeclarationCollection elementDecls;
- DTDAttListDeclarationCollection attListDecls;
- DTDParameterEntityDeclarationCollection peDecls;
- DTDEntityDeclarationCollection entityDecls;
- DTDNotationDeclarationCollection notationDecls;
- ArrayList validationErrors;
- XmlResolver resolver;
- XmlNameTable nameTable;
- string baseURI;
- string name;
- string publicId;
- string systemId;
- string intSubset;
- bool intSubsetHasPERef;
- bool isStandalone;
- int lineNumber;
- int linePosition;
- public DTDObjectModel (XmlNameTable nameTable)
- {
- this.nameTable = nameTable;
- elementDecls = new DTDElementDeclarationCollection (this);
- attListDecls = new DTDAttListDeclarationCollection (this);
- entityDecls = new DTDEntityDeclarationCollection (this);
- peDecls = new DTDParameterEntityDeclarationCollection (this);
- notationDecls = new DTDNotationDeclarationCollection (this);
- factory = new DTDAutomataFactory (this);
- validationErrors = new ArrayList ();
- }
- public string BaseURI {
- get { return baseURI; }
- set { baseURI = value; }
- }
- public bool IsStandalone {
- get { return isStandalone; }
- set { isStandalone = value; }
- }
- public string Name {
- get { return name; }
- set { name = value; }
- }
- public XmlNameTable NameTable {
- get { return nameTable; }
- }
-
- public string PublicId {
- get { return publicId; }
- set { publicId = value; }
- }
- public string SystemId {
- get { return systemId; }
- set { systemId = value; }
- }
-
- public string InternalSubset {
- get { return intSubset; }
- set { intSubset = value; }
- }
- public bool InternalSubsetHasPEReference {
- get { return intSubsetHasPERef; }
- set { intSubsetHasPERef = value; }
- }
- public int LineNumber {
- get { return lineNumber; }
- set { lineNumber = value; }
- }
- public int LinePosition {
- get { return linePosition; }
- set { linePosition = value; }
- }
-
- public string ResolveEntity (string name)
- {
- DTDEntityDeclaration decl = EntityDecls [name]
- as DTDEntityDeclaration;
- if (decl == null) {
- AddError (new XmlSchemaException ("Required entity was not found.",
- this.LineNumber, this.LinePosition, null, this.BaseURI, null));
- return " ";
- }
- else
- return decl.EntityValue;
- }
- internal XmlResolver Resolver {
- get { return resolver; }
- }
- public XmlResolver XmlResolver {
- set { resolver = value; }
- }
- public DTDAutomataFactory Factory {
- get { return factory; }
- }
- public DTDElementDeclaration RootElement {
- get { return ElementDecls [Name]; }
- }
- public DTDElementDeclarationCollection ElementDecls {
- get { return elementDecls; }
- }
- public DTDAttListDeclarationCollection AttListDecls {
- get { return attListDecls; }
- }
- public DTDEntityDeclarationCollection EntityDecls {
- get { return entityDecls; }
- }
- public DTDParameterEntityDeclarationCollection PEDecls {
- get { return peDecls; }
- }
- public DTDNotationDeclarationCollection NotationDecls {
- get { return notationDecls; }
- }
- public DTDAutomata RootAutomata {
- get {
- if (rootAutomata == null)
- rootAutomata = new DTDElementAutomata (this, this.Name);
- return rootAutomata;
- }
- }
- public DTDEmptyAutomata Empty {
- get {
- if (emptyAutomata == null)
- emptyAutomata = new DTDEmptyAutomata (this);
- return emptyAutomata;
- }
- }
- public DTDAnyAutomata Any {
- get {
- if (anyAutomata == null)
- anyAutomata = new DTDAnyAutomata (this);
- return anyAutomata;
- }
- }
- public DTDInvalidAutomata Invalid {
- get {
- if (invalidAutomata == null)
- invalidAutomata = new DTDInvalidAutomata (this);
- return invalidAutomata;
- }
- }
- public XmlSchemaException [] Errors {
- get { return validationErrors.ToArray (typeof (XmlSchemaException)) as XmlSchemaException []; }
- }
- public void AddError (XmlSchemaException ex)
- {
- validationErrors.Add (ex);
- }
- }
- public class DTDElementDeclarationCollection
- {
- Hashtable elementDecls = new Hashtable ();
- DTDObjectModel root;
- public DTDElementDeclarationCollection (DTDObjectModel root)
- {
- this.root = root;
- }
- public DTDElementDeclaration this [string name] {
- get { return elementDecls [name] as DTDElementDeclaration; }
- }
- public void Add (string name, DTDElementDeclaration decl)
- {
- if (elementDecls [name] != null) {
- this.root.AddError (new XmlSchemaException (String.Format (
- "Element declaration for {0} was already added.",
- name), null));
- return;
- }
- decl.SetRoot (root);
- elementDecls.Add (name, decl);
- }
- public ICollection Keys {
- get { return elementDecls.Keys; }
- }
- public ICollection Values {
- get { return elementDecls.Values; }
- }
- }
- public class DTDAttListDeclarationCollection
- {
- Hashtable attListDecls = new Hashtable ();
- DTDObjectModel root;
- public DTDAttListDeclarationCollection (DTDObjectModel root)
- {
- this.root = root;
- }
- public DTDAttListDeclaration this [string name] {
- get { return attListDecls [name] as DTDAttListDeclaration; }
- }
- public void Add (string name, DTDAttListDeclaration decl)
- {
- DTDAttListDeclaration existing = this [name];
- if (existing != null) {
- // It should be valid and
- // has effect of additive declaration.
- foreach (DTDAttributeDefinition def in decl.Definitions)
- if (decl.Get (def.Name) == null)
- existing.Add (def);
- } else {
- decl.SetRoot (root);
- attListDecls.Add (name, decl);
- }
- }
- public ICollection Keys {
- get { return attListDecls.Keys; }
- }
- public ICollection Values {
- get { return attListDecls.Values; }
- }
- }
- public class DTDEntityDeclarationCollection
- {
- Hashtable entityDecls = new Hashtable ();
- DTDObjectModel root;
- public DTDEntityDeclarationCollection (DTDObjectModel root)
- {
- this.root = root;
- }
- public DTDEntityDeclaration this [string name] {
- get { return entityDecls [name] as DTDEntityDeclaration; }
- }
- public void Add (string name, DTDEntityDeclaration decl)
- {
- if (entityDecls [name] != null)
- throw new InvalidOperationException (String.Format (
- "Entity declaration for {0} was already added.",
- name));
- decl.SetRoot (root);
- entityDecls.Add (name, decl);
- }
- public ICollection Keys {
- get { return entityDecls.Keys; }
- }
- public ICollection Values {
- get { return entityDecls.Values; }
- }
- }
- public class DTDNotationDeclarationCollection
- {
- Hashtable notationDecls = new Hashtable ();
- DTDObjectModel root;
- public DTDNotationDeclarationCollection (DTDObjectModel root)
- {
- this.root = root;
- }
- public DTDNotationDeclaration this [string name] {
- get { return notationDecls [name] as DTDNotationDeclaration; }
- }
- public void Add (string name, DTDNotationDeclaration decl)
- {
- if (notationDecls [name] != null)
- throw new InvalidOperationException (String.Format (
- "Notation declaration for {0} was already added.",
- name));
- decl.SetRoot (root);
- notationDecls.Add (name, decl);
- }
- public ICollection Keys {
- get { return notationDecls.Keys; }
- }
- public ICollection Values {
- get { return notationDecls.Values; }
- }
- }
- // This class contains either ElementName or ChildModels.
- public class DTDContentModel : DTDNode
- {
- DTDObjectModel root;
- DTDAutomata compiledAutomata;
- string ownerElementName;
- string elementName;
- DTDContentOrderType orderType = DTDContentOrderType.None;
- DTDContentModelCollection childModels = new DTDContentModelCollection ();
- DTDOccurence occurence = DTDOccurence.One;
- internal DTDContentModel (DTDObjectModel root, string ownerElementName)
- {
- this.root = root;
- this.ownerElementName = ownerElementName;
- }
- public DTDContentModelCollection ChildModels {
- get { return childModels; }
- set { childModels = value; }
- }
- public DTDElementDeclaration ElementDecl {
- get { return root.ElementDecls [ownerElementName]; }
- }
- public string ElementName {
- get { return elementName; }
- set { elementName = value; }
- }
- public DTDOccurence Occurence {
- get { return occurence; }
- set { occurence = value; }
- }
- public DTDContentOrderType OrderType {
- get { return orderType; }
- set { orderType = value; }
- }
- public DTDAutomata GetAutomata ()
- {
- if (compiledAutomata == null)
- Compile ();
- return compiledAutomata;
- }
- public DTDAutomata Compile ()
- {
- compiledAutomata = CompileInternal ();
- return compiledAutomata;
- }
- private DTDAutomata CompileInternal ()
- {
- if (ElementDecl.IsAny)
- return root.Any;
- if (ElementDecl.IsEmpty)
- return root.Empty;
- DTDAutomata basis = GetBasicContentAutomata ();
- switch (Occurence) {
- case DTDOccurence.One:
- return basis;
- case DTDOccurence.Optional:
- return Choice (root.Empty, basis);
- case DTDOccurence.OneOrMore:
- return new DTDOneOrMoreAutomata (root, basis);
- case DTDOccurence.ZeroOrMore:
- return Choice (root.Empty, new DTDOneOrMoreAutomata (root, basis));
- }
- throw new InvalidOperationException ();
- }
- private DTDAutomata GetBasicContentAutomata ()
- {
- if (ElementName != null)
- return new DTDElementAutomata (root, ElementName);
- switch (ChildModels.Count) {
- case 0:
- return root.Empty;
- case 1:
- return ChildModels [0].GetAutomata ();
- }
- DTDAutomata current = null;
- int childCount = ChildModels.Count;
- switch (OrderType) {
- case DTDContentOrderType.Seq:
- current = Sequence (
- ChildModels [childCount - 2].GetAutomata (),
- ChildModels [childCount - 1].GetAutomata ());
- for (int i = childCount - 2; i > 0; i--)
- current = Sequence (
- ChildModels [i - 1].GetAutomata (), current);
- return current;
- case DTDContentOrderType.Or:
- current = Choice (
- ChildModels [childCount - 2].GetAutomata (),
- ChildModels [childCount - 1].GetAutomata ());
- for (int i = childCount - 2; i > 0; i--)
- current = Choice (
- ChildModels [i - 1].GetAutomata (), current);
- return current;
- default:
- throw new InvalidOperationException ("Invalid pattern specification");
- }
- }
- private DTDAutomata Sequence (DTDAutomata l, DTDAutomata r)
- {
- return root.Factory.Sequence (l, r);
- }
- private DTDAutomata Choice (DTDAutomata l, DTDAutomata r)
- {
- return l.MakeChoice (r);
- }
- }
- public class DTDContentModelCollection
- {
- ArrayList contentModel = new ArrayList ();
- public DTDContentModelCollection ()
- {
- }
- public DTDContentModel this [int i] {
- get { return contentModel [i] as DTDContentModel; }
- }
- public int Count {
- get { return contentModel.Count; }
- }
- public void Add (DTDContentModel model)
- {
- contentModel.Add (model);
- }
- }
- public abstract class DTDNode : IXmlLineInfo
- {
- DTDObjectModel root;
- bool isInternalSubset;
- string baseURI;
- int lineNumber;
- int linePosition;
- public virtual string BaseURI {
- get { return baseURI; }
- set { baseURI = value; }
- }
- public bool IsInternalSubset {
- get { return isInternalSubset; }
- set { isInternalSubset = value; }
- }
- public int LineNumber {
- get { return lineNumber; }
- set { lineNumber = value; }
- }
- public int LinePosition {
- get { return linePosition; }
- set { linePosition = value; }
- }
- public bool HasLineInfo ()
- {
- return lineNumber != 0;
- }
- internal void SetRoot (DTDObjectModel root)
- {
- this.root = root;
- if (baseURI == null)
- this.BaseURI = root.BaseURI;
- }
- protected DTDObjectModel Root {
- get { return root; }
- }
- }
- public class DTDElementDeclaration : DTDNode
- {
- DTDObjectModel root;
- DTDContentModel contentModel;
- string name;
- bool isEmpty;
- bool isAny;
- bool isMixedContent;
- internal DTDElementDeclaration (DTDObjectModel root)
- {
- this.root = root;
- }
- public string Name {
- get { return name; }
- set { name = value; }
- }
- public bool IsEmpty {
- get { return isEmpty; }
- set { isEmpty = value; }
- }
- public bool IsAny {
- get { return isAny; }
- set { isAny = value; }
- }
- public bool IsMixedContent {
- get { return isMixedContent; }
- set { isMixedContent = value; }
- }
- public DTDContentModel ContentModel {
- get {
- if (contentModel == null)
- contentModel = new DTDContentModel (root, Name);
- return contentModel;
- }
- }
- public DTDAttListDeclaration Attributes {
- get {
- return Root.AttListDecls [Name];
- }
- }
- }
- public class DTDAttributeDefinition : DTDNode
- {
- string name;
- XmlSchemaDatatype datatype;
- ArrayList enumeratedLiterals = new ArrayList ();
- string unresolvedDefault;
- ArrayList enumeratedNotations = new ArrayList ();
- DTDAttributeOccurenceType occurenceType = DTDAttributeOccurenceType.None;
- string resolvedDefaultValue;
- string resolvedNormalizedDefaultValue;
- internal DTDAttributeDefinition (DTDObjectModel root)
- {
- this.SetRoot (root);
- }
- public string Name {
- get { return name; }
- set { name =value; }
- }
- public XmlSchemaDatatype Datatype {
- get { return datatype; }
- set { datatype = value; }
- }
- public DTDAttributeOccurenceType OccurenceType {
- get { return this.occurenceType; }
- set { this.occurenceType = value; }
- }
- // entity reference inside enumerated values are not allowed,
- // but on the other hand, they are allowed inside default value.
- // Then I decided to use string ArrayList for enumerated values,
- // and unresolved string value for DefaultValue.
- public ArrayList EnumeratedAttributeDeclaration {
- get { return this.enumeratedLiterals; }
- }
- public ArrayList EnumeratedNotations {
- get { return this.enumeratedNotations; }
- }
- public string DefaultValue {
- get {
- if (resolvedDefaultValue == null)
- resolvedDefaultValue = ComputeDefaultValue ();
- return resolvedDefaultValue;
- }
- }
- public string NormalizedDefaultValue {
- get {
- if (resolvedNormalizedDefaultValue == null) {
- object o = Datatype.ParseValue (ComputeDefaultValue (), null, null);
- resolvedNormalizedDefaultValue =
- (o is string []) ?
- String.Join (" ", (string []) o) :
- o.ToString ();
- }
- return resolvedNormalizedDefaultValue;
- }
- }
- public string UnresolvedDefaultValue {
- get { return this.unresolvedDefault; }
- set { this.unresolvedDefault = value; }
- }
- public char QuoteChar {
- get {
- return UnresolvedDefaultValue.Length > 0 ?
- this.UnresolvedDefaultValue [0] :
- '"';
- }
- }
- private string ComputeDefaultValue ()
- {
- if (UnresolvedDefaultValue == null)
- return null;
- StringBuilder sb = new StringBuilder ();
- int pos = 0;
- int next = 0;
- string value = this.UnresolvedDefaultValue;
- while ((next = value.IndexOf ('&', pos)) >= 0) {
- int semicolon = value.IndexOf (';', next);
- if (value [next + 1] == '#') {
- // character reference.
- char c = value [next + 2];
- NumberStyles style = NumberStyles.Integer;
- string spec;
- if (c == 'x' || c == 'X') {
- spec = value.Substring (next + 3, semicolon - next - 3);
- style |= NumberStyles.HexNumber;
- }
- else
- spec = value.Substring (next + 2, semicolon - next - 2);
- sb.Append ((char) int.Parse (spec, style));
- } else {
- sb.Append (value.Substring (pos, next - 1));
- string name = value.Substring (next + 1, semicolon - 2);
- char predefined = XmlChar.GetPredefinedEntity (name);
- if (predefined != 0)
- sb.Append (predefined);
- else
- sb.Append (Root.ResolveEntity (name));
- }
- pos = semicolon + 1;
- }
- sb.Append (value.Substring (pos));
- // strip quote chars
- string ret = sb.ToString (1, sb.Length - 2);
- sb.Length = 0;
- return ret;
- }
- }
- public class DTDAttListDeclaration : DTDNode
- {
- string name;
- Hashtable attributeOrders = new Hashtable ();
- ArrayList attributes = new ArrayList ();
- internal DTDAttListDeclaration (DTDObjectModel root)
- {
- SetRoot (root);
- }
- public string Name {
- get { return name; }
- set { name = value; }
- }
- public DTDAttributeDefinition this [int i] {
- get { return Get (i); }
- }
- public DTDAttributeDefinition this [string name] {
- get { return Get (name); }
- }
- public DTDAttributeDefinition Get (int i)
- {
- return attributes [i] as DTDAttributeDefinition;
- }
- public DTDAttributeDefinition Get (string name)
- {
- object o = attributeOrders [name];
- if (o != null)
- return attributes [(int) o] as DTDAttributeDefinition;
- else
- return null;
- }
- public ICollection Definitions {
- get { return attributes; }
- }
- public void Add (DTDAttributeDefinition def)
- {
- if (attributeOrders [def.Name] != null)
- throw new InvalidOperationException (String.Format (
- "Attribute definition for {0} was already added at element {1}.",
- def.Name, this.Name));
- def.SetRoot (Root);
- attributeOrders.Add (def.Name, attributes.Count);
- attributes.Add (def);
- }
- public int Count {
- get { return attributeOrders.Count; }
- }
- }
- public class DTDEntityBase : DTDNode
- {
- string name;
- string publicId;
- string systemId;
- string literalValue;
- bool isInvalid;
- internal bool IsInvalid {
- get { return isInvalid; }
- set { isInvalid = value; }
- }
- public string Name {
- get { return name; }
- set { name = value; }
- }
- public string PublicId {
- get { return publicId; }
- set { publicId = value; }
- }
- public string SystemId {
- get { return systemId; }
- set { systemId = value; }
- }
- public string LiteralEntityValue {
- get { return literalValue; }
- set { literalValue = value; }
- }
- }
- public class DTDEntityDeclaration : DTDEntityBase
- {
- string entityValue;
- string notationName;
- StringCollection ReferencingEntities = new StringCollection ();
- bool scanned;
- bool recursed;
- bool hasExternalReference;
- internal DTDEntityDeclaration (DTDObjectModel root)
- {
- this.SetRoot (root);
- }
- public string NotationName {
- get { return notationName; }
- set { notationName = value; }
- }
- public bool HasExternalReference {
- get {
- if (!scanned)
- ScanEntityValue (new StringCollection ());
- return hasExternalReference;
- }
- }
- public string EntityValue {
- get {
- if (this.IsInvalid)
- return String.Empty;
- if (PublicId == null && SystemId == null && LiteralEntityValue == null)
- return String.Empty;
- if (entityValue == null) {
- if (NotationName != null)
- entityValue = "";
- else if (SystemId == null || SystemId == String.Empty) {
- // FIXME: Isn't it an error??
- entityValue = LiteralEntityValue;
- if (entityValue == null)
- entityValue = String.Empty;
- } else {
- entityValue = ResolveExternalEntity (Root.Resolver);
- }
- // Check illegal recursion.
- ScanEntityValue (new StringCollection ());
- }
- return entityValue;
- }
- }
- // It returns whether the entity contains references to external entities.
- public void ScanEntityValue (StringCollection refs)
- {
- // To modify this code, beware nesting between this and EntityValue.
- string value = EntityValue;
- if (this.SystemId != null)
- hasExternalReference = true;
- if (recursed)
- throw new XmlException ("Entity recursion was found.");
- recursed = true;
- if (scanned) {
- foreach (string referenced in refs)
- if (this.ReferencingEntities.Contains (referenced))
- throw new XmlException (String.Format (
- "Nested entity was found between {0} and {1}",
- referenced, Name));
- recursed = false;
- return;
- }
- int len = value.Length;
- int start = 0;
- for (int i=0; i<len; i++) {
- switch (value [i]) {
- case '&':
- start = i+1;
- break;
- case ';':
- if (start == 0)
- break;
- string name = value.Substring (start, i - start);
- if (name.Length == 0)
- throw new XmlException (this as IXmlLineInfo, "Entity reference name is missing.");
- if (name [0] == '#')
- break; // character reference
- // FIXME: Should be checked, but how to handle entity for ENTITY attribute?
- // if (!XmlChar.IsName (name))
- // throw new XmlException (this as IXmlLineInfo, "Invalid entity reference name.");
- if (XmlChar.GetPredefinedEntity (name) != 0)
- break; // predefined reference
- this.ReferencingEntities.Add (name);
- DTDEntityDeclaration decl = Root.EntityDecls [name];
- if (decl != null) {
- if (decl.SystemId != null)
- hasExternalReference = true;
- refs.Add (Name);
- decl.ScanEntityValue (refs);
- foreach (string str in decl.ReferencingEntities)
- ReferencingEntities.Add (str);
- refs.Remove (Name);
- value = value.Remove (start - 1, name.Length + 2);
- value = value.Insert (start - 1, decl.EntityValue);
- i -= name.Length + 1; // not +2, because of immediate i++ .
- len = value.Length;
- }
- start = 0;
- break;
- }
- }
- if (start != 0)
- Root.AddError (new XmlSchemaException ("Invalid reference character '&' is specified.",
- this.LineNumber, this.LinePosition, null, this.BaseURI, null));
- scanned = true;
- entityValue = value;
- recursed = false;
- }
- private string ResolveExternalEntity (XmlResolver resolver)
- {
- if (resolver == null)
- return String.Empty;
- string baseUri = this.BaseURI;
- if (baseUri == "")
- baseUri = null;
- Uri uri = resolver.ResolveUri (
- baseUri != null ? new Uri (baseUri) : null, SystemId);
- Stream stream = null;
- try {
- stream = resolver.GetEntity (uri, null, typeof (Stream)) as Stream;
- } catch (Exception ex) { // FIXME: (wishlist) bad catch ;-(
- Root.AddError (new XmlSchemaException ("Cannot resolve external entity " + uri.ToString () + " .",
- this.LineNumber, this.LinePosition, null, this.BaseURI, ex));
- }
- if (stream == null)
- return String.Empty;
- XmlTextReader extEntReader = new XmlTextReader (uri.ToString (), stream, this.Root.NameTable);
- extEntReader.SkipTextDeclaration ();
- TextReader reader = extEntReader.GetRemainder ();
- extEntReader.Close ();
- StringBuilder sb = new StringBuilder ();
- bool checkTextDecl = true;
- while (reader.Peek () != -1) {
- sb.Append ((char) reader.Read ());
- if (checkTextDecl && sb.Length == 6) {
- if (sb.ToString () == "<?xml ") {
- // Skip Text declaration.
- sb.Length = 0;
- StringBuilder textdecl = new StringBuilder ();
- while (reader.Peek () != '>' && reader.Peek () != -1)
- textdecl.Append ((char) reader.Read ());
- if (textdecl.ToString ().IndexOf ("encoding") < 0)
- throw new XmlException ("Text declaration must have encoding specification: " + BaseURI);
- if (textdecl.ToString ().IndexOf ("standalone") >= 0)
- throw new XmlException ("Text declaration cannot have standalone declaration: " + BaseURI);
- }
- checkTextDecl = false;
- }
- }
- return sb.ToString ();
- }
- }
- public class DTDNotationDeclaration : DTDNode
- {
- string name;
- string localName;
- string prefix;
- string publicId;
- string systemId;
- public string Name {
- get { return name; }
- set { name = value; }
- }
- public string PublicId {
- get { return publicId; }
- set { publicId = value; }
- }
- public string SystemId {
- get { return systemId; }
- set { systemId = value; }
- }
- public string LocalName {
- get { return localName; }
- set { localName = value; }
- }
- public string Prefix {
- get { return prefix; }
- set { prefix = value; }
- }
- internal DTDNotationDeclaration (DTDObjectModel root)
- {
- SetRoot (root);
- }
- }
- public class DTDParameterEntityDeclarationCollection
- {
- Hashtable peDecls = new Hashtable ();
- DTDObjectModel root;
- public DTDParameterEntityDeclarationCollection (DTDObjectModel root)
- {
- this.root = root;
- }
- public DTDParameterEntityDeclaration this [string name] {
- get { return peDecls [name] as DTDParameterEntityDeclaration; }
- }
- public void Add (string name, DTDParameterEntityDeclaration decl)
- {
- if (peDecls [name] != null) {
- // this.root.AddError (new XmlSchemaException (String.Format (
- // "Parameter entity declaration for {0} was already added.",
- // name), null));
- return;
- }
- decl.SetRoot (root);
- peDecls.Add (name, decl);
- }
- public ICollection Keys {
- get { return peDecls.Keys; }
- }
- public ICollection Values {
- get { return peDecls.Values; }
- }
- }
- public class DTDParameterEntityDeclaration : DTDEntityBase
- {
- string resolvedValue;
- Exception loadException;
- bool loadFailed;
- public bool LoadFailed {
- get { return loadFailed; }
- set { loadFailed = value; }
- }
- public string Value {
- get {
- if (LiteralEntityValue != null)
- return LiteralEntityValue;
- if (resolvedValue == null)
- throw new InvalidOperationException ();
- return resolvedValue;
- }
- }
- public void Resolve (XmlResolver resolver)
- {
- if (resolver == null) {
- resolvedValue = String.Empty;
- LoadFailed = true;
- return;
- }
- Uri baseUri = null;
- try {
- if (BaseURI != null && BaseURI.Length > 0)
- baseUri = new Uri (BaseURI);
- } catch (UriFormatException) {
- }
- Uri absUri = resolver.ResolveUri (baseUri, SystemId);
- string absPath = absUri.ToString ();
- try {
- Stream s = resolver.GetEntity (absUri, null, typeof (Stream)) as Stream;
- XmlTextReader xtr = new XmlTextReader (s);
- xtr.SkipTextDeclaration ();
- resolvedValue = xtr.GetRemainder ().ReadToEnd ();
- } catch (IOException ex) {
- loadException = ex;
- resolvedValue = String.Empty;
- LoadFailed = true;
- }
- }
- }
- public enum DTDContentOrderType
- {
- None,
- Seq,
- Or
- }
- public enum DTDAttributeOccurenceType
- {
- None,
- Required,
- Optional,
- Fixed
- }
- public enum DTDOccurence
- {
- One,
- Optional,
- ZeroOrMore,
- OneOrMore
- }
- }
|