| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaUnique.
- /// </summary>
- public class XmlSchemaUnique : XmlSchemaIdentityConstraint
- {
- private static string xmlname = "unique";
- public XmlSchemaUnique()
- {
- }
- /// <remarks>
- /// 1. name must be present
- /// 2. selector and field must be present
- /// </remarks>
- [MonoTODO]
- internal new int Compile(ValidationEventHandler h, XmlSchema schema)
- {
- // If this is already compiled this time, simply skip.
- if (this.IsComplied (schema.CompilationId))
- return 0;
- this.CompilationId = schema.CompilationId;
- return base.Compile(h,schema);
- }
-
- [MonoTODO]
- internal int Validate(ValidationEventHandler h)
- {
- return errorCount;
- }
- internal new void error(ValidationEventHandler handle, string message)
- {
- errorCount++;
- ValidationHandler.RaiseValidationError(handle, this, message);
- }
- //<unique
- // id = ID
- // name = NCName
- // {any attributes with non-schema namespace . . .}>
- // Content: (annotation?, (selector, field+))
- //</unique>
- internal static XmlSchemaUnique Read(XmlSchemaReader reader, ValidationEventHandler h)
- {
- XmlSchemaUnique unique = new XmlSchemaUnique();
- reader.MoveToElement();
- if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)
- {
- error(h,"Should not happen :1: XmlSchemaUnique.Read, name="+reader.Name,null);
- reader.Skip();
- return null;
- }
- unique.LineNumber = reader.LineNumber;
- unique.LinePosition = reader.LinePosition;
- unique.SourceUri = reader.BaseURI;
- while(reader.MoveToNextAttribute())
- {
- if(reader.Name == "id")
- {
- unique.Id = reader.Value;
- }
- else if(reader.Name == "name")
- {
- unique.Name = reader.Value;
- }
- else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)
- {
- error(h,reader.Name + " is not a valid attribute for unique",null);
- }
- else
- {
- XmlSchemaUtil.ReadUnhandledAttribute(reader,unique);
- }
- }
-
- reader.MoveToElement();
- if(reader.IsEmptyElement)
- return unique;
- // 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: XmlSchemaUnion.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)
- unique.Annotation = annotation;
- continue;
- }
- if(level <= 2 && reader.LocalName == "selector")
- {
- level = 3;
- XmlSchemaXPath selector = XmlSchemaXPath.Read(reader,h,"selector");
- if(selector != null)
- unique.Selector = selector;
- continue;
- }
- if(level <= 3 && reader.LocalName == "field")
- {
- level = 3;
- if(unique.Selector == null)
- error(h,"selector must be defined before field declarations",null);
- XmlSchemaXPath field = XmlSchemaXPath.Read(reader,h,"field");
- if(field != null)
- unique.Fields.Add(field);
- continue;
- }
- reader.RaiseInvalidElementError();
- }
- return unique;
- }
- }
- }
|