| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /* Copyright 2010-present MongoDB Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- namespace MongoDB.Bson.Serialization.Conventions
- {
- /// <summary>
- /// A convention that finds the extra elements member by name (and that is also of type <see cref="BsonDocument"/> or <see cref="IDictionary{String, Object}"/>).
- /// </summary>
- public class NamedExtraElementsMemberConvention : ConventionBase, IClassMapConvention
- {
- // private fields
- private readonly IEnumerable<string> _names;
- private readonly MemberTypes _memberTypes;
- private readonly BindingFlags _bindingFlags;
- // constructors
- /// <summary>
- /// Initializes a new instance of the NamedExtraElementsMemberConvention class.
- /// </summary>
- /// <param name="name">The name of the extra elements member.</param>
- public NamedExtraElementsMemberConvention(string name)
- : this(new [] { name })
- { }
- /// <summary>
- /// Initializes a new instance of the <see cref="NamedExtraElementsMemberConvention" /> class.
- /// </summary>
- /// <param name="names">The names.</param>
- public NamedExtraElementsMemberConvention(IEnumerable<string> names)
- : this(names, BindingFlags.Instance | BindingFlags.Public)
- { }
- /// <summary>
- /// Initializes a new instance of the <see cref="NamedExtraElementsMemberConvention" /> class.
- /// </summary>
- /// <param name="names">The names.</param>
- /// <param name="memberTypes">The member types.</param>
- public NamedExtraElementsMemberConvention(IEnumerable<string> names, MemberTypes memberTypes)
- : this(names, memberTypes, BindingFlags.Instance | BindingFlags.Public)
- { }
- /// <summary>
- /// Initializes a new instance of the <see cref="NamedExtraElementsMemberConvention" /> class.
- /// </summary>
- /// <param name="names">The names.</param>
- /// <param name="bindingFlags">The binding flags.</param>
- public NamedExtraElementsMemberConvention(IEnumerable<string> names, BindingFlags bindingFlags)
- : this(names, MemberTypes.Field | MemberTypes.Property, bindingFlags)
- { }
- /// <summary>
- /// Initializes a new instance of the <see cref="NamedExtraElementsMemberConvention" /> class.
- /// </summary>
- /// <param name="names">The names.</param>
- /// <param name="memberTypes">The member types.</param>
- /// <param name="bindingFlags">The binding flags.</param>
- /// <exception cref="System.ArgumentNullException"></exception>
- public NamedExtraElementsMemberConvention(IEnumerable<string> names, MemberTypes memberTypes, BindingFlags bindingFlags)
- {
- if (names == null)
- {
- throw new ArgumentNullException("names");
- }
- _names = names;
- _memberTypes = memberTypes;
- _bindingFlags = bindingFlags | BindingFlags.DeclaredOnly;
- }
- // public methods
- /// <summary>
- /// Applies a modification to the class map.
- /// </summary>
- /// <param name="classMap">The class map.</param>
- public void Apply(BsonClassMap classMap)
- {
- var classTypeInfo = classMap.ClassType.GetTypeInfo();
- foreach (var name in _names)
- {
- var member = classTypeInfo.GetMember(name, _memberTypes, _bindingFlags).SingleOrDefault();
- if (member != null)
- {
- Type memberType = null;
- var fieldInfo = member as FieldInfo;
- if (fieldInfo != null)
- {
- memberType = fieldInfo.FieldType;
- }
- else
- {
- var propertyInfo = member as PropertyInfo;
- if (propertyInfo != null)
- {
- memberType = propertyInfo.PropertyType;
- }
- }
- if (memberType != null && (memberType == typeof(BsonDocument) || typeof(IDictionary<string, object>).GetTypeInfo().IsAssignableFrom(memberType)))
- {
- classMap.MapExtraElementsMember(member);
- return;
- }
- }
- }
- }
- }
- }
|