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
|
//
// 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.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 ())
l.Add (new TypeMapField (fi, null));
foreach (var pi in type.GetProperties ())
if (pi.CanRead && pi.CanWrite)
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 ());
}
static bool IsCollection (Type type)
{
if (type.GetInterface ("System.Collections.IList", false) != null)
return true;
if (type.GetInterface ("System.Collections.Generic.IList`1", false) != null)
return true;
if (type.GetInterface ("System.Collections.Generic.ICollection`1", false) != 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 (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)) {
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 (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)) {
object [] atts = pi.GetCustomAttributes (typeof (DataMemberAttribute), true);
if (atts.Length == 0)
continue;
if (pi.GetIndexParameters ().Length > 0)
continue;
if (IsCollection (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;
public TypeMap (Type type, string element, TypeMapMember [] orderedMembers)
{
this.type = type;
this.element = element;
this.members = orderedMembers;
}
public void Serialize (JsonSerializationWriter outputter, object graph)
{
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 ();
}
}
public object Deserialize (JsonSerializationReader jsr)
{
XmlReader reader = jsr.Reader;
object ret = FormatterServices.GetUninitializedObject (type);
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.ReadObject (mm.Type));
filled [mm] = true;
consumed = true;
break;
}
}
if (!consumed)
reader.Skip ();
}
reader.ReadEndElement ();
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, object 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, object value)
{
field.SetValue (owner, value);
}
}
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, object value)
{
property.SetValue (owner, value, null);
}
}
}
|