forked from msgpack/msgpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessagePackObjectDictionary.cs
More file actions
1076 lines (955 loc) · 28.5 KB
/
MessagePackObjectDictionary.cs
File metadata and controls
1076 lines (955 loc) · 28.5 KB
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
#region -- License Terms --
//
// MessagePack for CLI
//
// Copyright (C) 2010-2012 FUJIWARA, Yusuke
//
// 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.
//
#endregion -- License Terms --
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.Linq;
using System.Runtime.Serialization;
namespace MsgPack
{
/// <summary>
/// Implements <see cref="IDictionary{TKey,TValue}"/> for <see cref="MessagePackObject"/>.
/// </summary>
/// <remarks>
/// This dictionary handles <see cref="MessagePackObject"/> type semantics for the key.
/// Additionally, this dictionary implements 'freezing' feature.
/// For details, see <see cref="IsFrozen"/>, <see cref="Freeze"/>, and <see cref="AsFrozen"/>.
/// </remarks>
#if !SILVERLIGHT && !NETFX_CORE
[Serializable]
#endif
[DebuggerTypeProxy( typeof( DictionaryDebuggerProxy<,> ) )]
public partial class MessagePackObjectDictionary :
IDictionary<MessagePackObject, MessagePackObject>, IDictionary
{
private const int _threashold = 10;
private const int _listInitialCapacity = _threashold;
private const int _dictionaryInitialCapacity = _threashold * 2;
private List<MessagePackObject> _keys;
private List<MessagePackObject> _values;
private Dictionary<MessagePackObject, MessagePackObject> _dictionary;
private int _version;
private bool _isFrozen;
/// <summary>
/// Gets a value indicating whether this instance is frozen.
/// </summary>
/// <value>
/// <c>true</c> if this instance is frozen; otherwise, <c>false</c>.
/// </value>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public bool IsFrozen
{
get { return this._isFrozen; }
}
/// <summary>
/// Gets the number of elements contained in the <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <returns>
/// The number of elements contained in the <see cref="MessagePackObjectDictionary"/>.
/// </returns>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public int Count
{
get
{
this.AssertInvariant();
if ( this._dictionary == null )
{
return this._keys.Count;
}
else
{
return this._dictionary.Count;
}
}
}
/// <summary>
/// Gets or sets the element with the specified key.
/// </summary>
/// <value>
/// The element with the specified key.
/// </value>
/// <param name="key">Key for geting or seting value.</param>
/// <exception cref="ArgumentNullException">
/// <paramref name="key"/> is <see cref="MessagePackObject.Nil"/>.
/// </exception>
/// <exception cref="T:System.Collections.Generic.KeyNotFoundException">
/// The property is retrieved and <paramref name="key"/> is not found.
/// </exception>
/// <exception cref="InvalidOperationException">
/// The property is set and this instance is frozen.
/// </exception>
/// <remarks>
/// <para>
/// Note that tiny integers are considered equal regardless of its CLI <see cref="Type"/>,
/// and UTF-8 encoded bytes are considered equals to <see cref="String"/>.
/// </para>
/// <para>
/// This method approaches an O(1) operation.
/// </para>
/// </remarks>
public MessagePackObject this[ MessagePackObject key ]
{
get
{
if ( key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
Contract.EndContractBlock();
MessagePackObject result;
if ( !this.TryGetValue( key, out result ) )
{
throw new KeyNotFoundException( String.Format( CultureInfo.CurrentCulture, "Key '{0}'({1} type) does not exist in this dictionary.", key, key.UnderlyingType ) );
}
return result;
}
set
{
if ( key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
this.AssertInvariant();
this.AddCore( key, value, true );
}
}
#if !WINDOWS_PHONE
/// <summary>
/// Gets an <see cref="KeySet"/> containing the keys of the <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <returns>
/// An <see cref="KeySet"/> containing the keys of the object.
/// This value will not be <c>null</c>.
/// </returns>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public KeySet Keys
{
get
{
this.AssertInvariant();
return new KeySet( this );
}
}
#else
/// <summary>
/// Gets an <see cref="KeyCollection"/> containing the keys of the <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <returns>
/// An <see cref="KeyCollection"/> containing the keys of the object.
/// This value will not be <c>null</c>.
/// </returns>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public KeyCollection Keys
{
get
{
this.AssertInvariant();
return new KeyCollection( this );
}
}
#endif
/// <summary>
/// Gets an <see cref="ValueCollection"/> containing the values of the <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <returns>
/// An <see cref="ValueCollection"/> containing the values of the object.
/// This value will not be <c>null</c>.
/// </returns>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public ValueCollection Values
{
get
{
this.AssertInvariant();
return new ValueCollection( this );
}
}
ICollection<MessagePackObject> IDictionary<MessagePackObject, MessagePackObject>.Keys
{
get { return this.Keys; }
}
ICollection<MessagePackObject> IDictionary<MessagePackObject, MessagePackObject>.Values
{
get { return this.Values; }
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
bool ICollection<KeyValuePair<MessagePackObject, MessagePackObject>>.IsReadOnly
{
get { return this.IsFrozen; }
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
bool IDictionary.IsFixedSize
{
get { return this.IsFrozen; }
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
bool IDictionary.IsReadOnly
{
get { return this.IsFrozen; }
}
ICollection IDictionary.Keys
{
get { return this._keys; }
}
ICollection IDictionary.Values
{
get { return this.Values; }
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
object IDictionary.this[ object key ]
{
get
{
if ( key == null )
{
throw new ArgumentNullException( "key" );
}
Contract.EndContractBlock();
var typedKey = ValidateObjectArgument( key, "key" );
if ( typedKey.IsNil )
{
ThrowKeyNotNilException( "key" );
}
MessagePackObject value;
if ( !this.TryGetValue( typedKey, out value ) )
{
return null;
}
return value;
}
set
{
if ( key == null )
{
throw new ArgumentNullException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
var typedKey = ValidateObjectArgument( key, "key" );
if ( typedKey.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this[ typedKey ] = ValidateObjectArgument( value, "value" );
}
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
bool ICollection.IsSynchronized
{
get { return false; }
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
object ICollection.SyncRoot
{
get { return this; }
}
/// <summary>
/// Initializes an empty new instance of the <see cref="MessagePackObjectDictionary"/> class with default capacity.
/// </summary>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public MessagePackObjectDictionary()
{
this._keys = new List<MessagePackObject>( _listInitialCapacity );
this._values = new List<MessagePackObject>( _listInitialCapacity );
}
/// <summary>
/// Initializes an empty new instance of the <see cref="MessagePackObjectDictionary"/> class with specified initial capacity.
/// </summary>
/// <param name="initialCapacity">The initial capacity.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="initialCapacity"/> is negative.
/// </exception>
/// <remarks>
/// This operation is an O(1) operation.
/// </remarks>
public MessagePackObjectDictionary( int initialCapacity )
{
if ( initialCapacity < 0 )
{
throw new ArgumentOutOfRangeException( "initialCapacity" );
}
Contract.EndContractBlock();
if ( initialCapacity <= _threashold )
{
this._keys = new List<MessagePackObject>( initialCapacity );
this._values = new List<MessagePackObject>( initialCapacity );
}
else
{
this._dictionary = new Dictionary<MessagePackObject, MessagePackObject>( initialCapacity, MessagePackObjectEqualityComparer.Instance );
}
}
/// <summary>
/// Initializes a new instance of the <see cref="MessagePackObjectDictionary"/> class.
/// </summary>
/// <param name="dictionary">The dictionary to be copied from.</param>
/// <exception cref="ArgumentNullException">
/// <paramref name="dictionary"/> is <c>null</c>.
/// </exception>
/// <exception cref="ArgumentException">
/// Failed to copy from <paramref name="dictionary"/>.
/// </exception>
/// <remarks>
/// This constructor takes <em>O(N)</em> time, <em>N</em> is <see cref="P:ICollection{T}.Count"/> of <paramref name="dictionary"/>.
/// Initial capacity will be <see cref="P:ICollection{T}.Count"/> of <paramref name="dictionary"/>.
/// </remarks>
public MessagePackObjectDictionary( IDictionary<MessagePackObject, MessagePackObject> dictionary )
{
if ( dictionary == null )
{
throw new ArgumentNullException( "dictionary" );
}
Contract.EndContractBlock();
if ( dictionary.Count <= _threashold )
{
this._keys = new List<MessagePackObject>( dictionary.Count );
this._values = new List<MessagePackObject>( dictionary.Count );
}
else
{
this._dictionary = new Dictionary<MessagePackObject, MessagePackObject>( dictionary.Count, MessagePackObjectEqualityComparer.Instance );
}
try
{
foreach ( var kv in dictionary )
{
this.AddCore( kv.Key, kv.Value, false );
}
}
catch ( ArgumentException ex )
{
#if SILVERLIGHT
throw new ArgumentException( "Failed to copy specified dictionary.", ex );
#else
throw new ArgumentException( "Failed to copy specified dictionary.", "dictionary", ex );
#endif
}
}
private static void ThrowKeyNotNilException( string parameterName )
{
throw new ArgumentNullException( parameterName, "Key cannot be nil." );
}
private static void ThrowDuplicatedKeyException( MessagePackObject key, string parameterName )
{
throw new ArgumentException( String.Format( CultureInfo.CurrentCulture, "Key '{0}'({1} type) already exists in this dictionary.", key, key.UnderlyingType ), parameterName );
}
private void VerifyIsNotFrozen()
{
if ( this._isFrozen )
{
throw new InvalidOperationException( "This dictionary is frozen." );
}
}
[Conditional( "DEBUG" )]
private void AssertInvariant()
{
if ( this._dictionary == null )
{
Contract.Assert( this._keys != null );
Contract.Assert( this._values != null );
Contract.Assert( this._keys.Count == this._values.Count );
Contract.Assert( this._keys.Distinct( MessagePackObjectEqualityComparer.Instance ).Count() == this._keys.Count );
}
else
{
Contract.Assert( this._keys == null );
Contract.Assert( this._values == null );
}
}
private static MessagePackObject ValidateObjectArgument( object obj, string parameterName )
{
var result = TryValidateObjectArgument( obj );
if ( result == null )
{
throw new ArgumentException( String.Format( CultureInfo.CurrentCulture, "Cannot convert '{1}' to {0}.", typeof( MessagePackObject ).Name, obj.GetType() ), parameterName );
}
return result.Value;
}
private static MessagePackObject? TryValidateObjectArgument( object value )
{
if ( value == null )
{
return MessagePackObject.Nil;
}
if ( value is MessagePackObject )
{
return ( MessagePackObject )value;
}
if ( value is MessagePackObject? )
{
return ( MessagePackObject? )value ?? MessagePackObject.Nil;
}
byte[] asBytes;
if ( ( asBytes = value as byte[] ) != null )
{
return asBytes;
}
string asString;
if ( ( asString = value as string ) != null )
{
return asString;
}
MessagePackString asMessagePackString;
if ( ( asMessagePackString = value as MessagePackString ) != null )
{
return new MessagePackObject( asMessagePackString );
}
#if NETFX_CORE
switch ( WinRTCompatibility.GetTypeCode( value.GetType() ) )
#else
switch ( Type.GetTypeCode( value.GetType() ) )
#endif
{
case TypeCode.Boolean:
{
return ( bool )value;
}
case TypeCode.Byte:
{
return ( byte )value;
}
case TypeCode.DateTime:
{
return MessagePackConvert.FromDateTime( ( DateTime )value );
}
case TypeCode.DBNull:
case TypeCode.Empty:
{
return MessagePackObject.Nil;
}
case TypeCode.Double:
{
return ( double )value;
}
case TypeCode.Int16:
{
return ( short )value;
}
case TypeCode.Int32:
{
return ( int )value;
}
case TypeCode.Int64:
{
return ( long )value;
}
case TypeCode.SByte:
{
return ( sbyte )value;
}
case TypeCode.Single:
{
return ( float )value;
}
case TypeCode.String:
{
return value.ToString();
}
case TypeCode.UInt16:
{
return ( ushort )value;
}
case TypeCode.UInt32:
{
return ( uint )value;
}
case TypeCode.UInt64:
{
return ( ulong )value;
}
case TypeCode.Char:
case TypeCode.Decimal:
case TypeCode.Object:
default:
{
return null;
}
}
}
/// <summary>
/// Determines whether the <see cref="MessagePackObjectDictionary"/> contains an element with the specified key.
/// </summary>
/// <param name="key">The key to locate in the <see cref="MessagePackObjectDictionary"/>.</param>
/// <exception cref="ArgumentNullException">
/// <paramref name="key"/> is <see cref="MessagePackObject.Nil"/>.
/// </exception>
/// <returns>
/// <c>true</c> if the <see cref="MessagePackObjectDictionary"/> contains an element with the key; otherwise, <c>false</c>.
/// </returns>
/// <remarks>
/// This method approaches an O(1) operation.
/// </remarks>
public bool ContainsKey( MessagePackObject key )
{
if ( key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
Contract.EndContractBlock();
this.AssertInvariant();
if ( this._dictionary == null )
{
return this._keys.Contains( key, MessagePackObjectEqualityComparer.Instance );
}
else
{
return this._dictionary.ContainsKey( key );
}
}
/// <summary>
/// Determines whether the <see cref="MessagePackObjectDictionary"/> contains an element with the specified value.
/// </summary>
/// <param name="value">The value to locate in the <see cref="MessagePackObjectDictionary"/>.</param>
/// <returns>
/// <c>true</c> if the <see cref="MessagePackObjectDictionary"/> contains an element with the value; otherwise, <c>false</c>.
/// </returns>
/// <remarks>
/// This method approaches an O(<em>N</em>) operation where <em>N</em> is <see cref="Count"/>.
/// </remarks>
public bool ContainsValue( MessagePackObject value )
{
this.AssertInvariant();
if ( this._dictionary == null )
{
return this._values.Contains( value, MessagePackObjectEqualityComparer.Instance );
}
else
{
return this._dictionary.ContainsValue( value );
}
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
bool ICollection<KeyValuePair<MessagePackObject, MessagePackObject>>.Contains( KeyValuePair<MessagePackObject, MessagePackObject> item )
{
MessagePackObject value;
if ( !this.TryGetValue( item.Key, out value ) )
{
return false;
}
return item.Value == value;
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
bool IDictionary.Contains( object key )
{
if ( key == null )
{
return false;
}
var typedKey = TryValidateObjectArgument( key );
if ( typedKey.GetValueOrDefault().IsNil )
{
return false;
}
{
return this.ContainsKey( typedKey.Value );
}
}
/// <summary>
/// Gets the value associated with the specified key.
/// </summary>
/// <param name="key">
/// The key whose value to get.
/// </param>
/// <param name="value">
/// When this method returns, the value associated with the specified key, if the key is found;
/// otherwise, the default value for the type of the <paramref name="value"/> parameter.
/// This parameter is passed uninitialized.
/// </param>
/// <returns>
/// <c>true</c> if this dictionary contains an element with the specified key; otherwise, <c>false</c>.
/// </returns>
/// <exception cref="ArgumentNullException">
/// <paramref name="key"/> is <see cref="MessagePackObject.Nil"/>.
/// </exception>
/// <remarks>
/// <para>
/// Note that tiny integers are considered equal regardless of its CLI <see cref="Type"/>,
/// and UTF-8 encoded bytes are considered equals to <see cref="String"/>.
/// </para>
/// <para>
/// This method approaches an O(1) operation.
/// </para>
/// </remarks>
public bool TryGetValue( MessagePackObject key, out MessagePackObject value )
{
if ( key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
Contract.EndContractBlock();
this.AssertInvariant();
if ( this._dictionary == null )
{
int index = this._keys.FindIndex( item => item == key );
if ( index < 0 )
{
value = MessagePackObject.Nil;
return false;
}
else
{
value = this._values[ index ];
return true;
}
}
else
{
return this._dictionary.TryGetValue( key, out value );
}
}
/// <summary>
/// Adds the specified key and value to the dictionary.
/// </summary>
/// <param name="key">
/// The key of the element to add.
/// </param>
/// <param name="value">
/// The value of the element to add. The value can be <c>null</c> for reference types.
/// </param>
/// <returns>
/// An element with the same key already does not exist in the dictionary and sucess to add then newly added node;
/// otherwise <c>null</c>.
/// </returns>
/// <exception cref="ArgumentException">
/// <paramref name="key"/> already exists in this dictionary.
/// Note that tiny integers are considered equal regardless of its CLI <see cref="Type"/>,
/// and UTF-8 encoded bytes are considered equals to <see cref="String"/>.
/// </exception>
/// <exception cref="ArgumentNullException">
/// <paramref name="key"/> is <see cref="MessagePackObject.Nil"/>.
/// </exception>
/// <remarks>
/// If <see cref="Count"/> is less than the capacity, this method approaches an O(1) operation.
/// If the capacity must be increased to accommodate the new element,
/// this method becomes an O(<em>N</em>) operation, where <em>N</em> is <see cref="Count"/>.
/// </remarks>
public void Add( MessagePackObject key, MessagePackObject value )
{
if ( key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
this.AddCore( key, value, false );
}
private void AddCore( MessagePackObject key, MessagePackObject value, bool allowOverwrite )
{
Contract.Assert( !key.IsNil );
if ( this._dictionary == null )
{
if ( this._keys.Count < _threashold )
{
int index = this._keys.FindIndex( item => item == key );
if ( index < 0 )
{
this._keys.Add( key );
this._values.Add( value );
}
else
{
if ( !allowOverwrite )
{
ThrowDuplicatedKeyException( key, "key" );
}
this._values[ index ] = value;
}
unchecked
{
this._version++;
}
return;
}
if ( this._keys.Count == _threashold && allowOverwrite )
{
int index = this._keys.FindIndex( item => item == key );
if ( 0 <= index )
{
this._values[ index ] = value;
unchecked
{
this._version++;
}
return;
}
}
// Swith to hashtable base
this._dictionary = new Dictionary<MessagePackObject, MessagePackObject>( _dictionaryInitialCapacity, MessagePackObjectEqualityComparer.Instance );
for ( int i = 0; i < this._keys.Count; i++ )
{
this._dictionary.Add( this._keys[ i ], this._values[ i ] );
}
this._keys = null;
this._values = null;
}
if ( allowOverwrite )
{
this._dictionary[ key ] = value;
}
else
{
try
{
this._dictionary.Add( key, value );
}
catch ( ArgumentException )
{
ThrowDuplicatedKeyException( key, "key" );
}
}
unchecked
{
this._version++;
}
}
void ICollection<KeyValuePair<MessagePackObject, MessagePackObject>>.Add( KeyValuePair<MessagePackObject, MessagePackObject> item )
{
if ( item.Key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
this.AddCore( item.Key, item.Value, false );
}
void IDictionary.Add( object key, object value )
{
if ( key == null )
{
throw new ArgumentNullException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
var typedKey = ValidateObjectArgument( key, "key" );
if ( typedKey.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.AddCore( typedKey, ValidateObjectArgument( value, "value" ), false );
}
/// <summary>
/// Removes the element with the specified key from the <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <param name="key">The key of the element to remove.</param>
/// <returns>
/// <c>true</c> if the element is successfully removed; otherwise, <c>false</c>.
/// This method also returns false if <paramref name="key"/> was not found in the original <see cref="MessagePackObjectDictionary"/>.
/// </returns>
/// <exception cref="ArgumentNullException">
/// <paramref name="key"/> is <see cref="MessagePackObject.Nil"/>.
/// </exception>
/// <remarks>
/// This method approaches an O(1) operation.
/// </remarks>
public bool Remove( MessagePackObject key )
{
if ( key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
return this.RemoveCore( key, default( MessagePackObject ), false );
}
private bool RemoveCore( MessagePackObject key, MessagePackObject value, bool checkValue )
{
Contract.Assert( !key.IsNil );
this.AssertInvariant();
if ( this._dictionary == null )
{
int index = this._keys.FindIndex( item => item == key );
if ( index < 0 )
{
return false;
}
if ( checkValue && this._values[ index ] != value )
{
return false;
}
this._keys.RemoveAt( index );
this._values.RemoveAt( index );
}
else
{
if ( checkValue )
{
if ( !( this._dictionary as ICollection<KeyValuePair<MessagePackObject, MessagePackObject>> ).Remove(
new KeyValuePair<MessagePackObject, MessagePackObject>( key, value ) ) )
{
return false;
}
}
else
{
if ( !this._dictionary.Remove( key ) )
{
return false;
}
}
}
unchecked
{
this._version++;
}
return true;
}
bool ICollection<KeyValuePair<MessagePackObject, MessagePackObject>>.Remove( KeyValuePair<MessagePackObject, MessagePackObject> item )
{
if ( item.Key.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
return this.RemoveCore( item.Key, item.Value, true );
}
void IDictionary.Remove( object key )
{
if ( key == null )
{
throw new ArgumentNullException( "key" );
}
this.VerifyIsNotFrozen();
Contract.EndContractBlock();
var typedKey = ValidateObjectArgument( key, "key" );
if ( typedKey.IsNil )
{
ThrowKeyNotNilException( "key" );
}
this.RemoveCore( typedKey, default( MessagePackObject ), false );
}
/// <summary>
/// Removes all items from the <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <remarks>
/// This method approaches an O(<em>N</em>) operation, where <em>N</em> is <see cref="Count"/>.
/// </remarks>
public void Clear()
{
this.VerifyIsNotFrozen();
this.AssertInvariant();
if ( this._dictionary == null )
{
this._keys.Clear();
this._values.Clear();
}
else
{
this._dictionary.Clear();
}
unchecked
{
this._version++;
}
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]
void ICollection<KeyValuePair<MessagePackObject, MessagePackObject>>.CopyTo( KeyValuePair<MessagePackObject, MessagePackObject>[] array, int arrayIndex )
{
CollectionOperation.CopyTo( this, this.Count, 0, array, arrayIndex, this.Count );
}
[SuppressMessage( "Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "Child types should never call this property." )]