2005-01-13 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaMaxLengthFacet.cs
index efd129310811d925bd4979169a35f9e35bcd785c..f68134a57521307a2e060ad5164f256bdc861147 100755 (executable)
@@ -1,6 +1,28 @@
 // Author: Dwivedi, Ajay kumar\r
 //            Adwiv@Yahoo.com\r
+
+//
+// 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;\r
+using System.Xml;\r
 \r
 namespace System.Xml.Schema\r
 {\r
@@ -9,8 +31,93 @@ namespace System.Xml.Schema
        /// </summary>\r
        public class XmlSchemaMaxLengthFacet : XmlSchemaNumericFacet\r
        {\r
+               const string xmlname = "maxLength";\r
+\r
                public XmlSchemaMaxLengthFacet()\r
                {\r
                }\r
+\r
+               internal override Facet ThisFacet { \r
+                       get { return Facet.maxLength;}\r
+               }\r
+       \r
+\r
+               //<maxLength\r
+               //  fixed = boolean : false\r
+               //  id = ID\r
+               //  value = nonNegativeInteger\r
+               //  {any attributes with non-schema namespace . . .}>\r
+               //  Content: (annotation?)\r
+               //</maxLength>\r
+               internal static XmlSchemaMaxLengthFacet Read(XmlSchemaReader reader, ValidationEventHandler h)\r
+               {\r
+                       XmlSchemaMaxLengthFacet length = new XmlSchemaMaxLengthFacet();\r
+                       reader.MoveToElement();\r
+\r
+                       if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)\r
+                       {\r
+                               error(h,"Should not happen :1: XmlSchemaMaxLengthFacet.Read, name="+reader.Name,null);\r
+                               reader.Skip();\r
+                               return null;\r
+                       }\r
+\r
+                       length.LineNumber = reader.LineNumber;\r
+                       length.LinePosition = reader.LinePosition;\r
+                       length.SourceUri = reader.BaseURI;\r
+\r
+                       while(reader.MoveToNextAttribute())\r
+                       {\r
+                               if(reader.Name == "id")\r
+                               {\r
+                                       length.Id = reader.Value;\r
+                               }\r
+                               else if(reader.Name == "fixed")\r
+                               {\r
+                                       Exception innerex;\r
+                                       length.IsFixed = XmlSchemaUtil.ReadBoolAttribute(reader,out innerex);\r
+                                       if(innerex != null)\r
+                                               error(h, reader.Value + " is not a valid value for fixed attribute",innerex);\r
+                               }\r
+                               else if(reader.Name == "value")\r
+                               {\r
+                                       length.Value = reader.Value;\r
+                               }\r
+                               else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)\r
+                               {\r
+                                       error(h,reader.Name + " is not a valid attribute for group",null);\r
+                               }\r
+                               else\r
+                               {\r
+                                       XmlSchemaUtil.ReadUnhandledAttribute(reader,length);\r
+                               }\r
+                       }\r
+                       \r
+                       reader.MoveToElement();\r
+                       if(reader.IsEmptyElement)\r
+                               return length;\r
+\r
+                       //  Content: (annotation?)\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: XmlSchemaMaxLengthFacet.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
+                                               length.Annotation = annotation;\r
+                                       continue;\r
+                               }\r
+                               reader.RaiseInvalidElementError();\r
+                       }                       \r
+                       return length;\r
+               }\r
+\r
        }\r
 }\r