2004-12-04 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaComplexContentRestriction.cs
1 //\r
2 // System.Xml.Schema.XmlSchemaComplexContentRestriction.cs\r
3 //\r
4 // Author:\r
5 //      Dwivedi, Ajay kumar  Adwiv@Yahoo.com\r
6 //      Atsushi Enomoto  ginga@kit.hi-ho.ne.jp\r
7 //\r
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29 using System;\r
30 using System.Xml;\r
31 using System.Xml.Serialization;\r
32 \r
33 namespace System.Xml.Schema\r
34 {\r
35         /// <summary>\r
36         /// Summary description for XmlSchemaComplexContentRestriction.\r
37         /// </summary>\r
38         public class XmlSchemaComplexContentRestriction : XmlSchemaContent\r
39         {\r
40                 private XmlSchemaAnyAttribute any;\r
41                 private XmlSchemaObjectCollection attributes;\r
42                 private XmlQualifiedName baseTypeName;\r
43                 private XmlSchemaParticle particle;\r
44                 const string xmlname = "restriction";\r
45 \r
46                 public XmlSchemaComplexContentRestriction()\r
47                 {\r
48                         baseTypeName = XmlQualifiedName.Empty;\r
49                         attributes       = new XmlSchemaObjectCollection();\r
50                 }\r
51 \r
52                 [System.Xml.Serialization.XmlAttribute("base")]\r
53                 public XmlQualifiedName BaseTypeName \r
54                 {\r
55                         get{ return  baseTypeName; }\r
56                         set{ baseTypeName = value; }\r
57                 }\r
58 \r
59                 [XmlElement("group",typeof(XmlSchemaGroupRef),Namespace=XmlSchema.Namespace)]\r
60                 [XmlElement("all",typeof(XmlSchemaAll),Namespace=XmlSchema.Namespace)]\r
61                 [XmlElement("choice",typeof(XmlSchemaChoice),Namespace=XmlSchema.Namespace)]\r
62                 [XmlElement("sequence",typeof(XmlSchemaSequence),Namespace=XmlSchema.Namespace)]\r
63                 public XmlSchemaParticle Particle \r
64                 {\r
65                         get{ return  particle; }\r
66                         set{ particle = value; }\r
67                 }\r
68 \r
69                 [XmlElement("attribute",typeof(XmlSchemaAttribute),Namespace=XmlSchema.Namespace)]\r
70                 [XmlElement("attributeGroup",typeof(XmlSchemaAttributeGroupRef),Namespace=XmlSchema.Namespace)]\r
71                 public XmlSchemaObjectCollection Attributes \r
72                 {\r
73                         get{ return attributes; }\r
74                 }\r
75 \r
76                 [XmlElement("anyAttribute",Namespace=XmlSchema.Namespace)]\r
77                 public XmlSchemaAnyAttribute AnyAttribute \r
78                 {\r
79                         get{ return  any; }\r
80                         set{ any = value; }\r
81                 }\r
82 \r
83                 // internal properties\r
84                 internal override bool IsExtension {\r
85                         get { return false; }\r
86                 }\r
87 \r
88                 /// <remarks>\r
89                 /// 1. base must be present\r
90                 /// </remarks>\r
91                 internal override int Compile(ValidationEventHandler h, XmlSchema schema)\r
92                 {\r
93                         // If this is already compiled this time, simply skip.\r
94                         if (this.IsComplied (schema.CompilationId))\r
95                                 return 0;\r
96 \r
97 #if NET_2_0\r
98                         if (Particle != null)\r
99                                 Particle.Parent = this;\r
100                         if (AnyAttribute != null)\r
101                                 AnyAttribute.Parent = this;\r
102                         foreach (XmlSchemaObject obj in Attributes)\r
103                                 obj.Parent = this;\r
104 #endif\r
105 \r
106                         if (this.isRedefinedComponent) {\r
107                                 if (Annotation != null)\r
108                                         Annotation.isRedefinedComponent = true;\r
109                                 if (AnyAttribute != null)\r
110                                         AnyAttribute.isRedefinedComponent = true;\r
111                                 foreach (XmlSchemaObject obj in Attributes)\r
112                                         obj.isRedefinedComponent = true;\r
113                                 if (Particle != null)\r
114                                         Particle.isRedefinedComponent = true;\r
115                         }\r
116 \r
117                         if(BaseTypeName == null || BaseTypeName.IsEmpty)\r
118                         {\r
119                                 error(h, "base must be present, as a QName");\r
120                         }\r
121                         else if(!XmlSchemaUtil.CheckQName(BaseTypeName))\r
122                                 error(h,"BaseTypeName is not a valid XmlQualifiedName");\r
123 \r
124                         if(this.AnyAttribute != null)\r
125                         {\r
126                                 errorCount += AnyAttribute.Compile(h, schema);\r
127                         }\r
128 \r
129                         foreach(XmlSchemaObject obj in Attributes)\r
130                         {\r
131                                 if(obj is XmlSchemaAttribute)\r
132                                 {\r
133                                         XmlSchemaAttribute attr = (XmlSchemaAttribute) obj;\r
134                                         errorCount += attr.Compile(h, schema);\r
135                                 }\r
136                                 else if(obj is XmlSchemaAttributeGroupRef)\r
137                                 {\r
138                                         XmlSchemaAttributeGroupRef atgrp = (XmlSchemaAttributeGroupRef) obj;\r
139                                         errorCount += atgrp.Compile(h, schema);\r
140                                 }\r
141                                 else\r
142                                         error(h,obj.GetType() +" is not valid in this place::ComplexContentRestriction");\r
143                         }\r
144                         \r
145                         if(Particle != null)\r
146                         {\r
147                                 if(Particle is XmlSchemaGroupRef)\r
148                                 {\r
149                                         errorCount += ((XmlSchemaGroupRef)Particle).Compile(h, schema);\r
150                                 }\r
151                                 else if(Particle is XmlSchemaAll)\r
152                                 {\r
153                                         errorCount += ((XmlSchemaAll)Particle).Compile(h, schema);\r
154                                 }\r
155                                 else if(Particle is XmlSchemaChoice)\r
156                                 {\r
157                                         errorCount += ((XmlSchemaChoice)Particle).Compile(h, schema);\r
158                                 }\r
159                                 else if(Particle is XmlSchemaSequence)\r
160                                 {\r
161                                         errorCount += ((XmlSchemaSequence)Particle).Compile(h, schema);\r
162                                 }\r
163                                 else\r
164                                         error (h, "Particle of a restriction is limited only to group, sequence, choice and all.");\r
165                         }\r
166                         \r
167                         XmlSchemaUtil.CompileID(Id,this, schema.IDCollection,h);\r
168 \r
169                         this.CompilationId = schema.CompilationId;\r
170                         return errorCount;\r
171                 }\r
172                 \r
173                 internal override XmlQualifiedName GetBaseTypeName ()\r
174                 {\r
175                         return baseTypeName;\r
176                 }\r
177 \r
178                 internal override XmlSchemaParticle GetParticle ()\r
179                 {\r
180                         return particle;\r
181                 }\r
182 \r
183                 internal override int Validate (ValidationEventHandler h, XmlSchema schema)\r
184                 {\r
185                         return errorCount;\r
186                 }\r
187 \r
188                 //<restriction\r
189                 //  base = QName\r
190                 //  id = ID\r
191                 //  {any attributes with non-schema namespace . . .}>\r
192                 //  Content: (annotation?, ((group | all | choice | sequence)?, ((attribute | attributeGroup)*, anyAttribute?)))\r
193                 //</restriction>\r
194                 internal static XmlSchemaComplexContentRestriction Read(XmlSchemaReader reader, ValidationEventHandler h)\r
195                 {\r
196                         XmlSchemaComplexContentRestriction restriction = new XmlSchemaComplexContentRestriction();\r
197                         reader.MoveToElement();\r
198 \r
199                         if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)\r
200                         {\r
201                                 error(h,"Should not happen :1: XmlSchemaComplexContentRestriction.Read, name="+reader.Name,null);\r
202                                 reader.Skip();\r
203                                 return null;\r
204                         }\r
205 \r
206                         restriction.LineNumber = reader.LineNumber;\r
207                         restriction.LinePosition = reader.LinePosition;\r
208                         restriction.SourceUri = reader.BaseURI;\r
209 \r
210                         while(reader.MoveToNextAttribute())\r
211                         {\r
212                                 if(reader.Name == "base")\r
213                                 {\r
214                                         Exception innerex;\r
215                                         restriction.baseTypeName = XmlSchemaUtil.ReadQNameAttribute(reader,out innerex);\r
216                                         if(innerex != null)\r
217                                                 error(h, reader.Value + " is not a valid value for base attribute",innerex);\r
218                                 }\r
219                                 else if(reader.Name == "id")\r
220                                 {\r
221                                         restriction.Id = reader.Value;\r
222                                 }\r
223                                 else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)\r
224                                 {\r
225                                         error(h,reader.Name + " is not a valid attribute for restriction",null);\r
226                                 }\r
227                                 else\r
228                                 {\r
229                                         XmlSchemaUtil.ReadUnhandledAttribute(reader,restriction);\r
230                                 }\r
231                         }\r
232                         \r
233                         reader.MoveToElement();\r
234                         if(reader.IsEmptyElement)\r
235                                 return restriction;\r
236                         //Content: 1. annotation?, \r
237                         //                      (2.(group | all | choice | sequence)?, (3.(attribute | attributeGroup)*, 4.anyAttribute?)))\r
238                         int level = 1;\r
239                         while(reader.ReadNextElement())\r
240                         {\r
241                                 if(reader.NodeType == XmlNodeType.EndElement)\r
242                                 {\r
243                                         if(reader.LocalName != xmlname)\r
244                                                 error(h,"Should not happen :2: XmlSchemaComplexContentRestriction.Read, name="+reader.Name,null);\r
245                                         break;\r
246                                 }\r
247                                 if(level <= 1 && reader.LocalName == "annotation")\r
248                                 {\r
249                                         level = 2; //Only one annotation\r
250                                         XmlSchemaAnnotation annotation = XmlSchemaAnnotation.Read(reader,h);\r
251                                         if(annotation != null)\r
252                                                 restriction.Annotation = annotation;\r
253                                         continue;\r
254                                 }\r
255                                 if(level <= 2)\r
256                                 {\r
257                                         if(reader.LocalName == "group")\r
258                                         {\r
259                                                 level = 3;\r
260                                                 XmlSchemaGroupRef group = XmlSchemaGroupRef.Read(reader,h);\r
261                                                 if(group != null)\r
262                                                         restriction.particle = group;\r
263                                                 continue;\r
264                                         }\r
265                                         if(reader.LocalName == "all")\r
266                                         {\r
267                                                 level = 3;\r
268                                                 XmlSchemaAll all = XmlSchemaAll.Read(reader,h);\r
269                                                 if(all != null)\r
270                                                         restriction.particle = all;\r
271                                                 continue;\r
272                                         }\r
273                                         if(reader.LocalName == "choice")\r
274                                         {\r
275                                                 level = 3;\r
276                                                 XmlSchemaChoice choice = XmlSchemaChoice.Read(reader,h);\r
277                                                 if(choice != null)\r
278                                                         restriction.particle = choice;\r
279                                                 continue;\r
280                                         }\r
281                                         if(reader.LocalName == "sequence")\r
282                                         {\r
283                                                 level = 3;\r
284                                                 XmlSchemaSequence sequence = XmlSchemaSequence.Read(reader,h);\r
285                                                 if(sequence != null)\r
286                                                         restriction.particle = sequence;\r
287                                                 continue;\r
288                                         }\r
289                                 }\r
290                                 if(level <= 3)\r
291                                 {\r
292                                         if(reader.LocalName == "attribute")\r
293                                         {\r
294                                                 level = 3;\r
295                                                 XmlSchemaAttribute attr = XmlSchemaAttribute.Read(reader,h);\r
296                                                 if(attr != null)\r
297                                                         restriction.Attributes.Add(attr);\r
298                                                 continue;\r
299                                         }\r
300                                         if(reader.LocalName == "attributeGroup")\r
301                                         {\r
302                                                 level = 3;\r
303                                                 XmlSchemaAttributeGroupRef attr = XmlSchemaAttributeGroupRef.Read(reader,h);\r
304                                                 if(attr != null)\r
305                                                         restriction.attributes.Add(attr);\r
306                                                 continue;\r
307                                         }\r
308                                 }\r
309                                 if(level <= 4 && reader.LocalName == "anyAttribute")\r
310                                 {\r
311                                         level = 5;\r
312                                         XmlSchemaAnyAttribute anyattr = XmlSchemaAnyAttribute.Read(reader,h);\r
313                                         if(anyattr != null)\r
314                                                 restriction.AnyAttribute = anyattr;\r
315                                         continue;\r
316                                 }\r
317                                 reader.RaiseInvalidElementError();\r
318                         }\r
319                         return restriction;\r
320                 }\r
321         }\r
322 }\r