-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathBsonClassMap.cs
1750 lines (1580 loc) · 67.6 KB
/
BsonClassMap.cs
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* 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.Collections.ObjectModel;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.Serialization;
using MongoDB.Bson.IO;
using MongoDB.Bson.Serialization.Conventions;
using MongoDB.Shared;
namespace MongoDB.Bson.Serialization
{
/// <summary>
/// Represents a mapping between a class and a BSON document.
/// </summary>
public class BsonClassMap
{
// private static fields
private readonly static Dictionary<Type, BsonClassMap> __classMaps = new Dictionary<Type, BsonClassMap>(); //TODO I think the static fields and methods should not be here, but on the domain
private readonly static Queue<Type> __knownTypesQueue = new Queue<Type>();
private static int __freezeNestingLevel = 0;
// private fields
private readonly Type _classType;
private readonly List<BsonCreatorMap> _creatorMaps;
private readonly IConventionPack _conventionPack;
private readonly bool _isAnonymous;
private readonly List<BsonMemberMap> _allMemberMaps; // includes inherited member maps
private readonly ReadOnlyCollection<BsonMemberMap> _allMemberMapsReadonly;
private List<BsonMemberMap> _declaredMemberMaps; // only the members declared in this class
private readonly BsonTrie<int> _elementTrie;
private bool _frozen; // once a class map has been frozen no further changes are allowed
private BsonClassMap _baseClassMap; // null for class object and interfaces
private volatile IDiscriminatorConvention _discriminatorConvention;
private Func<object> _creator;
private string _discriminator;
private bool _discriminatorIsRequired;
private bool _hasRootClass;
private bool _isRootClass;
private BsonMemberMap _idMemberMap;
private bool _ignoreExtraElements;
private bool _ignoreExtraElementsIsInherited;
private BsonMemberMap _extraElementsMemberMap;
private int _extraElementsMemberIndex = -1;
private List<Type> _knownTypes = new List<Type>();
// constructors
/// <summary>
/// Initializes a new instance of the BsonClassMap class.
/// </summary>
/// <param name="classType">The class type.</param>
public BsonClassMap(Type classType)
{
_classType = classType;
_creatorMaps = new List<BsonCreatorMap>();
_conventionPack = ConventionRegistry.Lookup(classType);
_isAnonymous = classType.IsAnonymousType();
_allMemberMaps = new List<BsonMemberMap>();
_allMemberMapsReadonly = _allMemberMaps.AsReadOnly();
_declaredMemberMaps = new List<BsonMemberMap>();
_elementTrie = new BsonTrie<int>();
Reset();
}
/// <summary>
/// Initializes a new instance of the <see cref="BsonClassMap"/> class.
/// </summary>
/// <param name="classType">Type of the class.</param>
/// <param name="baseClassMap">The base class map.</param>
public BsonClassMap(Type classType, BsonClassMap baseClassMap)
: this(classType)
{
_baseClassMap = baseClassMap;
}
// public properties
/// <summary>
/// Gets all the member maps (including maps for inherited members).
/// </summary>
public ReadOnlyCollection<BsonMemberMap> AllMemberMaps
{
get { return _allMemberMapsReadonly; }
}
/// <summary>
/// Gets the base class map.
/// </summary>
public BsonClassMap BaseClassMap
{
get { return _baseClassMap; }
}
/// <summary>
/// Gets the class type.
/// </summary>
public Type ClassType
{
get { return _classType; }
}
/// <summary>
/// Gets the constructor maps.
/// </summary>
public IEnumerable<BsonCreatorMap> CreatorMaps
{
get { return _creatorMaps; }
}
/// <summary>
/// Gets the conventions used for auto mapping.
/// </summary>
public IConventionPack ConventionPack
{
get { return _conventionPack; }
}
/// <summary>
/// Gets the declared member maps (only for members declared in this class).
/// </summary>
public IEnumerable<BsonMemberMap> DeclaredMemberMaps
{
get { return _declaredMemberMaps; }
}
/// <summary>
/// Gets the discriminator.
/// </summary>
public string Discriminator
{
get { return _discriminator; }
}
/// <summary>
/// Gets whether a discriminator is required when serializing this class.
/// </summary>
public bool DiscriminatorIsRequired
{
get { return _discriminatorIsRequired; }
}
/// <summary>
/// Gets the member map of the member used to hold extra elements.
/// </summary>
public BsonMemberMap ExtraElementsMemberMap
{
get { return _extraElementsMemberMap; }
}
/// <summary>
/// Gets whether this class map has any creator maps.
/// </summary>
public bool HasCreatorMaps
{
get { return _creatorMaps.Count > 0; }
}
/// <summary>
/// Gets whether this class has a root class ancestor.
/// </summary>
public bool HasRootClass
{
get { return _hasRootClass; }
}
/// <summary>
/// Gets the Id member map (null if none).
/// </summary>
public BsonMemberMap IdMemberMap
{
get { return _idMemberMap; }
}
/// <summary>
/// Gets whether extra elements should be ignored when deserializing.
/// </summary>
public bool IgnoreExtraElements
{
get { return _ignoreExtraElements; }
}
/// <summary>
/// Gets whether the IgnoreExtraElements value should be inherited by derived classes.
/// </summary>
public bool IgnoreExtraElementsIsInherited
{
get { return _ignoreExtraElementsIsInherited; }
}
/// <summary>
/// Gets whether this class is anonymous.
/// </summary>
public bool IsAnonymous
{
get { return _isAnonymous; }
}
/// <summary>
/// Gets whether the class map is frozen.
/// </summary>
public bool IsFrozen
{
get { return _frozen; }
}
/// <summary>
/// Gets whether this class is a root class.
/// </summary>
public bool IsRootClass
{
get { return _isRootClass; }
}
/// <summary>
/// Gets the known types of this class.
/// </summary>
public IEnumerable<Type> KnownTypes
{
get { return _knownTypes; }
}
// internal properties
/// <summary>
/// Gets the element name to member index trie.
/// </summary>
internal BsonTrie<int> ElementTrie
{
get { return _elementTrie; }
}
/// <summary>
/// Gets the member index of the member used to hold extra elements.
/// </summary>
internal int ExtraElementsMemberMapIndex
{
get { return _extraElementsMemberIndex; }
}
// public static methods
/// <summary>
/// Gets the type of a member.
/// </summary>
/// <param name="memberInfo">The member info.</param>
/// <returns>The type of the member.</returns>
public static Type GetMemberInfoType(MemberInfo memberInfo)
{
if (memberInfo == null)
{
throw new ArgumentNullException("memberInfo");
}
if (memberInfo is FieldInfo)
{
return ((FieldInfo)memberInfo).FieldType;
}
else if (memberInfo is PropertyInfo)
{
return ((PropertyInfo)memberInfo).PropertyType;
}
throw new NotSupportedException("Only field and properties are supported at this time.");
}
/// <summary>
/// Gets all registered class maps.
/// </summary>
/// <returns>All registered class maps.</returns>
public static IEnumerable<BsonClassMap> GetRegisteredClassMaps()
{
BsonSerializer.ConfigLock.EnterReadLock(); //TODO It would make sense to look at this after the PR by Robert is merged
try
{
return __classMaps.Values.ToList(); // return a copy for thread safety
}
finally
{
BsonSerializer.ConfigLock.ExitReadLock();
}
}
/// <summary>
/// Checks whether a class map is registered for a type.
/// </summary>
/// <param name="type">The type to check.</param>
/// <returns>True if there is a class map registered for the type.</returns>
public static bool IsClassMapRegistered(Type type)
{
if (type == null)
{
throw new ArgumentNullException("type");
}
BsonSerializer.ConfigLock.EnterReadLock();
try
{
return __classMaps.ContainsKey(type);
}
finally
{
BsonSerializer.ConfigLock.ExitReadLock();
}
}
/// <summary>
/// Looks up a class map (will AutoMap the class if no class map is registered).
/// </summary>
/// <param name="classType">The class type.</param>
/// <returns>The class map.</returns>
public static BsonClassMap LookupClassMap(Type classType)
{
if (classType == null)
{
throw new ArgumentNullException("classType");
}
BsonSerializer.ConfigLock.EnterReadLock();
try
{
if (__classMaps.TryGetValue(classType, out var classMap))
{
if (classMap.IsFrozen)
{
return classMap;
}
}
}
finally
{
BsonSerializer.ConfigLock.ExitReadLock();
}
// automatically create a new classMap for classType and register it (unless another thread does first)
// do the work of speculatively creating a new class map outside of holding any lock
var classMapDefinition = typeof(BsonClassMap<>);
var classMapType = classMapDefinition.MakeGenericType(classType);
var newClassMap = (BsonClassMap)Activator.CreateInstance(classMapType);
newClassMap.AutoMap();
BsonSerializer.ConfigLock.EnterWriteLock();
try
{
if (!__classMaps.TryGetValue(classType, out var classMap))
{
RegisterClassMap(newClassMap);
classMap = newClassMap;
}
return classMap.Freeze();
}
finally
{
BsonSerializer.ConfigLock.ExitWriteLock();
}
}
/// <summary>
/// Creates and registers a class map.
/// </summary>
/// <typeparam name="TClass">The class.</typeparam>
/// <returns>The class map.</returns>
public static BsonClassMap<TClass> RegisterClassMap<TClass>() //TODO We should move the static methods here to IBSonSerializerDomain
{
return RegisterClassMap<TClass>(cm => { cm.AutoMap(); });
}
/// <summary>
/// Creates and registers a class map.
/// </summary>
/// <typeparam name="TClass">The class.</typeparam>
/// <param name="classMapInitializer">The class map initializer.</param>
/// <returns>The class map.</returns>
public static BsonClassMap<TClass> RegisterClassMap<TClass>(Action<BsonClassMap<TClass>> classMapInitializer)
{
var classMap = new BsonClassMap<TClass>(classMapInitializer);
RegisterClassMap(classMap);
return classMap;
}
/// <summary>
/// Registers a class map.
/// </summary>
/// <param name="classMap">The class map.</param>
public static void RegisterClassMap(BsonClassMap classMap)
{
if (classMap == null)
{
throw new ArgumentNullException("classMap");
}
BsonSerializer.ConfigLock.EnterWriteLock();
try
{
// note: class maps can NOT be replaced (because derived classes refer to existing instance)
__classMaps.Add(classMap.ClassType, classMap);
BsonSerializer.RegisterDiscriminator(classMap.ClassType, classMap.Discriminator);
}
finally
{
BsonSerializer.ConfigLock.ExitWriteLock();
}
}
/// <summary>
/// Registers a class map if it is not already registered.
/// </summary>
/// <typeparam name="TClass">The class.</typeparam>
/// <returns>True if this call registered the class map, false if the class map was already registered.</returns>
public static bool TryRegisterClassMap<TClass>()
{
return TryRegisterClassMap(ClassMapFactory);
static BsonClassMap<TClass> ClassMapFactory()
{
var classMap = new BsonClassMap<TClass>();
classMap.AutoMap();
return classMap;
}
}
/// <summary>
/// Registers a class map if it is not already registered.
/// </summary>
/// <typeparam name="TClass">The class.</typeparam>
/// <param name="classMap">The class map.</param>
/// <returns>True if this call registered the class map, false if the class map was already registered.</returns>
public static bool TryRegisterClassMap<TClass>(BsonClassMap<TClass> classMap)
{
if (classMap == null)
{
throw new ArgumentNullException(nameof(classMap));
}
return TryRegisterClassMap(ClassMapFactory);
BsonClassMap<TClass> ClassMapFactory()
{
return classMap;
}
}
/// <summary>
/// Registers a class map if it is not already registered.
/// </summary>
/// <typeparam name="TClass">The class.</typeparam>
/// <param name="classMapInitializer">The class map initializer (only called if the class map is not already registered).</param>
/// <returns>True if this call registered the class map, false if the class map was already registered.</returns>
public static bool TryRegisterClassMap<TClass>(Action<BsonClassMap<TClass>> classMapInitializer)
{
if (classMapInitializer == null)
{
throw new ArgumentNullException(nameof(classMapInitializer));
}
return TryRegisterClassMap(ClassMapFactory);
BsonClassMap<TClass> ClassMapFactory()
{
return new BsonClassMap<TClass>(classMapInitializer);
}
}
/// <summary>
/// Registers a class map if it is not already registered.
/// </summary>
/// <typeparam name="TClass">The class.</typeparam>
/// <param name="classMapFactory">The class map factory (only called if the class map is not already registered).</param>
/// <returns>True if this call registered the class map, false if the class map was already registered.</returns>
public static bool TryRegisterClassMap<TClass>(Func<BsonClassMap<TClass>> classMapFactory)
{
if (classMapFactory == null)
{
throw new ArgumentNullException(nameof(classMapFactory));
}
BsonSerializer.ConfigLock.EnterReadLock();
try
{
if (__classMaps.ContainsKey(typeof(TClass)))
{
return false;
}
}
finally
{
BsonSerializer.ConfigLock.ExitReadLock();
}
BsonSerializer.ConfigLock.EnterWriteLock();
try
{
if (__classMaps.ContainsKey(typeof(TClass)))
{
return false;
}
else
{
// create a classMap for TClass and register it
var classMap = classMapFactory();
RegisterClassMap(classMap);
return true;
}
}
finally
{
BsonSerializer.ConfigLock.ExitWriteLock();
}
}
// public methods
/// <summary>
/// Automaps the class.
/// </summary>
public void AutoMap()
{
if (_frozen) { ThrowFrozenException(); }
AutoMapClass();
}
/// <summary>
/// Creates an instance of the class.
/// </summary>
/// <returns>An object.</returns>
public object CreateInstance()
{
if (!_frozen) { ThrowNotFrozenException(); }
var creator = GetCreator();
return creator.Invoke();
}
/// <inheritdoc/>
public override bool Equals(object obj)
{
if (object.ReferenceEquals(obj, null)) { return false; }
if (object.ReferenceEquals(this, obj)) { return true; }
return
GetType().Equals(obj.GetType()) &&
obj is BsonClassMap other &&
_frozen.Equals(true) && other._frozen.Equals(true) && // BsonClassMaps should only be equal if they are frozen
object.Equals(_baseClassMap, other._baseClassMap) &&
object.Equals(_classType, other._classType) &&
object.Equals(_creator, other._creator) &&
SequenceComparer.Equals(_creatorMaps, other._creatorMaps) &&
SequenceComparer.Equals(_declaredMemberMaps, other._declaredMemberMaps) &&
object.Equals(_discriminator, other._discriminator) &&
_discriminatorIsRequired.Equals(other._discriminatorIsRequired) &&
_extraElementsMemberIndex.Equals(other._extraElementsMemberIndex) &&
object.Equals(_extraElementsMemberMap, other._extraElementsMemberMap) &&
_hasRootClass.Equals(other._hasRootClass) &&
object.Equals(_idMemberMap, other._idMemberMap) &&
_ignoreExtraElements.Equals(other._ignoreExtraElements) &&
_ignoreExtraElementsIsInherited.Equals(other._ignoreExtraElementsIsInherited) &&
_isRootClass.Equals(other._isRootClass) &&
SequenceComparer.Equals(_knownTypes, other._knownTypes);
}
/// <inheritdoc/>
public override int GetHashCode() => 0;
/// <summary>
/// Freezes the class map.
/// </summary>
/// <returns>The frozen class map.</returns>
public BsonClassMap Freeze()
{
BsonSerializer.ConfigLock.EnterReadLock();
try
{
if (_frozen)
{
return this;
}
}
finally
{
BsonSerializer.ConfigLock.ExitReadLock();
}
BsonSerializer.ConfigLock.EnterWriteLock();
try
{
if (!_frozen)
{
__freezeNestingLevel++;
try
{
var baseType = _classType.GetTypeInfo().BaseType;
if (baseType != null)
{
if (_baseClassMap == null)
{
_baseClassMap = LookupClassMap(baseType);
}
_baseClassMap.Freeze();
_discriminatorIsRequired |= _baseClassMap._discriminatorIsRequired;
_hasRootClass |= (_isRootClass || _baseClassMap.HasRootClass);
_allMemberMaps.AddRange(_baseClassMap.AllMemberMaps);
if (_baseClassMap.IgnoreExtraElements && _baseClassMap.IgnoreExtraElementsIsInherited)
{
_ignoreExtraElements = true;
_ignoreExtraElementsIsInherited = true;
}
}
_declaredMemberMaps = _declaredMemberMaps.OrderBy(m => m.Order).ToList(); // we're counting on OrderBy being a stable sort
_allMemberMaps.AddRange(_declaredMemberMaps);
if (_idMemberMap == null)
{
// see if we can inherit the idMemberMap from our base class
if (_baseClassMap != null)
{
_idMemberMap = _baseClassMap.IdMemberMap;
}
}
else
{
if (_idMemberMap.ClassMap == this)
{
// conventions could have set this to an improper value
_idMemberMap.SetElementName("_id");
}
}
if (_extraElementsMemberMap == null)
{
// see if we can inherit the extraElementsMemberMap from our base class
if (_baseClassMap != null)
{
_extraElementsMemberMap = _baseClassMap.ExtraElementsMemberMap;
}
}
_extraElementsMemberIndex = -1;
for (int memberIndex = 0; memberIndex < _allMemberMaps.Count; ++memberIndex)
{
var memberMap = _allMemberMaps[memberIndex];
int conflictingMemberIndex;
if (!_elementTrie.TryGetValue(memberMap.ElementName, out conflictingMemberIndex))
{
_elementTrie.Add(memberMap.ElementName, memberIndex);
}
else
{
var conflictingMemberMap = _allMemberMaps[conflictingMemberIndex];
var fieldOrProperty = (memberMap.MemberInfo is FieldInfo) ? "field" : "property";
var conflictingFieldOrProperty = (conflictingMemberMap.MemberInfo is FieldInfo) ? "field" : "property";
var conflictingType = conflictingMemberMap.MemberInfo.DeclaringType;
string message;
if (conflictingType == _classType)
{
message = string.Format(
"The {0} '{1}' of type '{2}' cannot use element name '{3}' because it is already being used by {4} '{5}'.",
fieldOrProperty, memberMap.MemberName, _classType.FullName, memberMap.ElementName, conflictingFieldOrProperty, conflictingMemberMap.MemberName);
}
else
{
message = string.Format(
"The {0} '{1}' of type '{2}' cannot use element name '{3}' because it is already being used by {4} '{5}' of type '{6}'.",
fieldOrProperty, memberMap.MemberName, _classType.FullName, memberMap.ElementName, conflictingFieldOrProperty, conflictingMemberMap.MemberName, conflictingType.FullName);
}
throw new BsonSerializationException(message);
}
if (memberMap == _extraElementsMemberMap)
{
_extraElementsMemberIndex = memberIndex;
}
}
// mark this classMap frozen before we start working on knownTypes
// because we might get back to this same classMap while processing knownTypes
foreach (var creatorMap in _creatorMaps)
{
creatorMap.Freeze();
}
foreach (var memberMap in _declaredMemberMaps)
{
memberMap.Freeze();
}
_frozen = true;
// use a queue to postpone processing of known types until we get back to the first level call to Freeze
// this avoids infinite recursion when going back down the inheritance tree while processing known types
foreach (var knownType in _knownTypes)
{
__knownTypesQueue.Enqueue(knownType);
}
// if we are back to the first level go ahead and process any queued known types
if (__freezeNestingLevel == 1)
{
while (__knownTypesQueue.Count != 0)
{
var knownType = __knownTypesQueue.Dequeue();
LookupClassMap(knownType); // will AutoMap and/or Freeze knownType if necessary
}
}
}
finally
{
__freezeNestingLevel--;
}
}
}
finally
{
BsonSerializer.ConfigLock.ExitWriteLock();
}
return this;
}
/// <summary>
/// Gets a member map (only considers members declared in this class).
/// </summary>
/// <param name="memberName">The member name.</param>
/// <returns>The member map (or null if the member was not found).</returns>
public BsonMemberMap GetMemberMap(string memberName)
{
if (memberName == null)
{
throw new ArgumentNullException("memberName");
}
// can be called whether frozen or not
return _declaredMemberMaps.Find(m => m.MemberName == memberName);
}
/// <summary>
/// Gets the member map for a BSON element.
/// </summary>
/// <param name="elementName">The name of the element.</param>
/// <returns>The member map.</returns>
public BsonMemberMap GetMemberMapForElement(string elementName)
{
if (elementName == null)
{
throw new ArgumentNullException("elementName");
}
if (!_frozen) { ThrowNotFrozenException(); }
int memberIndex;
if (!_elementTrie.TryGetValue(elementName, out memberIndex))
{
return null;
}
var memberMap = _allMemberMaps[memberIndex];
return memberMap;
}
/// <summary>
/// Creates a creator map for a constructor and adds it to the class map.
/// </summary>
/// <param name="constructorInfo">The constructor info.</param>
/// <returns>The creator map (so method calls can be chained).</returns>
public BsonCreatorMap MapConstructor(ConstructorInfo constructorInfo)
{
if (constructorInfo == null)
{
throw new ArgumentNullException("constructorInfo");
}
EnsureMemberInfoIsForThisClass(constructorInfo);
if (_frozen) { ThrowFrozenException(); }
var creatorMap = _creatorMaps.FirstOrDefault(m => m.MemberInfo == constructorInfo);
if (creatorMap == null)
{
var @delegate = new CreatorMapDelegateCompiler().CompileConstructorDelegate(constructorInfo);
creatorMap = new BsonCreatorMap(this, constructorInfo, @delegate);
_creatorMaps.Add(creatorMap);
}
return creatorMap;
}
/// <summary>
/// Creates a creator map for a constructor and adds it to the class map.
/// </summary>
/// <param name="constructorInfo">The constructor info.</param>
/// <param name="argumentNames">The argument names.</param>
/// <returns>The creator map (so method calls can be chained).</returns>
public BsonCreatorMap MapConstructor(ConstructorInfo constructorInfo, params string[] argumentNames)
{
var creatorMap = MapConstructor(constructorInfo);
creatorMap.SetArguments(argumentNames);
return creatorMap;
}
/// <summary>
/// Creates a creator map and adds it to the class.
/// </summary>
/// <param name="delegate">The delegate.</param>
/// <returns>The factory method map (so method calls can be chained).</returns>
public BsonCreatorMap MapCreator(Delegate @delegate)
{
if (@delegate == null)
{
throw new ArgumentNullException("delegate");
}
if (_frozen) { ThrowFrozenException(); }
var creatorMap = new BsonCreatorMap(this, null, @delegate);
_creatorMaps.Add(creatorMap);
return creatorMap;
}
/// <summary>
/// Creates a creator map and adds it to the class.
/// </summary>
/// <param name="delegate">The delegate.</param>
/// <param name="argumentNames">The argument names.</param>
/// <returns>The factory method map (so method calls can be chained).</returns>
public BsonCreatorMap MapCreator(Delegate @delegate, params string[] argumentNames)
{
var creatorMap = MapCreator(@delegate);
creatorMap.SetArguments(argumentNames);
return creatorMap;
}
/// <summary>
/// Creates a member map for the extra elements field and adds it to the class map.
/// </summary>
/// <param name="fieldName">The name of the extra elements field.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapExtraElementsField(string fieldName)
{
if (fieldName == null)
{
throw new ArgumentNullException("fieldName");
}
if (_frozen) { ThrowFrozenException(); }
var fieldMap = MapField(fieldName);
SetExtraElementsMember(fieldMap);
return fieldMap;
}
/// <summary>
/// Creates a member map for the extra elements member and adds it to the class map.
/// </summary>
/// <param name="memberInfo">The member info for the extra elements member.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapExtraElementsMember(MemberInfo memberInfo)
{
if (memberInfo == null)
{
throw new ArgumentNullException("memberInfo");
}
if (_frozen) { ThrowFrozenException(); }
var memberMap = MapMember(memberInfo);
SetExtraElementsMember(memberMap);
return memberMap;
}
/// <summary>
/// Creates a member map for the extra elements property and adds it to the class map.
/// </summary>
/// <param name="propertyName">The name of the property.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapExtraElementsProperty(string propertyName)
{
if (propertyName == null)
{
throw new ArgumentNullException("propertyName");
}
if (_frozen) { ThrowFrozenException(); }
var propertyMap = MapProperty(propertyName);
SetExtraElementsMember(propertyMap);
return propertyMap;
}
/// <summary>
/// Creates a creator map for a factory method and adds it to the class.
/// </summary>
/// <param name="methodInfo">The method info.</param>
/// <returns>The creator map (so method calls can be chained).</returns>
public BsonCreatorMap MapFactoryMethod(MethodInfo methodInfo)
{
if (methodInfo == null)
{
throw new ArgumentNullException("methodInfo");
}
EnsureMemberInfoIsForThisClass(methodInfo);
if (_frozen) { ThrowFrozenException(); }
var creatorMap = _creatorMaps.FirstOrDefault(m => m.MemberInfo == methodInfo);
if (creatorMap == null)
{
var @delegate = new CreatorMapDelegateCompiler().CompileFactoryMethodDelegate(methodInfo);
creatorMap = new BsonCreatorMap(this, methodInfo, @delegate);
_creatorMaps.Add(creatorMap);
}
return creatorMap;
}
/// <summary>
/// Creates a creator map for a factory method and adds it to the class.
/// </summary>
/// <param name="methodInfo">The method info.</param>
/// <param name="argumentNames">The argument names.</param>
/// <returns>The creator map (so method calls can be chained).</returns>
public BsonCreatorMap MapFactoryMethod(MethodInfo methodInfo, params string[] argumentNames)
{
var creatorMap = MapFactoryMethod(methodInfo);
creatorMap.SetArguments(argumentNames);
return creatorMap;
}
/// <summary>
/// Creates a member map for a field and adds it to the class map.
/// </summary>
/// <param name="fieldName">The name of the field.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapField(string fieldName)
{
if (fieldName == null)
{
throw new ArgumentNullException("fieldName");
}
if (_frozen) { ThrowFrozenException(); }
var fieldInfo = _classType.GetTypeInfo().GetField(fieldName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly);
if (fieldInfo == null)
{
var message = string.Format("The class '{0}' does not have a field named '{1}'.", _classType.FullName, fieldName);
throw new BsonSerializationException(message);
}
return MapMember(fieldInfo);
}
/// <summary>
/// Creates a member map for the Id field and adds it to the class map.
/// </summary>
/// <param name="fieldName">The name of the Id field.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapIdField(string fieldName)
{
if (fieldName == null)
{
throw new ArgumentNullException("fieldName");
}
if (_frozen) { ThrowFrozenException(); }
var fieldMap = MapField(fieldName);
SetIdMember(fieldMap);
return fieldMap;
}
/// <summary>
/// Creates a member map for the Id member and adds it to the class map.
/// </summary>
/// <param name="memberInfo">The member info for the Id member.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapIdMember(MemberInfo memberInfo)
{
if (memberInfo == null)
{
throw new ArgumentNullException("memberInfo");
}
if (_frozen) { ThrowFrozenException(); }
var memberMap = MapMember(memberInfo);
SetIdMember(memberMap);
return memberMap;
}
/// <summary>
/// Creates a member map for the Id property and adds it to the class map.
/// </summary>
/// <param name="propertyName">The name of the Id property.</param>
/// <returns>The member map (so method calls can be chained).</returns>
public BsonMemberMap MapIdProperty(string propertyName)
{
if (propertyName == null)
{
throw new ArgumentNullException("propertyName");
}
if (_frozen) { ThrowFrozenException(); }
var propertyMap = MapProperty(propertyName);
SetIdMember(propertyMap);
return propertyMap;
}