| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaKeyref.
- /// </summary>
- public class XmlSchemaKeyref : XmlSchemaIdentityConstraint
- {
- private XmlQualifiedName refer;
- private static string xmlname = "keyref";
- public XmlSchemaKeyref()
- {
- refer = XmlQualifiedName.Empty;
- }
- [System.Xml.Serialization.XmlAttribute("refer")]
- public XmlQualifiedName Refer
- {
- get{ return refer; }
- set{ refer = value; }
- }
- /// <remarks>
- /// 1. name must be present
- /// 2. selector and field must be present
- /// 3. refer must be present
- /// </remarks>
- [MonoTODO]
- internal new int Compile(ValidationEventHandler h, XmlSchemaInfo info)
- {
- errorCount += base.Compile(h,info);
- if(refer == null || refer.IsEmpty)
- error(h,"refer must be present");
- else if(!XmlSchemaUtil.CheckQName(refer))
- error(h,"Refer is not a valid XmlQualifiedName");
- return errorCount;
- }
-
- [MonoTODO]
- internal int Validate(ValidationEventHandler h)
- {
- return errorCount;
- }
- internal new void error(ValidationEventHandler handle, string message)
- {
- errorCount++;
- ValidationHandler.RaiseValidationError(handle, this, message);
- }
- //<key
- // id = ID
- // name = NCName
- // refer = QName
- // {any attributes with non-schema namespace . . .}>
- // Content: (annotation?, (selector, field+))
- //</key>
- internal static XmlSchemaKeyref Read(XmlSchemaReader reader, ValidationEventHandler h)
- {
- XmlSchemaKeyref keyref = new XmlSchemaKeyref();
- reader.MoveToElement();
- if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)
- {
- error(h,"Should not happen :1: XmlSchemaKeyref.Read, name="+reader.Name,null);
- reader.Skip();
- return null;
- }
- keyref.LineNumber = reader.LineNumber;
- keyref.LinePosition = reader.LinePosition;
- keyref.SourceUri = reader.BaseURI;
- while(reader.MoveToNextAttribute())
- {
- if(reader.Name == "id")
- {
- keyref.Id = reader.Value;
- }
- else if(reader.Name == "name")
- {
- keyref.Name = reader.Value;
- }
- else if(reader.Name == "refer")
- {
- Exception innerex;
- keyref.refer = XmlSchemaUtil.ReadQNameAttribute(reader,out innerex);
- if(innerex != null)
- error(h, reader.Value + " is not a valid value for refer attribute",innerex);
- }
- else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)
- {
- error(h,reader.Name + " is not a valid attribute for keyref",null);
- }
- else
- {
- XmlSchemaUtil.ReadUnhandledAttribute(reader,keyref);
- }
- }
-
- reader.MoveToElement();
- if(reader.IsEmptyElement)
- return keyref;
- // Content: annotation?, selector, field+
- int level = 1;
- while(reader.ReadNextElement())
- {
- if(reader.NodeType == XmlNodeType.EndElement)
- {
- if(reader.LocalName != xmlname)
- error(h,"Should not happen :2: XmlSchemaKeyref.Read, name="+reader.Name,null);
- break;
- }
- if(level <= 1 && reader.LocalName == "annotation")
- {
- level = 2; //Only one annotation
- XmlSchemaAnnotation annotation = XmlSchemaAnnotation.Read(reader,h);
- if(annotation != null)
- keyref.Annotation = annotation;
- continue;
- }
- if(level <= 2 && reader.LocalName == "selector")
- {
- level = 3;
- XmlSchemaXPath selector = XmlSchemaXPath.Read(reader,h,"selector");
- if(selector != null)
- keyref.Selector = selector;
- continue;
- }
- if(level <= 3 && reader.LocalName == "field")
- {
- level = 3;
- if(keyref.Selector == null)
- error(h,"selector must be defined before field declarations",null);
- XmlSchemaXPath field = XmlSchemaXPath.Read(reader,h,"field");
- if(field != null)
- keyref.Fields.Add(field);
- continue;
- }
- reader.RaiseInvalidElementError();
- }
- return keyref;
- }
- }
- }
|