Merge pull request #1172 from roji/datarow_null
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlReflectionImporter.cs
1 // 
2 // System.Xml.Serialization.XmlReflectionImporter 
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //   Erik LeBel (eriklebel@yahoo.ca)
7 //   Lluis Sanchez Gual (lluis@ximian.com)
8 //
9 // Copyright (C) Tim Coleman, 2002
10 // (C) 2003 Erik LeBel
11 //
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Collections;
34 using System.Collections.Generic;
35 using System.Globalization;
36 using System.Reflection;
37 using System.Xml.Schema;
38
39 namespace System.Xml.Serialization {
40         public class XmlReflectionImporter {
41
42                 string initialDefaultNamespace;
43                 XmlAttributeOverrides attributeOverrides;
44                 ArrayList includedTypes;
45                 ReflectionHelper helper = new ReflectionHelper();
46                 int arrayChoiceCount = 1;
47                 ArrayList relatedMaps = new ArrayList ();
48                 bool allowPrivateTypes = false;
49
50                 static readonly string errSimple = "Cannot serialize object of type '{0}'. Base " +
51                         "type '{1}' has simpleContent and can be only extended by adding XmlAttribute " +
52                         "elements. Please consider changing XmlText member of the base class to string array";
53
54                 static readonly string errSimple2 = "Cannot serialize object of type '{0}'. " +
55                         "Consider changing type of XmlText member '{1}' from '{2}' to string or string array";
56
57                 #region Constructors
58
59                 public XmlReflectionImporter ()
60                         : this (null, null)
61                 {
62                 }
63
64                 public XmlReflectionImporter (string defaultNamespace)
65                         : this (null, defaultNamespace)
66                 {
67                 }
68
69                 public XmlReflectionImporter (XmlAttributeOverrides attributeOverrides)
70                         : this (attributeOverrides, null)
71                 {
72                 }
73
74                 public XmlReflectionImporter (XmlAttributeOverrides attributeOverrides, string defaultNamespace)
75                 {
76                         if (defaultNamespace == null)
77                                 this.initialDefaultNamespace = String.Empty;
78                         else
79                                 this.initialDefaultNamespace = defaultNamespace;
80
81                         if (attributeOverrides == null)
82                                 this.attributeOverrides = new XmlAttributeOverrides();
83                         else
84                                 this.attributeOverrides = attributeOverrides;
85                 }
86
87 /*              void Reset ()
88                 {
89                         helper = new ReflectionHelper();
90                         arrayChoiceCount = 1;
91                 }
92 */
93                 
94                 internal bool AllowPrivateTypes
95                 {
96                         get { return allowPrivateTypes; }
97                         set { allowPrivateTypes = value; }
98                 }
99
100                 #endregion // Constructors
101
102                 #region Methods
103
104                 public XmlMembersMapping ImportMembersMapping (string elementName,
105                         string ns,
106                         XmlReflectionMember [] members,
107                         bool hasWrapperElement)
108                 {
109                         return ImportMembersMapping (elementName, ns, members, hasWrapperElement, true);
110                 }
111
112 #if NET_2_0
113                 [MonoTODO]
114                 public
115 #endif
116                 XmlMembersMapping ImportMembersMapping (string elementName, 
117                         string ns, 
118                         XmlReflectionMember[] members, 
119                         bool hasWrapperElement, 
120                         bool rpc)
121                 {
122                         return ImportMembersMapping (elementName, ns, members, hasWrapperElement, rpc, true);
123                 }
124
125 #if NET_2_0
126                 [MonoTODO]
127                 public
128 #endif
129                 XmlMembersMapping ImportMembersMapping (string elementName, 
130                         string ns, 
131                         XmlReflectionMember[] members, 
132                         bool hasWrapperElement, 
133                         bool rpc, 
134                         bool openModel)
135                 {
136                         return ImportMembersMapping (elementName, ns, members, hasWrapperElement, rpc, openModel, XmlMappingAccess.Read | XmlMappingAccess.Write);
137                 }
138
139 #if NET_2_0
140                 [MonoTODO] // FIXME: handle writeAccessors, validate, and mapping access
141                 public
142 #endif
143                 XmlMembersMapping ImportMembersMapping (string elementName, 
144                         string ns, 
145                         XmlReflectionMember[] members, 
146                         bool hasWrapperElement, 
147                         bool rpc, 
148                         bool openModel,
149                         XmlMappingAccess access)
150                 {
151 //                      Reset ();       Disabled. See ChangeLog
152
153                         ArrayList mapping = new ArrayList ();
154                         for (int n=0; n<members.Length; n++)
155                         {
156                                 XmlTypeMapMember mapMem = CreateMapMember (null, members[n], ns);
157                                 mapMem.GlobalIndex = n;
158                                 mapMem.CheckOptionalValueType (members);
159                                 mapping.Add (new XmlMemberMapping (members[n].MemberName, ns, mapMem, false));
160                         }
161                         elementName = XmlConvert.EncodeLocalName (elementName);
162                         XmlMembersMapping mps = new XmlMembersMapping (elementName, ns, hasWrapperElement, false, (XmlMemberMapping[])mapping.ToArray (typeof(XmlMemberMapping)));
163                         mps.RelatedMaps = relatedMaps;
164                         mps.Format = SerializationFormat.Literal;
165                         Type[] extraTypes = includedTypes != null ? (Type[])includedTypes.ToArray(typeof(Type)) : null;
166 #if !NET_2_1
167                         mps.Source = new MembersSerializationSource (elementName, hasWrapperElement, members, false, true, ns, extraTypes);
168                         if (allowPrivateTypes) mps.Source.CanBeGenerated = false;
169 #endif
170                         return mps;
171                 }
172
173                 public XmlTypeMapping ImportTypeMapping (Type type)
174                 {
175                         return ImportTypeMapping (type, null, null);
176                 }
177
178                 public XmlTypeMapping ImportTypeMapping (Type type, string defaultNamespace)
179                 {
180                         return ImportTypeMapping (type, null, defaultNamespace);
181                 }
182
183                 public XmlTypeMapping ImportTypeMapping (Type type, XmlRootAttribute root)
184                 {
185                         return ImportTypeMapping (type, root, null);
186                 }
187
188                 public XmlTypeMapping ImportTypeMapping (Type type, XmlRootAttribute root, string defaultNamespace)
189                 {
190                         if (type == null)
191                                 throw new ArgumentNullException ("type");
192
193                         if (type == typeof (void))
194                                 throw new NotSupportedException ("The type " + type.FullName + " may not be serialized.");
195
196                         return ImportTypeMapping (TypeTranslator.GetTypeData (type), root, 
197                                 defaultNamespace);
198                 }
199
200                 internal XmlTypeMapping ImportTypeMapping (TypeData typeData, string defaultNamespace)
201                 {
202                         return ImportTypeMapping (typeData, (XmlRootAttribute) null, 
203                                 defaultNamespace);
204                 }
205
206                 private XmlTypeMapping ImportTypeMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace)
207                 {
208                         if (typeData == null)
209                                 throw new ArgumentNullException ("typeData");
210
211                         if (typeData.Type == null)
212                                 throw new ArgumentException ("Specified TypeData instance does not have Type set.");
213
214                         if (defaultNamespace == null) defaultNamespace = initialDefaultNamespace;
215                         if (defaultNamespace == null) defaultNamespace = string.Empty;
216
217                         try {
218                                 XmlTypeMapping map;
219
220                                 switch (typeData.SchemaType) {
221                                         case SchemaTypes.Class: map = ImportClassMapping (typeData, root, defaultNamespace); break;
222                                         case SchemaTypes.Array: map = ImportListMapping (typeData, root, defaultNamespace, null, 0); break;
223                                         case SchemaTypes.XmlNode: map = ImportXmlNodeMapping (typeData, root, defaultNamespace); break;
224                                         case SchemaTypes.Primitive: map = ImportPrimitiveMapping (typeData, root, defaultNamespace); break;
225                                         case SchemaTypes.Enum: map = ImportEnumMapping (typeData, root, defaultNamespace); break;
226                                         case SchemaTypes.XmlSerializable: map = ImportXmlSerializableMapping (typeData, root, defaultNamespace); break;
227                                         default: throw new NotSupportedException ("Type " + typeData.Type.FullName + " not supported for XML stialization");
228                                 }
229
230 #if NET_2_0
231                                 // bug #372780
232                                 map.SetKey (typeData.Type.ToString ());
233 #endif
234                                 map.RelatedMaps = relatedMaps;
235                                 map.Format = SerializationFormat.Literal;
236                                 Type[] extraTypes = includedTypes != null ? (Type[]) includedTypes.ToArray (typeof (Type)) : null;
237 #if !NET_2_1
238                                 map.Source = new XmlTypeSerializationSource (typeData.Type, root, attributeOverrides, defaultNamespace, extraTypes);
239                                 if (allowPrivateTypes) map.Source.CanBeGenerated = false;
240 #endif
241                                 return map;
242                         } catch (InvalidOperationException ex) {
243                                 throw new InvalidOperationException (string.Format (CultureInfo.InvariantCulture,
244                                         "There was an error reflecting type '{0}'.", typeData.Type.FullName), ex);
245                         }
246                 }
247
248                 XmlTypeMapping CreateTypeMapping (TypeData typeData, XmlRootAttribute root, string defaultXmlType, string defaultNamespace)
249                 {
250                         bool hasTypeNamespace = !string.IsNullOrEmpty (defaultNamespace);
251                         string rootNamespace = null;
252                         string typeNamespace = null;
253                         string elementName;
254                         bool includeInSchema = true;
255                         XmlAttributes atts = null;
256                         bool nullable = CanBeNull (typeData);
257
258                         if (defaultXmlType == null) defaultXmlType = typeData.XmlType;
259
260                         if (!typeData.IsListType)
261                         {
262                                 if (attributeOverrides != null) 
263                                         atts = attributeOverrides[typeData.Type];
264
265                                 if (atts != null && typeData.SchemaType == SchemaTypes.Primitive)
266                                         throw new InvalidOperationException ("XmlRoot and XmlType attributes may not be specified for the type " + typeData.FullTypeName);
267                         }
268
269                         if (atts == null) 
270                                 atts = new XmlAttributes (typeData.Type);
271
272                         if (atts.XmlRoot != null && root == null)
273                                 root = atts.XmlRoot;
274
275                         if (atts.XmlType != null)
276                         {
277                                 if (atts.XmlType.Namespace != null) {
278                                         typeNamespace = atts.XmlType.Namespace;
279                                         hasTypeNamespace = true;
280                                 }
281
282                                 if (atts.XmlType.TypeName != null && atts.XmlType.TypeName != string.Empty)
283                                         defaultXmlType = XmlConvert.EncodeLocalName (atts.XmlType.TypeName);
284                                         
285                                 includeInSchema = atts.XmlType.IncludeInSchema;
286                         }
287
288                         elementName = defaultXmlType;
289
290                         if (root != null)
291                         {
292                                 if (root.ElementName.Length != 0)
293                                         elementName = XmlConvert.EncodeLocalName(root.ElementName);
294                                 if (root.Namespace != null) {
295                                         rootNamespace = root.Namespace;
296                                         hasTypeNamespace = true;
297                                 }
298                                 nullable = root.IsNullable;
299                         }
300
301                         rootNamespace = rootNamespace ?? defaultNamespace ?? string.Empty;
302                         typeNamespace = typeNamespace ?? rootNamespace;
303                         
304                         XmlTypeMapping map;
305                         switch (typeData.SchemaType) {
306                                 case SchemaTypes.XmlSerializable:
307                                         map = new XmlSerializableMapping (root, elementName, rootNamespace, typeData, defaultXmlType, typeNamespace);
308                                         break;
309                                 case SchemaTypes.Primitive:
310                                         if (!typeData.IsXsdType)
311                                                 map = new XmlTypeMapping (elementName, rootNamespace, 
312                                                         typeData, defaultXmlType, XmlSerializer.WsdlTypesNamespace);
313                                         else
314                                                 map = new XmlTypeMapping (elementName, rootNamespace, 
315                                                         typeData, defaultXmlType, typeNamespace);
316                                         break;
317                                 default:
318                                         map = new XmlTypeMapping (elementName, rootNamespace, typeData, defaultXmlType, hasTypeNamespace ? typeNamespace : null);
319                                         break;
320                         }
321
322                         map.IncludeInSchema = includeInSchema;
323                         map.IsNullable = nullable;
324                         relatedMaps.Add (map);
325                         
326                         return map;
327                 }
328
329                 XmlTypeMapping ImportClassMapping (Type type, XmlRootAttribute root, string defaultNamespace, bool isBaseType = false)
330                 {
331                         TypeData typeData = TypeTranslator.GetTypeData (type);
332                         return ImportClassMapping (typeData, root, defaultNamespace, isBaseType);
333                 }
334
335                 XmlTypeMapping ImportClassMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace, bool isBaseType = false)
336                 {
337                         Type type = typeData.Type;
338
339                         if (!allowPrivateTypes && !isBaseType)
340                                 ReflectionHelper.CheckSerializableType (type, false);
341
342                         XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, root, defaultNamespace));
343                         if (map != null) return map;
344                         
345                         map = CreateTypeMapping (typeData, root, null, defaultNamespace);
346                         helper.RegisterClrType (map, type, map.XmlTypeNamespace);
347                         helper.RegisterSchemaType (map, map.XmlType, map.XmlTypeNamespace);
348
349                         // Import members
350
351                         ClassMap classMap = new ClassMap ();
352                         map.ObjectMap = classMap;
353
354                         var members = GetReflectionMembers (type);
355                         bool? isOrderExplicit = null;
356                         foreach (XmlReflectionMember rmember in members)
357                         {
358                                 int? order = rmember.XmlAttributes.Order;
359                                 if (isOrderExplicit == null)
360                                 {
361                                         if (order != null)
362                                                 isOrderExplicit = (int) order >= 0;
363                                 }
364                                 else if (order != null && isOrderExplicit != ((int) order >= 0))
365                                         throw new InvalidOperationException ("Inconsistent XML sequence was detected. If there are XmlElement/XmlArray/XmlAnyElement attributes with explicit Order, then every other member must have an explicit order too.");
366                         }
367                         if (isOrderExplicit == true)
368                                 members.Sort ((m1, m2) => (int) m1.XmlAttributes.SortableOrder - (int) m2.XmlAttributes.SortableOrder);
369
370                         foreach (XmlReflectionMember rmember in members)
371                         {
372                                 string ns = map.XmlTypeNamespace;
373                                 if (rmember.XmlAttributes.XmlIgnore) continue;
374                                 if (rmember.DeclaringType != null && rmember.DeclaringType != type) {
375                                         XmlTypeMapping bmap = ImportClassMapping (rmember.DeclaringType, root, defaultNamespace, true);
376                                         if (bmap.HasXmlTypeNamespace)
377                                                 ns = bmap.XmlTypeNamespace;
378                                 }
379
380                                 try {
381                                         XmlTypeMapMember mem = CreateMapMember (type, rmember, ns);
382                                         mem.CheckOptionalValueType (type);
383                                         classMap.AddMember (mem);
384                                 } catch (Exception ex) {
385                                         throw new InvalidOperationException (string.Format (
386                                                 CultureInfo.InvariantCulture, "There was an error" +
387                                                 " reflecting field '{0}'.", rmember.MemberName), ex);
388                                 }
389                         }
390
391                         // Import extra classes
392
393                         if (type == typeof (object) && includedTypes != null)
394                         {
395                                 foreach (Type intype in includedTypes)
396                                         map.DerivedTypes.Add (ImportTypeMapping (intype, defaultNamespace));
397                         }
398
399                         // Register inheritance relations
400
401                         if (type.BaseType != null)
402                         {
403                                 XmlTypeMapping bmap = ImportClassMapping (type.BaseType, root, defaultNamespace, true);
404                                 ClassMap cbmap = bmap.ObjectMap as ClassMap;
405                                 
406                                 if (type.BaseType != typeof (object)) {
407                                         map.BaseMap = bmap;
408                                         if (!cbmap.HasSimpleContent)
409                                                 classMap.SetCanBeSimpleType (false);
410                                 }
411                                 
412                                 // At this point, derived classes of this map must be already registered
413                                 
414                                 RegisterDerivedMap (bmap, map);
415                                 
416                                 if (cbmap.HasSimpleContent && classMap.ElementMembers != null && classMap.ElementMembers.Count != 1)
417                                         throw new InvalidOperationException (String.Format (errSimple, map.TypeData.TypeName, map.BaseMap.TypeData.TypeName));
418                         }
419                         
420                         ImportIncludedTypes (type, defaultNamespace);
421                         
422                         if (classMap.XmlTextCollector != null && !classMap.HasSimpleContent)
423                         {
424                                 XmlTypeMapMember mem = classMap.XmlTextCollector;
425                                 if (mem.TypeData.Type != typeof(string) && 
426                                    mem.TypeData.Type != typeof(string[]) && 
427                                    mem.TypeData.Type != typeof(XmlNode[]) && 
428                                    mem.TypeData.Type != typeof(object[]))
429                                    
430                                         throw new InvalidOperationException (String.Format (errSimple2, map.TypeData.TypeName, mem.Name, mem.TypeData.TypeName));
431                         }
432                         
433                         return map;
434                 }
435                 
436                 void RegisterDerivedMap (XmlTypeMapping map, XmlTypeMapping derivedMap)
437                 {
438                         map.DerivedTypes.Add (derivedMap);
439                         map.DerivedTypes.AddRange (derivedMap.DerivedTypes);
440                         
441                         if (map.BaseMap != null)
442                                 RegisterDerivedMap (map.BaseMap, derivedMap);
443                         else {
444                                 XmlTypeMapping obmap = ImportTypeMapping (typeof(object));
445                                 if (obmap != map)
446                                         obmap.DerivedTypes.Add (derivedMap);
447                         }
448                 }
449
450                 string GetTypeNamespace (TypeData typeData, XmlRootAttribute root, string defaultNamespace)
451                 {
452                         string typeNamespace = null;
453                         
454                         XmlAttributes atts = null;
455                         if (!typeData.IsListType)
456                         {
457                                 if (attributeOverrides != null)
458                                         atts = attributeOverrides[typeData.Type];
459                         }
460
461                         if (atts == null)
462                                 atts = new XmlAttributes (typeData.Type);
463
464                         if (atts.XmlType != null)
465                         {
466                                 if (atts.XmlType.Namespace != null && atts.XmlType.Namespace.Length != 0 && typeData.SchemaType != SchemaTypes.Enum)
467                                         typeNamespace = atts.XmlType.Namespace;
468                         }
469
470                         if (typeNamespace != null && typeNamespace.Length != 0) return typeNamespace;
471                         
472                         if (atts.XmlRoot != null && root == null)
473                                 root = atts.XmlRoot;
474
475                         if (root != null)
476                         {
477                                 if (root.Namespace != null && root.Namespace.Length != 0)
478                                         return root.Namespace;
479                         }
480
481                         if (defaultNamespace == null) return "";
482                         else return defaultNamespace;
483                 }
484
485                 XmlTypeMapping ImportListMapping (Type type, XmlRootAttribute root, string defaultNamespace, XmlAttributes atts, int nestingLevel)
486                 {
487                         TypeData typeData = TypeTranslator.GetTypeData (type);
488                         return ImportListMapping (typeData, root, defaultNamespace, atts, nestingLevel);
489                 }
490
491                 XmlTypeMapping ImportListMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace, XmlAttributes atts, int nestingLevel)
492                 {
493                         Type type = typeData.Type;
494                         ListMap obmap = new ListMap ();
495
496                         if (!allowPrivateTypes)
497                                 ReflectionHelper.CheckSerializableType (type, true);
498                         
499                         if (atts == null) atts = new XmlAttributes();
500                         Type itemType = typeData.ListItemType;
501
502                         // warning: byte[][] should not be considered multiarray
503                         bool isMultiArray = (type.IsArray && (TypeTranslator.GetTypeData(itemType).SchemaType == SchemaTypes.Array) && itemType.IsArray);
504
505                         XmlTypeMapElementInfoList list = new XmlTypeMapElementInfoList();
506
507                         foreach (XmlArrayItemAttribute att in atts.XmlArrayItems)
508                         {
509                                 if (att.Namespace != null && att.Form == XmlSchemaForm.Unqualified)
510                                         throw new InvalidOperationException ("XmlArrayItemAttribute.Form must not be Unqualified when it has an explicit Namespace value.");
511                                 if (att.NestingLevel != nestingLevel) continue;
512                                 Type elemType = (att.Type != null) ? att.Type : itemType;
513                                 XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (null, TypeTranslator.GetTypeData(elemType, att.DataType));
514                                 elem.Namespace = att.Namespace != null ? att.Namespace : defaultNamespace;
515                                 if (elem.Namespace == null) elem.Namespace = "";
516                                 elem.Form = att.Form;
517                                 if (att.Form == XmlSchemaForm.Unqualified)
518                                         elem.Namespace = string.Empty;
519                                 elem.IsNullable = att.IsNullable && CanBeNull (elem.TypeData);
520                                 elem.NestingLevel = att.NestingLevel;
521
522                                 if (isMultiArray) {
523                                         elem.MappedType = ImportListMapping (elemType, null, elem.Namespace, atts, nestingLevel + 1);
524                                 } else if (elem.TypeData.IsComplexType) {
525                                         elem.MappedType = ImportTypeMapping (elemType, null, elem.Namespace);
526                                 }
527
528                                 if (att.ElementName.Length != 0) {
529                                         elem.ElementName = XmlConvert.EncodeLocalName (att.ElementName);
530                                 } else if (elem.MappedType != null) {
531                                         elem.ElementName = elem.MappedType.ElementName;
532                                 } else {
533                                         elem.ElementName = TypeTranslator.GetTypeData (elemType).XmlType;
534                                 }
535
536                                 list.Add (elem);
537                         }
538
539                         if (list.Count == 0)
540                         {
541                                 XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (null, TypeTranslator.GetTypeData (itemType));
542                                 if (isMultiArray)
543                                         elem.MappedType = ImportListMapping (itemType, null, defaultNamespace, atts, nestingLevel + 1);
544                                 else if (elem.TypeData.IsComplexType)
545                                         elem.MappedType = ImportTypeMapping (itemType, null, defaultNamespace);
546
547                                 if (elem.MappedType != null) {
548                                         elem.ElementName = elem.MappedType.XmlType;
549                                 } else {
550                                         elem.ElementName = TypeTranslator.GetTypeData (itemType).XmlType;
551                                 }
552
553                                 elem.Namespace = (defaultNamespace != null) ? defaultNamespace : "";
554                                 elem.IsNullable = CanBeNull (elem.TypeData);
555                                 list.Add (elem);
556                         }
557
558                         obmap.ItemInfo = list;
559
560                         // If there can be different element names (types) in the array, then its name cannot
561                         // be "ArrayOfXXX" it must be something like ArrayOfChoiceNNN
562
563                         string baseName;
564                         if (list.Count > 1) {
565                                 baseName = "ArrayOfChoice" + (arrayChoiceCount++);
566                         } else {
567                                 XmlTypeMapElementInfo elem = ((XmlTypeMapElementInfo) list[0]);
568                                 if (elem.MappedType != null) {
569                                         baseName = TypeTranslator.GetArrayName (elem.MappedType.XmlType);
570                                 } else {
571                                         baseName = TypeTranslator.GetArrayName (elem.ElementName);
572                                 }
573                         }
574
575                         // Avoid name colisions
576
577                         int nameCount = 1;
578                         string name = baseName;
579
580                         do {
581                                 XmlTypeMapping foundMap = helper.GetRegisteredSchemaType (name, defaultNamespace);
582                                 if (foundMap == null) nameCount = -1;
583                                 else if (obmap.Equals (foundMap.ObjectMap) && typeData.Type == foundMap.TypeData.Type) return foundMap;
584                                 else name = baseName + (nameCount++);
585                         }
586                         while (nameCount != -1);
587
588                         XmlTypeMapping map = CreateTypeMapping (typeData, root, name, defaultNamespace);
589                         map.ObjectMap = obmap;
590                         
591                         // Register any of the including types as a derived class of object
592                         XmlIncludeAttribute[] includes = (XmlIncludeAttribute[])type.GetCustomAttributes (typeof (XmlIncludeAttribute), false);
593                         
594                         XmlTypeMapping objectMapping = ImportTypeMapping (typeof(object));
595                         for (int i = 0; i < includes.Length; i++)
596                         {
597                                 Type includedType = includes[i].Type;
598                                 objectMapping.DerivedTypes.Add(ImportTypeMapping (includedType, null, defaultNamespace));
599                         }
600                         
601                         // Register this map as a derived class of object
602
603                         helper.RegisterSchemaType (map, name, defaultNamespace);
604                         ImportTypeMapping (typeof(object)).DerivedTypes.Add (map);
605
606                         return map;
607                 }
608
609                 XmlTypeMapping ImportXmlNodeMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace)
610                 {
611                         Type type = typeData.Type;
612                         XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, root, defaultNamespace));
613                         if (map != null) return map;
614
615                         map = CreateTypeMapping (typeData, root, null, defaultNamespace);
616                         helper.RegisterClrType (map, type, map.XmlTypeNamespace);
617                         
618                         if (type.BaseType != null)
619                         {
620                                 XmlTypeMapping bmap = ImportTypeMapping (type.BaseType, root, defaultNamespace);
621                                 if (type.BaseType != typeof (object))
622                                         map.BaseMap = bmap;
623                                 
624                                 RegisterDerivedMap (bmap, map);
625                         }
626
627                         return map;
628                 }
629
630                 XmlTypeMapping ImportPrimitiveMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace)
631                 {
632                         Type type = typeData.Type;
633                         XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, root, defaultNamespace));
634                         if (map != null) return map;
635                         map = CreateTypeMapping (typeData, root, null, defaultNamespace);
636                         helper.RegisterClrType (map, type, map.XmlTypeNamespace);
637                         return map;
638                 }
639
640                 XmlTypeMapping ImportEnumMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace)
641                 {
642                         Type type = typeData.Type;
643                         XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, root, defaultNamespace));
644                         if (map != null) return map;
645                         
646                         if (!allowPrivateTypes)
647                                 ReflectionHelper.CheckSerializableType (type, false);
648                                 
649                         map = CreateTypeMapping (typeData, root, null, defaultNamespace);
650                         map.IsNullable = false;
651                         helper.RegisterClrType (map, type, map.XmlTypeNamespace);
652
653                         ArrayList members = new ArrayList();
654                         string [] names = Enum.GetNames (type);
655                         foreach (string name in names) {
656                                 FieldInfo field = type.GetField (name);
657                                 string xmlName = null;
658                                 if (field.IsDefined(typeof(XmlIgnoreAttribute), false))
659                                         continue;
660                                 object[] atts = field.GetCustomAttributes (typeof(XmlEnumAttribute), false);
661                                 if (atts.Length > 0) xmlName = ((XmlEnumAttribute)atts[0]).Name;
662                                 if (xmlName == null) xmlName = name;
663                                 long value = ((IConvertible) field.GetValue (null)).ToInt64 (CultureInfo.InvariantCulture);
664                                 members.Add (new EnumMap.EnumMapMember (xmlName, name, value));
665                         }
666
667                         bool isFlags = type.IsDefined (typeof (FlagsAttribute), false);
668                         map.ObjectMap = new EnumMap ((EnumMap.EnumMapMember[])members.ToArray (typeof(EnumMap.EnumMapMember)), isFlags);
669                         ImportTypeMapping (typeof(object)).DerivedTypes.Add (map);
670                         return map;
671                 }
672
673                 XmlTypeMapping ImportXmlSerializableMapping (TypeData typeData, XmlRootAttribute root, string defaultNamespace)
674                 {
675                         Type type = typeData.Type;
676                         XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, root, defaultNamespace));
677                         if (map != null) return map;
678                         
679                         if (!allowPrivateTypes)
680                                 ReflectionHelper.CheckSerializableType (type, false);
681                                 
682                         map = CreateTypeMapping (typeData, root, null, defaultNamespace);
683                         helper.RegisterClrType (map, type, map.XmlTypeNamespace);
684                         return map;
685                 }
686
687                 void ImportIncludedTypes (Type type, string defaultNamespace)
688                 {
689                         XmlIncludeAttribute[] includes = (XmlIncludeAttribute[])type.GetCustomAttributes (typeof (XmlIncludeAttribute), false);
690                         for (int n=0; n<includes.Length; n++)
691                         {
692                                 Type includedType = includes[n].Type;
693                                 ImportTypeMapping (includedType, null, defaultNamespace);
694                         }
695                 }
696
697                 List<XmlReflectionMember> GetReflectionMembers (Type type)
698                 {
699                         // First we want to find the inheritance hierarchy in reverse order.
700                         Type currentType = type;
701                         ArrayList typeList = new ArrayList();
702                         typeList.Add(currentType);
703                         while (currentType != typeof(object))
704                         {
705                                 currentType = currentType.BaseType; // Read the base type.
706                                 typeList.Insert(0, currentType); // Insert at 0 to reverse the order.
707                         }
708
709                         // Read all Fields via reflection.
710                         ArrayList fieldList = new ArrayList();
711                         FieldInfo[] tfields = type.GetFields (BindingFlags.Instance | BindingFlags.Public);
712 #if TARGET_JVM
713                         // This statement ensures fields are ordered starting from the base type.
714                         for (int ti=0; ti<typeList.Count; ti++) {
715                                 for (int i=0; i<tfields.Length; i++) {
716                                         FieldInfo field = tfields[i];
717                                         if (field.DeclaringType == typeList[ti])
718                                                 fieldList.Add (field);
719                                 }
720                         }
721 #else
722                         currentType = null;
723                         int currentIndex = 0;
724                         foreach (FieldInfo field in tfields)
725                         {
726                                 // This statement ensures fields are ordered starting from the base type.
727                                 if (currentType != field.DeclaringType)
728                                 {
729                                         currentType = field.DeclaringType;
730                                         currentIndex=0;
731                                 }
732                                 fieldList.Insert(currentIndex++, field);
733                         }
734 #endif
735                         // Read all Properties via reflection.
736                         ArrayList propList = new ArrayList();
737                         PropertyInfo[] tprops = type.GetProperties (BindingFlags.Instance | BindingFlags.Public);
738 #if TARGET_JVM
739                         // This statement ensures properties are ordered starting from the base type.
740                         for (int ti=0; ti<typeList.Count; ti++) {
741                                 for (int i=0; i<tprops.Length; i++) {
742                                         PropertyInfo prop = tprops[i];
743                                         if (!prop.CanRead) continue;
744                                         if (prop.GetIndexParameters().Length > 0) continue;
745                                         if (prop.DeclaringType == typeList[ti])
746                                                 propList.Add (prop);
747                                 }
748                         }
749 #else
750                         currentType = null;
751                         currentIndex = 0;
752                         foreach (PropertyInfo prop in tprops)
753                         {
754                                 // This statement ensures properties are ordered starting from the base type.
755                                 if (currentType != prop.DeclaringType)
756                                 {
757                                         currentType = prop.DeclaringType;
758                                         currentIndex = 0;
759                                 }
760                                 if (!prop.CanRead) continue;
761                                 if (prop.GetIndexParameters().Length > 0) continue;
762                                 propList.Insert(currentIndex++, prop);
763                         }
764 #endif
765                         var members = new List<XmlReflectionMember>();
766                         int fieldIndex=0;
767                         int propIndex=0;
768                         // We now step through the type hierarchy from the base (object) through
769                         // to the supplied class, as each step outputting all Fields, and then
770                         // all Properties.  This is the exact same ordering as .NET 1.0/1.1.
771                         foreach (Type t in typeList)
772                         {
773                                 // Add any fields matching the current DeclaringType.
774                                 while (fieldIndex < fieldList.Count)
775                                 {
776                                         FieldInfo field = (FieldInfo)fieldList[fieldIndex];
777                                         if (field.DeclaringType==t)
778                                         {
779                                                 fieldIndex++;
780                                                 XmlAttributes atts = attributeOverrides[type, field.Name];
781                                                 if (atts == null) atts = new XmlAttributes (field);
782                                                 if (atts.XmlIgnore) continue;
783                                                 XmlReflectionMember member = new XmlReflectionMember(field.Name, field.FieldType, atts);
784                                                 member.DeclaringType = field.DeclaringType;
785                                                 members.Add(member);
786                                         }
787                                         else break;
788                                 }
789
790                                 // Add any properties matching the current DeclaringType.
791                                 while (propIndex < propList.Count)
792                                 {
793                                         PropertyInfo prop = (PropertyInfo)propList[propIndex];
794                                         if (prop.DeclaringType==t)
795                                         {
796                                                 propIndex++;
797                                                 XmlAttributes atts = attributeOverrides[type, prop.Name];
798                                                 if (atts == null) atts = new XmlAttributes (prop);
799                                                 if (atts.XmlIgnore) continue;
800                                                 if (!prop.CanWrite) {
801                                                         if (prop.PropertyType.IsInterface && typeof (IEnumerable).IsAssignableFrom (prop.PropertyType)) continue;
802                                                         if (prop.PropertyType.IsGenericType && TypeData.GetGenericListItemType (prop.PropertyType) == null) continue; // check this before calling GetTypeData() which raises error for missing Add(). See bug #704813.
803                                                         if (TypeTranslator.GetTypeData (prop.PropertyType).SchemaType != SchemaTypes.Array || prop.PropertyType.IsArray) continue;
804                                                 }
805                                                 XmlReflectionMember member = new XmlReflectionMember(prop.Name, prop.PropertyType, atts);
806                                                 member.DeclaringType = prop.DeclaringType;
807                                                 members.Add(member);
808                                         }
809                                         else break;
810                                 }
811                         }
812                         
813                         return members;
814                 }
815                 
816                 private XmlTypeMapMember CreateMapMember (Type declaringType, XmlReflectionMember rmember, string defaultNamespace)
817                 {
818                         XmlTypeMapMember mapMember;
819                         XmlAttributes atts = rmember.XmlAttributes;
820                         TypeData typeData = TypeTranslator.GetTypeData (rmember.MemberType);
821
822                         if (atts.XmlArray != null) {
823                                 if (atts.XmlArray.Namespace != null && atts.XmlArray.Form == XmlSchemaForm.Unqualified)
824                                         throw new InvalidOperationException ("XmlArrayAttribute.Form must not be Unqualified when it has an explicit Namespace value.");
825                                 if (typeData.SchemaType != SchemaTypes.Array &&
826                                     !(typeData.SchemaType == SchemaTypes.Primitive && typeData.Type == typeof (byte [])))
827                                         throw new InvalidOperationException ("XmlArrayAttribute can be applied to members of array or collection type.");
828                         }
829
830                         if (atts.XmlAnyAttribute != null)
831                         {
832                                 if ( (rmember.MemberType.FullName == "System.Xml.XmlAttribute[]") ||
833                                          (rmember.MemberType.FullName == "System.Xml.XmlNode[]") )
834                                 {
835                                         mapMember = new XmlTypeMapMemberAnyAttribute();
836                                 }
837                                 else
838                                         throw new InvalidOperationException ("XmlAnyAttributeAttribute can only be applied to members of type XmlAttribute[] or XmlNode[]");
839                         }
840                         else
841                         if (atts.XmlAnyElements != null && atts.XmlAnyElements.Count > 0)
842                         {
843                                 // no XmlNode type check is done here (seealso: bug #553032).
844                                 XmlTypeMapMemberAnyElement member = new XmlTypeMapMemberAnyElement();
845                                 member.ElementInfo = ImportAnyElementInfo (defaultNamespace, rmember, member, atts);
846                                 mapMember = member;
847                         }
848                         else if (atts.Xmlns)
849                         {
850                                 XmlTypeMapMemberNamespaces mapNamespaces = new XmlTypeMapMemberNamespaces ();
851                                 mapMember = mapNamespaces;
852                         }
853                         else if (atts.XmlAttribute != null)
854                         {
855                                 // An attribute
856
857                                 if (atts.XmlElements != null && atts.XmlElements.Count > 0)
858                                         throw new Exception ("XmlAttributeAttribute and XmlElementAttribute cannot be applied to the same member");
859
860                                 XmlTypeMapMemberAttribute mapAttribute = new XmlTypeMapMemberAttribute ();
861                                 if (atts.XmlAttribute.AttributeName.Length == 0) 
862                                         mapAttribute.AttributeName = rmember.MemberName;
863                                 else 
864                                         mapAttribute.AttributeName = atts.XmlAttribute.AttributeName;
865
866                                 mapAttribute.AttributeName = XmlConvert.EncodeName (mapAttribute.AttributeName);
867
868                                 if (typeData.IsComplexType)
869                                         mapAttribute.MappedType = ImportTypeMapping (typeData.Type, null, defaultNamespace);
870
871                                 if (atts.XmlAttribute.Namespace != null && atts.XmlAttribute.Namespace != defaultNamespace)
872                                 {
873                                         if (atts.XmlAttribute.Form == XmlSchemaForm.Unqualified)
874                                                 throw new InvalidOperationException ("The Form property may not be 'Unqualified' when an explicit Namespace property is present");
875                                         mapAttribute.Form = XmlSchemaForm.Qualified;
876                                         mapAttribute.Namespace = atts.XmlAttribute.Namespace;
877                                 }
878                                 else
879                                 {
880                                         mapAttribute.Form = atts.XmlAttribute.Form;
881                                         if (atts.XmlAttribute.Form == XmlSchemaForm.Qualified)
882                                                 mapAttribute.Namespace = defaultNamespace;
883                                         else
884                                                 mapAttribute.Namespace = "";
885                                 }
886                                 
887                                 typeData = TypeTranslator.GetTypeData(rmember.MemberType, atts.XmlAttribute.DataType);
888                                 mapMember = mapAttribute;
889                         }
890                         else if (typeData.SchemaType == SchemaTypes.Array)
891                         {
892                                 // If the member has a single XmlElementAttribute and the type is the type of the member,
893                                 // then it is not a flat list
894                                 
895                                 if (atts.XmlElements.Count > 1 ||
896                                    (atts.XmlElements.Count == 1 && atts.XmlElements[0].Type != typeData.Type) ||
897                                    (atts.XmlText != null))
898                                 {
899                                         // A flat list
900
901                                         // check that it does not have XmlArrayAttribute
902                                         if (atts.XmlArray != null)
903                                                 throw new InvalidOperationException ("XmlArrayAttribute cannot be used with members which also attributed with XmlElementAttribute or XmlTextAttribute.");
904
905                                         XmlTypeMapMemberFlatList member = new XmlTypeMapMemberFlatList ();
906                                         member.ListMap = new ListMap ();
907                                         member.ListMap.ItemInfo = ImportElementInfo (declaringType, XmlConvert.EncodeLocalName (rmember.MemberName), defaultNamespace, typeData.ListItemType, member, atts);
908                                         member.ElementInfo = member.ListMap.ItemInfo;
909                                         member.ListMap.ChoiceMember = member.ChoiceMember;
910                                         mapMember = member;
911                                 }
912                                 else
913                                 {
914                                         // A list
915
916                                         XmlTypeMapMemberList member = new XmlTypeMapMemberList ();
917
918                                         // Creates an ElementInfo that identifies the array instance. 
919                                         member.ElementInfo = new XmlTypeMapElementInfoList();
920                                         XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (member, typeData);
921                                         elem.ElementName = XmlConvert.EncodeLocalName((atts.XmlArray != null && atts.XmlArray.ElementName.Length != 0) ? atts.XmlArray.ElementName : rmember.MemberName);
922                                         // note that it could be changed below (when Form is Unqualified)
923                                         elem.Namespace = (atts.XmlArray != null && atts.XmlArray.Namespace != null) ? atts.XmlArray.Namespace : defaultNamespace;
924                                         elem.MappedType = ImportListMapping (rmember.MemberType, null, elem.Namespace, atts, 0);
925                                         elem.IsNullable = (atts.XmlArray != null) ? atts.XmlArray.IsNullable : false;
926                                         elem.Form = (atts.XmlArray != null) ? atts.XmlArray.Form : XmlSchemaForm.Qualified;
927                                         elem.ExplicitOrder = (atts.XmlArray != null) ? atts.XmlArray.Order : -1;
928                                         // This is a bit tricky, but is done
929                                         // after filling descendant members, so
930                                         // that array items could be serialized
931                                         // with proper namespace.
932                                         if (atts.XmlArray != null && atts.XmlArray.Form == XmlSchemaForm.Unqualified)
933                                                 elem.Namespace = String.Empty;
934
935                                         member.ElementInfo.Add (elem);
936                                         mapMember = member;
937                                 }
938                         }
939                         else
940                         {
941                                 // An element
942
943                                 XmlTypeMapMemberElement member = new XmlTypeMapMemberElement ();
944                                 member.ElementInfo = ImportElementInfo (declaringType, XmlConvert.EncodeLocalName(rmember.MemberName), defaultNamespace, rmember.MemberType, member, atts);
945                                 mapMember = member;
946                         }
947
948                         mapMember.DefaultValue = GetDefaultValue (typeData, atts.XmlDefaultValue);
949                         mapMember.TypeData = typeData;
950                         mapMember.Name = rmember.MemberName;
951                         mapMember.IsReturnValue = rmember.IsReturnValue;
952                         return mapMember;
953                 }
954
955                 XmlTypeMapElementInfoList ImportElementInfo (Type cls, string defaultName, string defaultNamespace, Type defaultType, XmlTypeMapMemberElement member, XmlAttributes atts)
956                 {
957                         EnumMap choiceEnumMap = null;
958                         Type choiceEnumType = null;
959                         
960                         XmlTypeMapElementInfoList list = new XmlTypeMapElementInfoList();
961                         ImportTextElementInfo (list, defaultType, member, atts, defaultNamespace);
962                         
963                         if (atts.XmlChoiceIdentifier != null) {
964                                 if (cls == null)
965                                         throw new InvalidOperationException ("XmlChoiceIdentifierAttribute not supported in this context.");
966                                         
967                                 member.ChoiceMember = atts.XmlChoiceIdentifier.MemberName;
968                                 MemberInfo[] mems = cls.GetMember (member.ChoiceMember, BindingFlags.Instance|BindingFlags.Public);
969                                 
970                                 if (mems.Length == 0)
971                                         throw new InvalidOperationException ("Choice member '" + member.ChoiceMember + "' not found in class '" + cls);
972                                         
973                                 if (mems[0] is PropertyInfo) {
974                                         PropertyInfo pi = (PropertyInfo)mems[0];
975                                         if (!pi.CanWrite || !pi.CanRead)
976                                                 throw new InvalidOperationException ("Choice property '" + member.ChoiceMember + "' must be read/write.");
977                                         choiceEnumType = pi.PropertyType;
978                                 }
979                                 else choiceEnumType = ((FieldInfo)mems[0]).FieldType;
980                                 
981                                 member.ChoiceTypeData = TypeTranslator.GetTypeData (choiceEnumType);
982                                 
983                                 if (choiceEnumType.IsArray)
984                                         choiceEnumType = choiceEnumType.GetElementType ();
985                                 
986                                 choiceEnumMap = ImportTypeMapping (choiceEnumType).ObjectMap as EnumMap;
987                                 if (choiceEnumMap == null)
988                                         throw new InvalidOperationException ("The member '" + mems[0].Name + "' is not a valid target for XmlChoiceIdentifierAttribute.");
989                         }
990                         
991                         if (atts.XmlElements.Count == 0 && list.Count == 0)
992                         {
993                                 XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (member, TypeTranslator.GetTypeData(defaultType));
994                                 elem.ElementName = defaultName;
995                                 elem.Namespace = defaultNamespace;
996                                 if (elem.TypeData.IsComplexType)
997                                         elem.MappedType = ImportTypeMapping (defaultType, null, defaultNamespace);
998                                 list.Add (elem);
999                         }
1000
1001                         bool multiType = (atts.XmlElements.Count > 1);
1002                         foreach (XmlElementAttribute att in atts.XmlElements)
1003                         {
1004                                 Type elemType = (att.Type != null) ? att.Type : defaultType;
1005                                 XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (member, TypeTranslator.GetTypeData(elemType, att.DataType));
1006                                 elem.Form = att.Form;
1007                                 if (elem.Form != XmlSchemaForm.Unqualified)
1008                                         elem.Namespace = (att.Namespace != null) ? att.Namespace : defaultNamespace;
1009
1010                                 // elem may already be nullable, and IsNullable property in XmlElement is false by default
1011                                 if (att.IsNullable && !elem.IsNullable)
1012                                         elem.IsNullable = att.IsNullable;
1013
1014                                 elem.ExplicitOrder = att.Order;
1015
1016                                 if (elem.IsNullable && !elem.TypeData.IsNullable)
1017                                         throw new InvalidOperationException ("IsNullable may not be 'true' for value type " + elem.TypeData.FullTypeName + " in member '" + defaultName + "'");
1018                                         
1019                                 if (elem.TypeData.IsComplexType)
1020                                 {
1021                                         if (att.DataType.Length != 0) throw new InvalidOperationException (
1022                                                 string.Format(CultureInfo.InvariantCulture, "'{0}' is "
1023                                                         + "an invalid value for '{1}.{2}' of type '{3}'. "
1024                                                         + "The property may only be specified for primitive types.",
1025                                                         att.DataType, cls.FullName, defaultName, 
1026                                                         elem.TypeData.FullTypeName));
1027                                         elem.MappedType = ImportTypeMapping (elemType, null, elem.Namespace);
1028                                 }
1029
1030                                 if (att.ElementName.Length != 0)  {
1031                                         elem.ElementName = XmlConvert.EncodeLocalName(att.ElementName);
1032                                 } else if (multiType) {
1033                                         if (elem.MappedType != null) {
1034                                                 elem.ElementName = elem.MappedType.ElementName;
1035                                         } else {
1036                                                 elem.ElementName = TypeTranslator.GetTypeData (elemType).XmlType;
1037                                         }
1038                                 } else {
1039                                         elem.ElementName = defaultName;
1040                                 }
1041
1042                                 if (choiceEnumMap != null) {
1043                                         string cname = choiceEnumMap.GetEnumName (choiceEnumType.FullName, elem.ElementName);
1044                                         if (cname == null && elem.Namespace != null)
1045                                                 cname = choiceEnumMap.GetEnumName (choiceEnumType.FullName,
1046                                                         elem.Namespace.ToString () + ":" + elem.ElementName);
1047                                         if (cname == null)
1048                                                 throw new InvalidOperationException (string.Format (
1049                                                         CultureInfo.InvariantCulture, "Type {0} is missing"
1050                                                         + " enumeration value '{1}' for element '{1} from"
1051                                                         + " namespace '{2}'.", choiceEnumType, elem.ElementName,
1052                                                         elem.Namespace));
1053                                         elem.ChoiceValue = Enum.Parse (choiceEnumType, cname, false);
1054                                 }
1055                                         
1056                                 list.Add (elem);
1057                         }
1058                         return list;
1059                 }
1060
1061                 XmlTypeMapElementInfoList ImportAnyElementInfo (string defaultNamespace, XmlReflectionMember rmember, XmlTypeMapMemberElement member, XmlAttributes atts)
1062                 {
1063                         XmlTypeMapElementInfoList list = new XmlTypeMapElementInfoList();
1064
1065                         ImportTextElementInfo (list, rmember.MemberType, member, atts, defaultNamespace);
1066
1067                         foreach (XmlAnyElementAttribute att in atts.XmlAnyElements)
1068                         {
1069                                 XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (member, TypeTranslator.GetTypeData(typeof(XmlElement)));
1070                                 if (att.Name.Length != 0) 
1071                                 {
1072                                         elem.ElementName = XmlConvert.EncodeLocalName(att.Name);
1073                                         elem.Namespace = (att.Namespace != null) ? att.Namespace : "";
1074                                 }
1075                                 else 
1076                                 {
1077                                         elem.IsUnnamedAnyElement = true;
1078                                         elem.Namespace = defaultNamespace;
1079                                         if (att.Namespace != null) 
1080                                                 throw new InvalidOperationException ("The element " + rmember.MemberName + " has been attributed with an XmlAnyElementAttribute and a namespace '" + att.Namespace + "', but no name. When a namespace is supplied, a name is also required. Supply a name or remove the namespace.");
1081                                 }
1082                                 elem.ExplicitOrder = att.Order;
1083                                 list.Add (elem);
1084                         }
1085                         return list;
1086                 }
1087
1088                 void ImportTextElementInfo (XmlTypeMapElementInfoList list, Type defaultType, XmlTypeMapMemberElement member, XmlAttributes atts, string defaultNamespace)
1089                 {
1090                         if (atts.XmlText != null)
1091                         {
1092                                 member.IsXmlTextCollector = true;
1093                                 if (atts.XmlText.Type != null) {
1094                                         TypeData td = TypeTranslator.GetTypeData (defaultType);
1095                                         if ((td.SchemaType == SchemaTypes.Primitive || td.SchemaType == SchemaTypes.Enum) && atts.XmlText.Type != defaultType) {
1096                                                 throw new InvalidOperationException ("The type for XmlText may not be specified for primitive types.");
1097                                         }
1098                                         defaultType = atts.XmlText.Type;
1099                                 }
1100                                 if (defaultType == typeof(XmlNode)) defaultType = typeof(XmlText);      // Nodes must be text nodes
1101
1102                                 XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (member, TypeTranslator.GetTypeData(defaultType, atts.XmlText.DataType));
1103
1104                                 if (elem.TypeData.SchemaType != SchemaTypes.Primitive &&
1105                                         elem.TypeData.SchemaType != SchemaTypes.Enum &&
1106                                     elem.TypeData.SchemaType != SchemaTypes.XmlNode &&
1107                                     !(elem.TypeData.SchemaType == SchemaTypes.Array && elem.TypeData.ListItemTypeData.SchemaType == SchemaTypes.XmlNode)
1108                                  )
1109                                         throw new InvalidOperationException ("XmlText cannot be used to encode complex types");
1110
1111                                 if (elem.TypeData.IsComplexType)
1112                                         elem.MappedType = ImportTypeMapping (defaultType, null, defaultNamespace);
1113                                 elem.IsTextElement = true;
1114                                 elem.WrappedElement = false;
1115                                 list.Add (elem);
1116                         }
1117                 }
1118                 
1119                 bool CanBeNull (TypeData type)
1120                 {
1121 #if !NET_2_0    // idiotic compatibility
1122                         if (type.Type == typeof (XmlQualifiedName))
1123                                 return false;
1124 #endif
1125                         return !type.Type.IsValueType || type.IsNullable;
1126                 }
1127                 
1128                 public void IncludeType (Type type)
1129                 {
1130                         if (type == null)
1131                                 throw new ArgumentNullException ("type");
1132
1133                         if (includedTypes == null) includedTypes = new ArrayList ();
1134                         if (!includedTypes.Contains (type))
1135                                 includedTypes.Add (type);
1136                         
1137                         if (relatedMaps.Count > 0) {
1138                                 foreach (XmlTypeMapping map in (ArrayList) relatedMaps.Clone ()) {
1139                                         if (map.TypeData.Type == typeof(object))
1140                                                 map.DerivedTypes.Add (ImportTypeMapping (type));
1141                                 }
1142                         }
1143                 }
1144
1145                 public void IncludeTypes (ICustomAttributeProvider provider)
1146                 { 
1147                         object[] ats = provider.GetCustomAttributes (typeof(XmlIncludeAttribute), true);
1148                         
1149                         foreach (XmlIncludeAttribute at in ats)
1150                                 IncludeType (at.Type);
1151                 }
1152
1153                 private object GetDefaultValue (TypeData typeData, object defaultValue)
1154                 {
1155                         if (defaultValue == DBNull.Value || typeData.SchemaType != SchemaTypes.Enum)
1156                                 return defaultValue;
1157
1158                         // get string representation of enum value
1159                         string namedValue = Enum.Format (typeData.Type, defaultValue, "g");
1160                         // get decimal representation of enum value
1161                         string decimalValue = Enum.Format (typeData.Type, defaultValue, "d");
1162                         // if decimal representation matches string representation, then
1163                         // the value is not defined in the enum type (as the "g" format
1164                         // will return the decimal equivalent of the value if the value
1165                         // is not equal to a combination of named enumerated constants
1166                         if (namedValue == decimalValue) {
1167                                 string msg = string.Format (CultureInfo.InvariantCulture,
1168                                         "Value '{0}' cannot be converted to {1}.", defaultValue,
1169                                         defaultValue.GetType ().FullName);
1170                                 throw new InvalidOperationException (msg);
1171                         }
1172
1173                         // XmlSerializer expects integral enum value
1174                         //return namedValue.Replace (',', ' ');
1175                         return defaultValue;
1176                 }
1177
1178                 #endregion // Methods
1179         }
1180 }