DateTimeOffset child elements have fixed namespace.
[mono.git] / mcs / class / System.Runtime.Serialization / System.Runtime.Serialization / XmlFormatterDeserializer.cs
1 //
2 // XmlFormatterDeserializer.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 #if NET_2_0
29 using System;
30 using System.Collections.Generic;
31 using System.IO;
32 using System.Linq;
33 using System.Reflection;
34 using System.Runtime.Serialization.Formatters.Binary;
35 using System.Xml;
36 using System.Xml.Schema;
37
38 using QName = System.Xml.XmlQualifiedName;
39
40 namespace System.Runtime.Serialization
41 {
42         internal class XmlFormatterDeserializer
43         {
44                 KnownTypeCollection types;
45                 IDataContractSurrogate surrogate;
46                 DataContractResolver resolver, default_resolver; // new in 4.0.
47                 // 3.5 SP1 supports deserialization by reference (id->obj).
48                 // Though unlike XmlSerializer, it does not support forward-
49                 // reference resolution i.e. a referenced object must appear
50                 // before any references to it.
51                 Dictionary<string,object> references = new Dictionary<string,object> ();
52                 Dictionary<QName,Type> resolved_qnames = new Dictionary<QName,Type> ();
53
54                 public static object Deserialize (XmlReader reader, Type declaredType,
55                         KnownTypeCollection knownTypes, IDataContractSurrogate surrogate, DataContractResolver resolver, DataContractResolver defaultResolver,
56                         string name, string ns, bool verifyObjectName)
57                 {
58                         reader.MoveToContent ();
59                         if (verifyObjectName)
60                                 if (reader.NodeType != XmlNodeType.Element ||
61                                     reader.LocalName != name ||
62                                     reader.NamespaceURI != ns)
63                                         throw new SerializationException (String.Format ("Expected element '{0}' in namespace '{1}', but found {2} node '{3}' in namespace '{4}'", name, ns, reader.NodeType, reader.LocalName, reader.NamespaceURI));
64 //                              Verify (knownTypes, declaredType, name, ns, reader);
65                         return new XmlFormatterDeserializer (knownTypes, surrogate, resolver, defaultResolver).Deserialize (declaredType, reader);
66                 }
67
68                 // Verify the top element name and namespace.
69                 private static void Verify (KnownTypeCollection knownTypes, Type type, string name, string Namespace, XmlReader reader)
70                 {
71                         QName graph_qname = new QName (reader.LocalName, reader.NamespaceURI);
72                         if (graph_qname.Name == name && graph_qname.Namespace == Namespace)
73                                 return;
74
75                         // <BClass .. i:type="EClass" >..</BClass>
76                         // Expecting type EClass : allowed
77                         // See test Serialize1b, and Serialize1c (for
78                         // negative cases)
79
80                         // Run through inheritance heirarchy .. 
81                         for (Type baseType = type; baseType != null; baseType = baseType.BaseType)
82                                 if (knownTypes.GetQName (baseType) == graph_qname)
83                                         return;
84
85                         QName typeQName = knownTypes.GetQName (type);
86                         throw new SerializationException (String.Format (
87                                 "Expecting element '{0}' from namespace '{1}'. Encountered 'Element' with name '{2}', namespace '{3}'",
88                                 typeQName.Name, typeQName.Namespace, graph_qname.Name, graph_qname.Namespace));
89                 }
90
91                 private XmlFormatterDeserializer (
92                         KnownTypeCollection knownTypes,
93                         IDataContractSurrogate surrogate,
94                         DataContractResolver resolver,
95                         DataContractResolver defaultResolver)
96                 {
97                         this.types = knownTypes;
98                         this.surrogate = surrogate;
99                         this.resolver = resolver;
100                         this.default_resolver = defaultResolver;
101                 }
102
103                 public Dictionary<string,object> References {
104                         get { return references; }
105                 }
106
107                 // This method handles z:Ref, xsi:nil and primitive types, and then delegates to DeserializeByMap() for anything else.
108                 public object Deserialize (Type type, XmlReader reader)
109                 {
110                         QName graph_qname = types.GetQName (type);
111                         string itype = reader.GetAttribute ("type", XmlSchema.InstanceNamespace);
112                         if (itype != null) {
113                                 string [] parts = itype.Split (':');
114                                 if (parts.Length > 1)
115                                         graph_qname = new QName (parts [1], reader.LookupNamespace (reader.NameTable.Get (parts [0])));
116                                 else
117                                         graph_qname = new QName (itype, reader.LookupNamespace (String.Empty));
118                         }
119
120                         string label = reader.GetAttribute ("Ref", KnownTypeCollection.MSSimpleNamespace);
121                         if (label != null) {
122                                 object o;
123                                 if (!references.TryGetValue (label, out o))
124                                         throw new SerializationException (String.Format ("Deserialized object with reference Id '{0}' was not found", label));
125                                 reader.Skip ();
126                                 return o;
127                         }
128
129                         bool isNil = reader.GetAttribute ("nil", XmlSchema.InstanceNamespace) == "true";
130
131                         if (isNil) {
132                                 reader.Skip ();
133                                 if (!type.IsValueType)
134                                         return null;
135                                 else if (type.IsGenericType && type.GetGenericTypeDefinition () == typeof (Nullable<>))
136                                         return null;
137                                 else 
138                                         throw new SerializationException (String.Format ("Value type {0} cannot be null.", type));
139                         }
140
141                         if (resolver != null) {
142                                 Type t;
143                                 if (resolved_qnames.TryGetValue (graph_qname, out t))
144                                         type = t;
145                                 else { // i.e. resolve name only once.
146                                         type = resolver.ResolveName (graph_qname.Name, graph_qname.Namespace, type, default_resolver) ?? type;
147                                         resolved_qnames.Add (graph_qname, type);
148                                         types.Add (type);
149                                 }
150                         }
151
152                         if (KnownTypeCollection.GetPrimitiveTypeFromName (graph_qname) != null) {
153                                 string id = reader.GetAttribute ("Id", KnownTypeCollection.MSSimpleNamespace);
154
155                                 object ret = DeserializePrimitive (type, reader, graph_qname);
156
157                                 if (id != null) {
158                                         if (references.ContainsKey (id))
159                                                 throw new InvalidOperationException (String.Format ("Object with Id '{0}' already exists as '{1}'", id, references [id]));
160                                         references.Add (id, ret);
161                                 }
162                                 return ret;
163                         }
164
165                         return DeserializeByMap (graph_qname, type, reader);
166                 }
167
168                 object DeserializePrimitive (Type type, XmlReader reader, QName qname)
169                 {
170                         // It is the only exceptional type that does not serialize to string but serializes into complex element.
171                         if (type == typeof (DateTimeOffset)) {
172                                 if (reader.IsEmptyElement) {
173                                         reader.Read ();
174                                         return default (DateTimeOffset);
175                                 }
176                                 reader.ReadStartElement ();
177                                 reader.MoveToContent ();
178                                 var date = reader.ReadElementContentAsDateTime ("DateTime", KnownTypeCollection.DefaultClrNamespaceSystem);
179                                 var off = TimeSpan.FromMinutes (reader.ReadElementContentAsInt ("OffsetMinutes", KnownTypeCollection.DefaultClrNamespaceSystem));
180                                 reader.MoveToContent ();
181                                 reader.ReadEndElement ();
182                                 return new DateTimeOffset (DateTime.SpecifyKind (date.ToUniversalTime () + off, DateTimeKind.Unspecified), off);
183                         }
184
185                         string value;
186                         if (reader.IsEmptyElement) {
187                                 reader.Read (); // advance
188                                 if (type.IsValueType)
189                                         return Activator.CreateInstance (type);
190                                 else
191                                         // FIXME: Workaround for creating empty objects of the correct type.
192                                         value = String.Empty;
193                         }
194                         else
195                                 value = reader.ReadElementContentAsString ();
196                         return KnownTypeCollection.PredefinedTypeStringToObject (value, qname.Name, reader);
197                 }
198
199                 object DeserializeByMap (QName name, Type type, XmlReader reader)
200                 {
201                         SerializationMap map = resolved_qnames.ContainsKey (name) ? types.FindUserMap (type) : types.FindUserMap (name); // use type when the name is "resolved" one. Otherwise use name (there are cases that type cannot be resolved by type).
202                         if (map == null && (name.Name.StartsWith ("ArrayOf", StringComparison.Ordinal) ||
203                             name.Namespace == KnownTypeCollection.MSArraysNamespace ||
204                             name.Namespace.StartsWith (KnownTypeCollection.DefaultClrNamespaceBase, StringComparison.Ordinal))) {
205                                 var it = GetTypeFromNamePair (name.Name, name.Namespace);
206                                 types.Add (it);
207                                 map = types.FindUserMap (name);
208                         }
209                         if (map == null)
210                                 throw new SerializationException (String.Format ("Unknown type {0} is used for DataContract with reference of name {1}. Any derived types of a data contract or a data member should be added to KnownTypes.", type, name));
211
212                         return map.DeserializeObject (reader, this);
213                 }
214
215                 Type GetTypeFromNamePair (string name, string ns)
216                 {
217                         Type p = KnownTypeCollection.GetPrimitiveTypeFromName (new QName (name, ns));
218                         if (p != null)
219                                 return p;
220                         bool makeArray = false;
221                         if (name.StartsWith ("ArrayOf", StringComparison.Ordinal)) {
222                                 name = name.Substring (7); // strip "ArrayOf"
223                                 if (ns == KnownTypeCollection.MSArraysNamespace)
224                                         return GetTypeFromNamePair (name, String.Empty).MakeArrayType ();
225                                 makeArray = true;
226                         }
227
228                         string dnsb = KnownTypeCollection.DefaultClrNamespaceBase;
229                         string clrns = ns.StartsWith (dnsb, StringComparison.Ordinal) ?  ns.Substring (dnsb.Length) : ns;
230
231                         foreach (var ass in AppDomain.CurrentDomain.GetAssemblies ()) {
232                                 Type [] types;
233
234 #if MOONLIGHT
235                                 try  {
236                                         types = ass.GetTypes ();
237                                 } catch (System.Reflection.ReflectionTypeLoadException rtle) {
238                                         types = rtle.Types;
239                                 }
240 #else
241                                 types = ass.GetTypes ();
242 #endif
243                                 if (types == null)
244                                         continue;
245
246                                 foreach (var t in types) {
247                                         // there can be null entries or exception throw to access the attribute - 
248                                         // at least when some referenced assemblies could not be loaded (affects moonlight)
249                                         if (t == null)
250                                                 continue;
251
252                                         try {
253                                                 var dca = t.GetCustomAttribute<DataContractAttribute> (true);
254                                                 if (dca != null && dca.Name == name && dca.Namespace == ns)
255                                                         return makeArray ? t.MakeArrayType () : t;
256                                         }
257                                         catch (TypeLoadException tle) {
258                                                 Console.Error.WriteLine (tle);
259                                                 continue;
260                                         }
261                                         catch (FileNotFoundException fnfe) {
262                                                 Console.Error.WriteLine (fnfe);
263                                                 continue;
264                                         }
265
266                                         if (clrns != null && t.Name == name && t.Namespace == clrns)
267                                                 return makeArray ? t.MakeArrayType () : t;
268                                 }
269                         }
270                         throw new XmlException (String.Format ("Type not found; name: {0}, namespace: {1}", name, ns));
271                 }
272         }
273 }
274 #endif