TypeMap.cs :  » 2.6.4-mono-.net-core » System.Runtime » System » Runtime » Serialization » Json » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Runtime 
System.Runtime » System » Runtime » Serialization » Json » TypeMap.cs
//
// 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);
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.