コード例 #1
0
        public TypeSerializationInfo(Type type, IEnumerable <PropertyInfo> properties)
        {
            Type     = type;
            TypeName = TypeHelper.FormatBinary(Type);

            IsAttribute = TypeHelper.IsXmlAttribute(Type);
            if (IsAttribute)
            {
                Serialazer = TypeHelper.GetValueSerializer(type);
                return;
            }
            if (!Type.IsInterface)
            {
                Constructor = EmitInvoker.Initialize(type, Type.EmptyTypes);
            }

            IsList = TypeHelper.IsList(type);
            if (IsList)
            {
                IsNamedList    = TypeHelper.IsInterface(type, typeof(INamedList));
                ListItemType   = TypeHelper.GetItemType(type);
                ListDefaulType = ListItemType != typeof(object) &&
                                 !ListItemType.IsInterface &&
                                 !type.IsGenericType &&
                                 !type.IsArray &&
                                 !TypeHelper.IsInterface(type, typeof(ISortable));
                ListItemIsAttribute = TypeHelper.IsXmlAttribute(ListItemType);

                ListConstructor = EmitInvoker.Initialize(type, new[] { typeof(int) });
            }
            IsDictionary = TypeHelper.IsDictionary(type);

            Properties = new NamedList <PropertySerializationInfo>();
            Properties.Indexes.Add(PropertySaveInfoIsAttributeInvoker.Instance);

            foreach (var property in properties)
            {
                if (TypeHelper.IsNonSerialize(property))
                {
                    var exist = GetProperty(property.Name);
                    if (exist != null)
                    {
                        Properties.Remove(exist);
                    }
                    continue;
                }
                var info = new PropertySerializationInfo(property);
                {
                    var exist = GetProperty(info.Name);
                    if (exist != null)
                    {
                        Properties.Remove(exist);
                    }
                    Properties.Add(info);
                }
            }
        }
コード例 #2
0
        public TypeSerializationInfo(Type type, IEnumerable <PropertyInfo> properties)
        {
            Type     = type;
            TypeName = TypeHelper.FormatBinary(Type);

            IsAttribute = TypeHelper.IsSerializeAttribute(Type);
            if (IsAttribute)
            {
                Serialazer = TypeHelper.GetValueSerializer(type);
                return;
            }
            if (!Type.IsInterface && !Type.IsAbstract)
            {
                Constructor = EmitInvoker.Initialize(type, Type.EmptyTypes);
            }

            IsList = TypeHelper.IsList(type);
            if (IsList)
            {
                IsNamedList    = TypeHelper.IsInterface(type, typeof(INamedList));
                ListItemType   = TypeHelper.GetItemType(type);
                ListDefaulType = ListItemType != typeof(object) &&
                                 !ListItemType.IsInterface &&
                                 !type.IsGenericType &&
                                 !type.IsArray &&
                                 !TypeHelper.IsInterface(type, typeof(ISortable));
                ListItemIsAttribute = TypeHelper.IsSerializeAttribute(ListItemType);

                ListConstructor = EmitInvoker.Initialize(type, new[] { typeof(int) });
            }
            IsDictionary = TypeHelper.IsDictionary(type);

            Properties = new NamedList <PropertySerializationInfo>(6, (ListIndex <PropertySerializationInfo, string>)PropertySerializationInfo.NameInvoker.Instance.CreateIndex(false));
            Properties.Indexes.Add(PropertySerializationInfo.IsAttributeInvoker.Instance);
            int order = 0;

            foreach (var property in properties)
            {
                var exist = GetProperty(property.Name);
                if (TypeHelper.IsNonSerialize(property))
                {
                    if (exist != null)
                    {
                        Properties.Remove(exist);
                    }
                    continue;
                }
                //var method = property.GetGetMethod() ?? property.GetSetMethod();
                if (exist != null)// && method.Equals(method.GetBaseDefinition())
                {
                    Properties.Remove(exist);
                }

                Properties.Add(new PropertySerializationInfo(property, ++order));
            }
            Properties.ApplySortInternal(PropertySerializationInfo.OrderInvoker.Instance.CreateComparer <PropertySerializationInfo>());
        }
コード例 #3
0
 public PropertySerializationInfo(PropertyInfo property)
 {
     Property    = property;
     IsText      = TypeHelper.IsXmlText(property);
     IsAttribute = TypeHelper.IsXmlAttribute(property) && !IsText;
     Invoker     = EmitInvoker.Initialize(property, true);
     Default     = TypeHelper.GetDefault(property);
     if (IsAttribute || IsText)
     {
         Serialazer = TypeHelper.GetValueSerializer(property);
     }
     Name = property.Name;
 }
コード例 #4
0
        public PropertySerializationInfo(PropertyInfo property, int order = -1)
        {
            Property = property;
            Name     = property.Name;
            DataType = Property.PropertyType;
            var keys = PropertySerializationInfoKeys.None;

            if (TypeHelper.IsSerializeText(property))
            {
                keys |= PropertySerializationInfoKeys.Text;
            }
            else if (TypeHelper.IsSerializeAttribute(property))
            {
                keys |= PropertySerializationInfoKeys.Attribute;
            }
            if (TypeHelper.IsSerializeWriteable(property))
            {
                keys |= PropertySerializationInfoKeys.Writeable;
            }
            if (TypeHelper.IsRequired(property))
            {
                keys |= PropertySerializationInfoKeys.Required;
            }
            if (TypeHelper.IsJsonSynchronized(property))
            {
                keys |= PropertySerializationInfoKeys.ChangeSensitive;
            }
            if (TypeHelper.IsReadOnly(property))
            {
                keys |= PropertySerializationInfoKeys.ReadOnly;
            }
            Keys    = keys;
            Order   = TypeHelper.GetOrder(property, order);
            Invoker = EmitInvoker.Initialize(property, true);

            Default = TypeHelper.GetDefault(property);
            if (IsAttribute || IsText)
            {
                Serialazer = TypeHelper.GetValueSerializer(property);
            }
        }