This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / ReflectionHelper.cs
1 // 
2 // System.Xml.Serialization.ReflectionHelper 
3 //
4 // Author:
5 //   Lluis Sanchez Gual (lluis@ximian.com)
6 //
7 // Copyright (C) 2003 Ximian, Inc.\r
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Reflection;
32 using System.Collections;
33 \r
34 namespace System.Xml.Serialization\r
35 {\r
36         internal class ReflectionHelper\r
37         {\r
38                 Hashtable _clrTypes = new Hashtable ();
39                 Hashtable _schemaTypes = new Hashtable ();
40 \r
41                 public void RegisterSchemaType (XmlTypeMapping map, string xmlType, string ns)
42                 {
43                         string mapKey = xmlType + "/" + ns;
44                         if (!_schemaTypes.ContainsKey (xmlType))
45                                 _schemaTypes.Add (mapKey, map);
46                 }
47
48                 public XmlTypeMapping GetRegisteredSchemaType (string xmlType, string ns)
49                 {
50                         string mapKey = xmlType + "/" + ns;
51                         return _schemaTypes[mapKey] as XmlTypeMapping;
52                 }
53
54                 public void RegisterClrType (XmlTypeMapping map, Type type, string ns)
55                 {
56                         if (type == typeof(object)) ns = "";
57                         string mapKey = type.FullName + "/" + ns;
58                         if (!_clrTypes.ContainsKey (mapKey))
59                                 _clrTypes.Add (mapKey, map);
60                 }
61
62                 public XmlTypeMapping GetRegisteredClrType (Type type, string ns)
63                 {
64                         if (type == typeof(object)) ns = "";
65                         string mapKey = type.FullName + "/" + ns;
66                         return _clrTypes[mapKey] as XmlTypeMapping;
67                 }       \r
68 \r
69                 public Exception CreateError (XmlTypeMapping map, string message)
70                 {
71                         return new InvalidOperationException ("There was an error reflecting '" + map.TypeFullName + "': " + message);
72                 }
73                 
74                 public static void CheckSerializableType (Type type)
75                 {
76                         if (type.IsArray) return;
77                         
78                         if (type.GetConstructor (Type.EmptyTypes) == null && !type.IsAbstract && !type.IsValueType)
79                                 throw new InvalidOperationException (type.FullName + " cannot be serialized because it does not have a default public constructor");
80                                 
81                         if (type.IsInterface)
82                                 throw new InvalidOperationException (type.FullName + " cannot be serialized because it is an interface");
83                                 
84                         Type t = type;
85                         do {
86                                 if (!t.IsPublic && !t.IsNestedPublic)
87                                         throw new InvalidOperationException (type.FullName + " is inaccessible due to its protection level. Only public types can be processed");
88                                 t = t.DeclaringType;
89                         }
90                         while (t != null);
91                 }
92         }\r
93 }