1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
//
// TypeMap.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2008 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using System.Text;
using System.Xml;
namespace System.Runtime.Serialization.Json
{
class TypeMap
{
static bool IsInvalidNCName (string name)
{
if (name == null || name.Length == 0)
return true;
try {
XmlConvert.VerifyNCName (name);
} catch (XmlException) {
return true;
}
return false;
}
public static TypeMap CreateTypeMap (Type type)
{
object [] atts = type.GetCustomAttributes (typeof (DataContractAttribute), true);
if (atts.Length == 1)
return CreateTypeMap (type, (DataContractAttribute) atts [0]);
atts = type.GetCustomAttributes (typeof (SerializableAttribute), false);
if (atts.Length == 1)
return CreateTypeMap (type, null);
if (IsPrimitiveType (type))
return null;
return CreateDefaultTypeMap (type);
}
static bool IsPrimitiveType (Type type)
{
if (type.IsEnum)
return true;
if (Type.GetTypeCode (type) != TypeCode.Object)
return true; // FIXME: it is likely hacky
return false;
}
static TypeMap CreateDefaultTypeMap (Type type)
{
var l = new List<TypeMapMember> ();
foreach (var fi in type.GetFields ())
if (!fi.IsStatic)
l.Add (new TypeMapField (fi, null));
foreach (var pi in type.GetProperties ())
if (pi.CanRead && pi.CanWrite && !pi.GetGetMethod (true).IsStatic && pi.GetIndexParameters ().Length == 0)
l.Add (new TypeMapProperty (pi, null));
l.Sort ((x, y) => x.Order != y.Order ? x.Order - y.Order : String.Compare (x.Name, y.Name, StringComparison.Ordinal));
return new TypeMap (type, null, l.ToArray ());
}
internal static bool IsDictionary (Type type)
{
Type inter;
inter = type.GetInterface ("System.Collections.IDictionary", false);
if (inter != null
&& type.GetMethod ("Add", new Type[] { typeof (object), typeof (object) }) != null)
return true;
inter = type.GetInterface ("System.Collections.Generic.IDictionary`2", false);
if (inter != null
&& type.GetMethod ("Add", new Type[] { inter.GetGenericArguments() [0],
inter.GetGenericArguments() [1] }) != null)
return true;
return false;
}
internal static bool IsEnumerable (Type type)
{
if (type.IsGenericType &&
type.GetGenericTypeDefinition() == typeof (LinkedList<>))
return true;
if (IsPrimitiveType (type) || IsDictionary (type))
return false;
Type inter;
inter = type.GetInterface ("System.Collections.Generic.IReadOnlyCollection`1", false);
if (inter != null)
return true;
inter = type.GetInterface ("System.Collections.IEnumerable", false);
if (inter != null && type.GetMethod ("Add", new Type[] { typeof (object) }) != null)
return true;
inter = type.GetInterface ("System.Collections.Generic.IEnumerable`1", false);
if (inter != null && type.GetMethod ("Add", new Type[] { inter.GetGenericArguments() [0] }) != null)
return true;
return false;
}
static TypeMap CreateTypeMap (Type type, DataContractAttribute dca)
{
if (dca != null && dca.Name != null && IsInvalidNCName (dca.Name))
throw new InvalidDataContractException (String.Format ("DataContractAttribute for type '{0}' has an invalid name", type));
List<TypeMapMember> members = new List<TypeMapMember> ();
foreach (FieldInfo fi in type.GetFields (binding_flags)) {
if (fi.GetCustomAttributes (typeof (CompilerGeneratedAttribute), false).Length > 0)
continue;
if (dca != null) {
object [] atts = fi.GetCustomAttributes (typeof (DataMemberAttribute), true);
if (atts.Length == 0)
continue;
DataMemberAttribute dma = (DataMemberAttribute) atts [0];
members.Add (new TypeMapField (fi, dma));
} else {
if (fi.GetCustomAttributes (typeof (IgnoreDataMemberAttribute), false).Length > 0)
continue;
members.Add (new TypeMapField (fi, null));
}
}
if (dca != null) {
foreach (PropertyInfo pi in type.GetProperties (binding_flags)) {
object [] atts = pi.GetCustomAttributes (typeof (DataMemberAttribute), true);
if (atts.Length == 0)
continue;
if (pi.GetIndexParameters ().Length > 0)
continue;
if (IsEnumerable (pi.PropertyType) || IsDictionary (pi.PropertyType)) {
if (!pi.CanRead)
throw new InvalidDataContractException (String.Format ("Property {0} must have a getter", pi));
}
else if (!pi.CanRead || !pi.CanWrite)
throw new InvalidDataContractException (String.Format ("Non-collection property {0} must have both getter and setter", pi));
DataMemberAttribute dma = (DataMemberAttribute) atts [0];
members.Add (new TypeMapProperty (pi, dma));
}
}
members.Sort (delegate (TypeMapMember m1, TypeMapMember m2) { return m1.Order != m2.Order ? m1.Order - m2.Order : String.CompareOrdinal (m1.Name, m2.Name); });
return new TypeMap (type, dca == null ? null : dca.Name, members.ToArray ());
}
Type type;
string element;
TypeMapMember [] members;
static readonly Type [] deser_methods_args = new Type [] { typeof (StreamingContext) };
const BindingFlags binding_flags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;
public TypeMap (Type type, string element, TypeMapMember [] orderedMembers)
{
this.type = type;
this.element = element;
this.members = orderedMembers;
foreach (var mi in type.GetMethods (binding_flags)) {
if (mi.GetCustomAttributes (typeof (OnDeserializingAttribute), false).Length > 0)
OnDeserializing = mi;
else if (mi.GetCustomAttributes (typeof (OnDeserializedAttribute), false).Length > 0)
OnDeserialized = mi;
else if (mi.GetCustomAttributes (typeof (OnSerializingAttribute), false).Length > 0)
OnSerializing = mi;
else if (mi.GetCustomAttributes (typeof (OnSerializedAttribute), false).Length > 0)
OnSerialized = mi;
}
}
public MethodInfo OnDeserializing { get; set; }
public MethodInfo OnDeserialized { get; set; }
public MethodInfo OnSerializing { get; set; }
public MethodInfo OnSerialized { get; set; }
public virtual void Serialize (JsonSerializationWriter outputter, object graph, string type)
{
if (OnSerializing != null)
OnSerializing.Invoke (graph, new object [] {new StreamingContext (StreamingContextStates.All)});
outputter.Writer.WriteAttributeString ("type", type);
foreach (TypeMapMember member in members) {
object memberObj = member.GetMemberOf (graph);
// FIXME: consider EmitDefaultValue
outputter.Writer.WriteStartElement (member.Name);
outputter.WriteObjectContent (memberObj, false, false);
outputter.Writer.WriteEndElement ();
}
if (OnSerialized != null)
OnSerialized.Invoke (graph, new object [] {new StreamingContext (StreamingContextStates.All)});
}
internal static object CreateInstance (Type type)
{
if (TypeMap.IsDictionary (type)) {
if (type.IsGenericType)
return Activator.CreateInstance (typeof (Dictionary<,>).MakeGenericType (type.GetGenericArguments ()));
else
return new Hashtable ();
} else if (TypeMap.IsEnumerable (type)) {
if (type.IsGenericType)
return Activator.CreateInstance (typeof (List<>).MakeGenericType (type.GetGenericArguments ()));
else
return new ArrayList ();
}
else
return FormatterServices.GetUninitializedObject (type);
}
public virtual object Deserialize (JsonSerializationReader jsr, object o)
{
XmlReader reader = jsr.Reader;
bool isNull = reader.GetAttribute ("type") == "null";
object ret = isNull ? null : CreateInstance (type);
if (ret != null && OnDeserializing != null)
OnDeserializing.Invoke (ret, new object [] {new StreamingContext (StreamingContextStates.All)});
Dictionary<TypeMapMember,bool> filled = new Dictionary<TypeMapMember,bool> ();
reader.ReadStartElement ();
for (reader.MoveToContent (); reader.NodeType != XmlNodeType.EndElement; reader.MoveToContent ()) {
bool consumed = false;
for (int i = 0; i < members.Length; i++) {
TypeMapMember mm = members [i];
if (mm.Name == reader.LocalName && reader.NamespaceURI == String.Empty) {
if (filled.ContainsKey (mm))
throw new SerializationException (String.Format ("Object content '{0}' for '{1}' already appeared in the reader", reader.LocalName, type));
mm.SetMemberValue (ret, jsr);
filled [mm] = true;
consumed = true;
break;
}
}
if (!consumed)
reader.Skip ();
}
reader.ReadEndElement ();
if (ret != null && OnDeserialized != null)
OnDeserialized.Invoke (ret, new object [] {new StreamingContext (StreamingContextStates.All)});
return ret;
}
}
abstract class TypeMapMember
{
MemberInfo mi;
DataMemberAttribute dma;
protected TypeMapMember (MemberInfo mi, DataMemberAttribute dma)
{
this.mi = mi;
this.dma = dma;
}
public string Name {
get { return dma == null ? mi.Name : dma.Name ?? mi.Name; }
}
public bool EmitDefaultValue {
get { return dma != null && dma.EmitDefaultValue; }
}
public bool IsRequired {
get { return dma != null && dma.IsRequired; }
}
public int Order {
get { return dma != null ? dma.Order : -1; }
}
public abstract Type Type { get; }
public abstract object GetMemberOf (object owner);
public abstract void SetMemberValue (object owner, JsonSerializationReader value);
}
class TypeMapField : TypeMapMember
{
FieldInfo field;
public TypeMapField (FieldInfo fi, DataMemberAttribute dma)
: base (fi, dma)
{
this.field = fi;
}
public override Type Type {
get { return field.FieldType; }
}
public override object GetMemberOf (object owner)
{
return field.GetValue (owner);
}
public override void SetMemberValue (object owner, JsonSerializationReader jsr)
{
field.SetValue (owner, jsr.ReadObject (this.Type));
}
}
class TypeMapProperty : TypeMapMember
{
PropertyInfo property;
public TypeMapProperty (PropertyInfo pi, DataMemberAttribute dma)
: base (pi, dma)
{
this.property = pi;
}
public override Type Type {
get { return property.PropertyType; }
}
public override object GetMemberOf (object owner)
{
return property.GetValue (owner, null);
}
public override void SetMemberValue (object owner, JsonSerializationReader jsr)
{
var pSetter = this.property.GetSetMethod (true);
if (pSetter != null) {
property.SetValue (owner, jsr.ReadObject (this.Type), null);
} else { // no setter
var oldValue = property.GetValue (owner, null);
try {
jsr.ReadObject (this.Type, oldValue);
} catch (MissingMethodException e) {
throw new InvalidDataContractException (string.Format ("No set method for property '{0}' "
+ "in type '{1}'.", this.property.Name, this.property.PropertyType.FullName), e);
}
}
}
}
}
|