コード例 #1
0
        /// <summary>
        /// Validates the value type of a property meets the derived type constraints.
        /// </summary>
        /// <param name="propertySerializationInfo">The property serialization info.</param>
        /// <remarks>This does NOT validate the value of the property, just the type of property.</remarks>
        internal static void ValidatePropertyDerivedTypeConstraint(PropertySerializationInfo propertySerializationInfo)
        {
            Debug.Assert(propertySerializationInfo != null, "propertySerializationInfo != null");

            // Skip the undeclared property
            if (propertySerializationInfo.MetadataType.IsUndeclaredProperty)
            {
                return;
            }

            PropertyValueTypeInfo valueType = propertySerializationInfo.ValueType;

            if (valueType == null || valueType.TypeReference == null)
            {
                return;
            }

            // make sure the same type can pass the validation.
            if (propertySerializationInfo.MetadataType.TypeReference.Definition == valueType.TypeReference.Definition)
            {
                return;
            }

            string fullTypeName = valueType.TypeReference.FullName();

            if (propertySerializationInfo.MetadataType.DerivedTypeConstraints == null ||
                propertySerializationInfo.MetadataType.DerivedTypeConstraints.Any(d => d == fullTypeName))
            {
                return;
            }

            throw new ODataException(Strings.WriterValidationUtils_ValueTypeNotAllowedInDerivedTypeConstraint(fullTypeName, "property", propertySerializationInfo.PropertyName));
        }
コード例 #2
0
        /// <summary>
        /// Validates that the property given is defined.
        /// </summary>
        /// <param name="propertyInfo">The info of property.</param>
        /// <param name="throwOnUndeclaredProperty">Whether undeclared property on non open type should be prohibited.</param>
        internal static void ValidatePropertyDefined(PropertySerializationInfo propertyInfo, bool throwOnUndeclaredProperty)
        {
            if (propertyInfo.MetadataType.OwningType == null)
            {
                return;
            }

            if (throwOnUndeclaredProperty && propertyInfo.MetadataType.IsUndeclaredProperty && !propertyInfo.MetadataType.IsOpenProperty)
            {
                throw new ODataException(Strings.ValidationUtils_PropertyDoesNotExistOnType(propertyInfo.PropertyName, propertyInfo.MetadataType.OwningType.FullTypeName()));
            }
        }
コード例 #3
0
        public PropertySerializationInfo GetProperty(string name, string uniqueName, IEdmStructuredType owningType)
        {
            PropertySerializationInfo propertyInfo;

            if (!propertyInfoDictionary.TryGetValue(uniqueName, out propertyInfo))
            {
                propertyInfo = new PropertySerializationInfo(name, owningType);
                propertyInfoDictionary[uniqueName] = propertyInfo;
            }

            return(propertyInfo);
        }
コード例 #4
0
ファイル: PropertyCache.cs プロジェクト: pbvs/odata.net
        public PropertySerializationInfo GetProperty(IEdmModel model, int depth, string name, IEdmStructuredType owningType)
        {
            PropertySerializationInfo propertyInfo;

            PropertyKey propertyKey = new PropertyKey(depth, name, owningType?.FullTypeName());

            if (!propertyInfoDictionary.TryGetValue(propertyKey, out propertyInfo))
            {
                propertyInfo = new PropertySerializationInfo(model, name, owningType);
                propertyInfoDictionary[propertyKey] = propertyInfo;
            }

            return(propertyInfo);
        }
コード例 #5
0
        /// <summary>
        /// Validates the value type of a property meets the derived type constraints.
        /// </summary>
        /// <param name="propertySerializationInfo">The property serialization info.</param>
        /// <remarks>This does NOT validate the value of the property, just the type of property.</remarks>
        internal static void ValidatePropertyDerivedTypeConstraint(PropertySerializationInfo propertySerializationInfo)
        {
            Debug.Assert(propertySerializationInfo != null, "propertySerializationInfo != null");

            // Skip the undeclared property
            if (propertySerializationInfo.MetadataType.IsUndeclaredProperty)
            {
                return;
            }

            PropertyValueTypeInfo valueType = propertySerializationInfo.ValueType;

            if (valueType == null || valueType.TypeReference == null)
            {
                return;
            }

            // make sure the same type can pass the validation.
            if (propertySerializationInfo.MetadataType.TypeReference.Definition == valueType.TypeReference.Definition)
            {
                return;
            }

            string fullTypeName = valueType.TypeReference.FullName();

            if (propertySerializationInfo.MetadataType.DerivedTypeConstraints == null)
            {
                return;
            }

            // this runs in a hot path, hence the use of a loop instead of LINQ to avoid allocations
            foreach (string d in propertySerializationInfo.MetadataType.DerivedTypeConstraints)
            {
                if (d == fullTypeName)
                {
                    return;
                }
            }

            throw new ODataException(Strings.WriterValidationUtils_ValueTypeNotAllowedInDerivedTypeConstraint(fullTypeName, "property", propertySerializationInfo.PropertyName));
        }