Removal of NET_1_1 defines and some NET_2_0; Both defines are true these days in...
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaSimpleContent.cs
old mode 100755 (executable)
new mode 100644 (file)
index 49945c8..b3c1502
-// Author: Dwivedi, Ajay kumar\r
-//            Adwiv@Yahoo.com\r
-using System;\r
-using System.Xml.Serialization;\r
-using System.Xml;\r
-\r
-namespace System.Xml.Schema\r
-{\r
-       /// <summary>\r
-       /// Summary description for XmlSchemaSimpleContent.\r
-       /// </summary>\r
-       public class XmlSchemaSimpleContent : XmlSchemaContentModel\r
-       {\r
-               private XmlSchemaContent content;\r
-               private static string xmlname = "simpleContent";\r
-               public XmlSchemaSimpleContent()\r
-               {\r
-               }\r
-\r
-               [XmlElement("restriction",typeof(XmlSchemaSimpleContentRestriction),Namespace="http://www.w3.org/2001/XMLSchema")]\r
-               [XmlElement("extension",typeof(XmlSchemaSimpleContentExtension),Namespace="http://www.w3.org/2001/XMLSchema")]\r
-               public override XmlSchemaContent Content \r
-               {\r
-                       get{ return  content; } \r
-                       set{ content = value; }\r
-               }\r
-\r
-               ///<remarks>\r
-               /// 1. Content must be present and one of restriction or extention\r
-               ///</remarks>\r
-               [MonoTODO]\r
-               internal int Compile(ValidationEventHandler h, XmlSchemaInfo info)\r
-               {\r
-                       if(Content == null)\r
-                       {\r
-                               error(h, "Content must be present in a simpleContent");\r
-                       }\r
-                       else\r
-                       {\r
-                               if(Content is XmlSchemaSimpleContentRestriction)\r
-                               {\r
-                                       XmlSchemaSimpleContentRestriction xscr = (XmlSchemaSimpleContentRestriction) Content;\r
-                                       errorCount += xscr.Compile(h,info);\r
-                               }\r
-                               else if(Content is XmlSchemaSimpleContentExtension)\r
-                               {\r
-                                       XmlSchemaSimpleContentExtension xsce = (XmlSchemaSimpleContentExtension) Content;\r
-                                       errorCount += xsce.Compile(h,info);\r
-                               }\r
-                               else\r
-                                       error(h,"simpleContent can't have any value other than restriction or extention");\r
-                       }\r
-                       if(this.Id != null && !XmlSchemaUtil.CheckID(Id))\r
-                               error(h, "id must be a valid ID");\r
-                       return errorCount;\r
-               }\r
-               \r
-               [MonoTODO]\r
-               internal int Validate(ValidationEventHandler h)\r
-               {\r
-                       return errorCount;\r
-               }\r
-               //<simpleContent \r
-               //  id = ID \r
-               //  {any attributes with non-schema namespace . . .}>\r
-               //  Content: (annotation?, (restriction | extension))\r
-               //</simpleContent>\r
-               internal static XmlSchemaSimpleContent Read(XmlSchemaReader reader, ValidationEventHandler h)\r
-               {\r
-                       XmlSchemaSimpleContent simple = new XmlSchemaSimpleContent();\r
-                       reader.MoveToElement();\r
-\r
-                       if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)\r
-                       {\r
-                               error(h,"Should not happen :1: XmlSchemaComplexContent.Read, name="+reader.Name,null);\r
-                               reader.SkipToEnd();\r
-                               return null;\r
-                       }\r
-\r
-                       simple.LineNumber = reader.LineNumber;\r
-                       simple.LinePosition = reader.LinePosition;\r
-                       simple.SourceUri = reader.BaseURI;\r
-\r
-                       while(reader.MoveToNextAttribute())\r
-                       {\r
-                               if(reader.Name == "id")\r
-                               {\r
-                                       simple.Id = reader.Value;\r
-                               }\r
-                               else if(reader.NamespaceURI == "" || reader.NamespaceURI == XmlSchema.Namespace)\r
-                               {\r
-                                       error(h,reader.Name + " is not a valid attribute for simpleContent",null);\r
-                               }\r
-                               else\r
-                               {\r
-                                       //TODO: Add to Unhandled attributes\r
-                               }\r
-                       }\r
-                       \r
-                       reader.MoveToElement();\r
-                       if(reader.IsEmptyElement)\r
-                               return simple;\r
-                       //Content: (annotation?, (restriction | extension))\r
-                       int level = 1;\r
-                       while(reader.ReadNextElement())\r
-                       {\r
-                               if(reader.NodeType == XmlNodeType.EndElement)\r
-                               {\r
-                                       if(reader.LocalName != xmlname)\r
-                                               error(h,"Should not happen :2: XmlSchemaSimpleContent.Read, name="+reader.Name,null);\r
-                                       break;\r
-                               }\r
-                               if(level <= 1 && reader.LocalName == "annotation")\r
-                               {\r
-                                       level = 2; //Only one annotation\r
-                                       XmlSchemaAnnotation annotation = XmlSchemaAnnotation.Read(reader,h);\r
-                                       if(annotation != null)\r
-                                               simple.Annotation = annotation;\r
-                                       continue;\r
-                               }\r
-                               if(level <=2)\r
-                               {\r
-                                       if(reader.LocalName == "restriction")\r
-                                       {\r
-                                               level = 3;\r
-                                               XmlSchemaSimpleContentRestriction restriction = XmlSchemaSimpleContentRestriction.Read(reader,h);\r
-                                               if(restriction != null)\r
-                                                       simple.content = restriction;\r
-                                               continue;\r
-                                       }\r
-                                       if(reader.LocalName == "extension")\r
-                                       {\r
-                                               level = 3;\r
-                                               XmlSchemaSimpleContentExtension extension = XmlSchemaSimpleContentExtension.Read(reader,h);\r
-                                               if(extension != null)\r
-                                                       simple.content = extension;\r
-                                               continue;\r
-                                       }\r
-                               }\r
-                               reader.RaiseInvalidElementError();\r
-                       }\r
-                       return simple;\r
-               }\r
-\r
-       }\r
-}\r
+//
+// System.Xml.Schema.XmlSchemaSimpleContent.cs
+//
+// Author:
+//     Dwivedi, Ajay kumar  Adwiv@Yahoo.com
+//     Atsushi Enomoto  ginga@kit.hi-ho.ne.jp
+//
+
+//
+// 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;
+using System.Xml.Serialization;
+using System.Xml;
+
+namespace System.Xml.Schema
+{
+       /// <summary>
+       /// Summary description for XmlSchemaSimpleContent.
+       /// </summary>
+       public class XmlSchemaSimpleContent : XmlSchemaContentModel
+       {
+               private XmlSchemaContent content;
+               const string xmlname = "simpleContent";
+               public XmlSchemaSimpleContent()
+               {
+               }
+
+               [XmlElement("restriction",typeof(XmlSchemaSimpleContentRestriction))]
+               [XmlElement("extension",typeof(XmlSchemaSimpleContentExtension))]
+               public override XmlSchemaContent Content 
+               {
+                       get{ return  content; } 
+                       set{ content = value; }
+               }
+
+               internal override void SetParent (XmlSchemaObject parent)
+               {
+                       base.SetParent (parent);
+                       if (Content != null)
+                               Content.SetParent (this);
+               }
+
+               ///<remarks>
+               /// 1. Content must be present and one of restriction or extention
+               ///</remarks>
+               internal override int Compile(ValidationEventHandler h, XmlSchema schema)
+               {
+                       // If this is already compiled this time, simply skip.
+                       if (CompilationId == schema.CompilationId)
+                               return 0;
+
+                       if(Content == null)
+                       {
+                               error(h, "Content must be present in a simpleContent");
+                       }
+                       else
+                       {
+                               if(Content is XmlSchemaSimpleContentRestriction)
+                               {
+                                       XmlSchemaSimpleContentRestriction xscr = (XmlSchemaSimpleContentRestriction) Content;
+                                       errorCount += xscr.Compile(h, schema);
+                               }
+                               else if(Content is XmlSchemaSimpleContentExtension)
+                               {
+                                       XmlSchemaSimpleContentExtension xsce = (XmlSchemaSimpleContentExtension) Content;
+                                       errorCount += xsce.Compile(h, schema);
+                               }
+                               else
+                                       error(h,"simpleContent can't have any value other than restriction or extention");
+                       }
+                       
+                       XmlSchemaUtil.CompileID(Id,this, schema.IDCollection,h);
+                       this.CompilationId = schema.CompilationId;
+                       return errorCount;
+               }
+               
+               internal override int Validate(ValidationEventHandler h, XmlSchema schema)
+               {
+                       if (IsValidated (schema.ValidationId))
+                               return errorCount;
+
+                       errorCount += this.Content.Validate (h, schema);
+
+                       ValidationId = schema.ValidationId;
+                       return errorCount;
+               }
+               //<simpleContent 
+               //  id = ID 
+               //  {any attributes with non-schema namespace . . .}>
+               //  Content: (annotation?, (restriction | extension))
+               //</simpleContent>
+               internal static XmlSchemaSimpleContent Read(XmlSchemaReader reader, ValidationEventHandler h)
+               {
+                       XmlSchemaSimpleContent simple = new XmlSchemaSimpleContent();
+                       reader.MoveToElement();
+
+                       if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)
+                       {
+                               error(h,"Should not happen :1: XmlSchemaComplexContent.Read, name="+reader.Name,null);
+                               reader.SkipToEnd();
+                               return null;
+                       }
+
+                       simple.LineNumber = reader.LineNumber;
+                       simple.LinePosition = reader.LinePosition;
+                       simple.SourceUri = reader.BaseURI;
+
+                       while(reader.MoveToNextAttribute())
+                       {
+                               if(reader.Name == "id")
+                               {
+                                       simple.Id = reader.Value;
+                               }
+                               else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)
+                               {
+                                       error(h,reader.Name + " is not a valid attribute for simpleContent",null);
+                               }
+                               else
+                               {
+                                       XmlSchemaUtil.ReadUnhandledAttribute(reader,simple);
+                               }
+                       }
+                       
+                       reader.MoveToElement();
+                       if(reader.IsEmptyElement)
+                               return simple;
+                       //Content: (annotation?, (restriction | extension))
+                       int level = 1;
+                       while(reader.ReadNextElement())
+                       {
+                               if(reader.NodeType == XmlNodeType.EndElement)
+                               {
+                                       if(reader.LocalName != xmlname)
+                                               error(h,"Should not happen :2: XmlSchemaSimpleContent.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)
+                                               simple.Annotation = annotation;
+                                       continue;
+                               }
+                               if(level <=2)
+                               {
+                                       if(reader.LocalName == "restriction")
+                                       {
+                                               level = 3;
+                                               XmlSchemaSimpleContentRestriction restriction = XmlSchemaSimpleContentRestriction.Read(reader,h);
+                                               if(restriction != null)
+                                                       simple.content = restriction;
+                                               continue;
+                                       }
+                                       if(reader.LocalName == "extension")
+                                       {
+                                               level = 3;
+                                               XmlSchemaSimpleContentExtension extension = XmlSchemaSimpleContentExtension.Read(reader,h);
+                                               if(extension != null)
+                                                       simple.content = extension;
+                                               continue;
+                                       }
+                               }
+                               reader.RaiseInvalidElementError();
+                       }
+                       return simple;
+               }
+
+       }
+}