-
-
Notifications
You must be signed in to change notification settings - Fork 698
/
CollectionFormatter.cs
853 lines (727 loc) · 27.4 KB
/
CollectionFormatter.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
#if NETSTANDARD1_4
using System.Collections.Concurrent;
#endif
namespace MessagePack.Formatters
{
public class ArrayFormatter<T> : IMessagePackFormatter<T[]>
{
public int Serialize(ref byte[] bytes, int offset, T[] value, IFormatterResolver formatterResolver)
{
if (value == null)
{
return MessagePackBinary.WriteNil(ref bytes, offset);
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<T>();
offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, value.Length);
for (int i = 0; i < value.Length; i++)
{
offset += formatter.Serialize(ref bytes, offset, value[i], formatterResolver);
}
return offset - startOffset;
}
}
public T[] Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
{
if (MessagePackBinary.IsNil(bytes, offset))
{
readSize = 1;
return null;
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<T>();
var len = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
offset += readSize;
var array = new T[len];
for (int i = 0; i < array.Length; i++)
{
array[i] = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
offset += readSize;
}
readSize = offset - startOffset;
return array;
}
}
}
public class ByteArraySegmentFormatter : IMessagePackFormatter<ArraySegment<byte>>
{
public static readonly ByteArraySegmentFormatter Instance = new ByteArraySegmentFormatter();
ByteArraySegmentFormatter()
{
}
public int Serialize(ref byte[] bytes, int offset, ArraySegment<byte> value, IFormatterResolver formatterResolver)
{
if (value.Array == null)
{
return MessagePackBinary.WriteNil(ref bytes, offset);
}
else
{
return MessagePackBinary.WriteBytes(ref bytes, offset, value.Array, value.Offset, value.Count);
}
}
public ArraySegment<byte> Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
{
if (MessagePackBinary.IsNil(bytes, offset))
{
readSize = 1;
return default(ArraySegment<byte>);
}
else
{
var binary = MessagePackBinary.ReadBytes(bytes, offset, out readSize);
return new ArraySegment<byte>(binary, 0, binary.Length);
}
}
}
public class ArraySegmentFormatter<T> : IMessagePackFormatter<ArraySegment<T>>
{
public int Serialize(ref byte[] bytes, int offset, ArraySegment<T> value, IFormatterResolver formatterResolver)
{
if (value.Array == null)
{
return MessagePackBinary.WriteNil(ref bytes, offset);
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<T>();
offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, value.Count);
var array = value.Array;
for (int i = 0; i < value.Count; i++)
{
var item = array[value.Offset + i];
offset += formatter.Serialize(ref bytes, offset, item, formatterResolver);
}
return offset - startOffset;
}
}
public ArraySegment<T> Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
{
if (MessagePackBinary.IsNil(bytes, offset))
{
readSize = 1;
return default(ArraySegment<T>);
}
else
{
var array = formatterResolver.GetFormatterWithVerify<T[]>().Deserialize(bytes, offset, formatterResolver, out readSize);
return new ArraySegment<T>(array, 0, array.Length);
}
}
}
// List<T> is popular format, should avoid abstraction.
public class ListFormatter<T> : IMessagePackFormatter<List<T>>
{
public int Serialize(ref byte[] bytes, int offset, List<T> value, IFormatterResolver formatterResolver)
{
if (value == null)
{
return MessagePackBinary.WriteNil(ref bytes, offset);
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<T>();
var c = value.Count;
offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, c);
for (int i = 0; i < c; i++)
{
offset += formatter.Serialize(ref bytes, offset, value[i], formatterResolver);
}
return offset - startOffset;
}
}
public List<T> Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
{
if (MessagePackBinary.IsNil(bytes, offset))
{
readSize = 1;
return null;
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<T>();
var len = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
offset += readSize;
var list = new List<T>(len);
for (int i = 0; i < len; i++)
{
list.Add(formatter.Deserialize(bytes, offset, formatterResolver, out readSize));
offset += readSize;
}
readSize = offset - startOffset;
return list;
}
}
}
public abstract class CollectionFormatterBase<TElement, TIntermediate, TEnumerator, TCollection> : IMessagePackFormatter<TCollection>
where TCollection : IEnumerable<TElement>
where TEnumerator : IEnumerator<TElement>
{
public int Serialize(ref byte[] bytes, int offset, TCollection value, IFormatterResolver formatterResolver)
{
if (value == null)
{
return MessagePackBinary.WriteNil(ref bytes, offset);
}
else
{
// Optimize iteration(array is fastest)
var array = value as TElement[];
if (array != null)
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<TElement>();
offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, array.Length);
foreach (var item in array)
{
offset += formatter.Serialize(ref bytes, offset, item, formatterResolver);
}
return offset - startOffset;
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<TElement>();
// knows count or not.
var seqCount = GetCount(value);
if (seqCount != null)
{
offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, seqCount.Value);
// Unity's foreach struct enumerator causes boxing so iterate manually.
var e = GetSourceEnumerator(value);
try
{
while (e.MoveNext())
{
#if NETSTANDARD1_4
offset += formatter.Serialize(ref bytes, offset, e.Current, formatterResolver);
#else
offset += formatter.Serialize(ref bytes, (int)offset, (TElement)e.Current, (IFormatterResolver)formatterResolver);
#endif
}
}
finally
{
e.Dispose();
}
return offset - startOffset;
}
else
{
// write message first -> open header space -> write header
var writeStarOffset = offset;
var count = 0;
var moveCount = 0;
// count = 16 <= 65535, header len is "3" so choose default space.
offset += 3;
var e = GetSourceEnumerator(value);
try
{
while (e.MoveNext())
{
count++;
#if NETSTANDARD1_4
var writeSize = formatter.Serialize(ref bytes, offset, e.Current, formatterResolver);
#else
var writeSize = formatter.Serialize(ref bytes, (int)offset, (TElement)e.Current, (IFormatterResolver)formatterResolver);
#endif
moveCount += writeSize;
offset += writeSize;
}
}
finally
{
e.Dispose();
}
var headerLength = MessagePackBinary.GetArrayHeaderLength(count);
if (headerLength != 3)
{
if (headerLength == 1) offset -= 2; // 1
else offset += 2; // 5
MessagePackBinary.EnsureCapacity(ref bytes, offset, headerLength);
Buffer.BlockCopy(bytes, writeStarOffset + 3, bytes, writeStarOffset + headerLength, moveCount);
}
MessagePackBinary.WriteArrayHeader(ref bytes, writeStarOffset, count);
return offset - startOffset;
}
}
}
}
public TCollection Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
{
if (MessagePackBinary.IsNil(bytes, offset))
{
readSize = 1;
return default(TCollection);
}
else
{
var startOffset = offset;
var formatter = formatterResolver.GetFormatterWithVerify<TElement>();
var len = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
offset += readSize;
var list = Create(len);
for (int i = 0; i < len; i++)
{
Add(list, i, formatter.Deserialize(bytes, offset, formatterResolver, out readSize));
offset += readSize;
}
readSize = offset - startOffset;
return Complete(list);
}
}
// abstraction for serialize
protected virtual int? GetCount(TCollection sequence)
{
var collection = sequence as ICollection<TElement>;
if (collection != null)
{
return collection.Count;
}
#if NETSTANDARD1_4
else
{
var c2 = sequence as IReadOnlyCollection<TElement>;
if (c2 != null)
{
return c2.Count;
}
}
#endif
return null;
}
// Some collections can use struct iterator, this is optimization path
protected abstract TEnumerator GetSourceEnumerator(TCollection source);
// abstraction for deserialize
protected abstract TIntermediate Create(int count);
protected abstract void Add(TIntermediate collection, int index, TElement value);
protected abstract TCollection Complete(TIntermediate intermediateCollection);
}
public abstract class CollectionFormatterBase<TElement, TIntermediate, TCollection> : CollectionFormatterBase<TElement, TIntermediate, IEnumerator<TElement>, TCollection>
where TCollection : IEnumerable<TElement>
{
protected override IEnumerator<TElement> GetSourceEnumerator(TCollection source)
{
return source.GetEnumerator();
}
}
public abstract class CollectionFormatterBase<TElement, TCollection> : CollectionFormatterBase<TElement, TCollection, TCollection>
where TCollection : IEnumerable<TElement>
{
protected sealed override TCollection Complete(TCollection intermediateCollection)
{
return intermediateCollection;
}
}
public class GenericCollectionFormatter<TElement, TCollection> : CollectionFormatterBase<TElement, TCollection>
where TCollection : ICollection<TElement>, new()
{
protected override TCollection Create(int count)
{
return new TCollection();
}
protected override void Add(TCollection collection, int index, TElement value)
{
collection.Add(value);
}
}
public class LinkedListFormatter<T> : CollectionFormatterBase<T, LinkedList<T>, LinkedList<T>.Enumerator, LinkedList<T>>
{
protected override void Add(LinkedList<T> collection, int index, T value)
{
collection.AddLast(value);
}
protected override LinkedList<T> Complete(LinkedList<T> intermediateCollection)
{
return intermediateCollection;
}
protected override LinkedList<T> Create(int count)
{
return new LinkedList<T>();
}
protected override LinkedList<T>.Enumerator GetSourceEnumerator(LinkedList<T> source)
{
return source.GetEnumerator();
}
}
public class QeueueFormatter<T> : CollectionFormatterBase<T, Queue<T>, Queue<T>.Enumerator, Queue<T>>
{
protected override int? GetCount(Queue<T> sequence)
{
return sequence.Count;
}
protected override void Add(Queue<T> collection, int index, T value)
{
collection.Enqueue(value);
}
protected override Queue<T> Create(int count)
{
return new Queue<T>(count);
}
protected override Queue<T>.Enumerator GetSourceEnumerator(Queue<T> source)
{
return source.GetEnumerator();
}
protected override Queue<T> Complete(Queue<T> intermediateCollection)
{
return intermediateCollection;
}
}
// should deserialize reverse order.
public class StackFormatter<T> : CollectionFormatterBase<T, T[], Stack<T>.Enumerator, Stack<T>>
{
protected override int? GetCount(Stack<T> sequence)
{
return sequence.Count;
}
protected override void Add(T[] collection, int index, T value)
{
// add reverse
collection[collection.Length - 1 - index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override Stack<T>.Enumerator GetSourceEnumerator(Stack<T> source)
{
return source.GetEnumerator();
}
protected override Stack<T> Complete(T[] intermediateCollection)
{
return new Stack<T>(intermediateCollection);
}
}
public class HashSetFormatter<T> : CollectionFormatterBase<T, HashSet<T>, HashSet<T>.Enumerator, HashSet<T>>
{
protected override int? GetCount(HashSet<T> sequence)
{
return sequence.Count;
}
protected override void Add(HashSet<T> collection, int index, T value)
{
collection.Add(value);
}
protected override HashSet<T> Complete(HashSet<T> intermediateCollection)
{
return intermediateCollection;
}
protected override HashSet<T> Create(int count)
{
return new HashSet<T>();
}
protected override HashSet<T>.Enumerator GetSourceEnumerator(HashSet<T> source)
{
return source.GetEnumerator();
}
}
public class ReadOnlyCollectionFormatter<T> : CollectionFormatterBase<T, T[], ReadOnlyCollection<T>>
{
protected override void Add(T[] collection, int index, T value)
{
collection[index] = value;
}
protected override ReadOnlyCollection<T> Complete(T[] intermediateCollection)
{
return new ReadOnlyCollection<T>(intermediateCollection);
}
protected override T[] Create(int count)
{
return new T[count];
}
}
public class InterfaceListFormatter<T> : CollectionFormatterBase<T, T[], IList<T>>
{
protected override void Add(T[] collection, int index, T value)
{
collection[index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override IList<T> Complete(T[] intermediateCollection)
{
return intermediateCollection;
}
}
public class InterfaceCollectionFormatter<T> : CollectionFormatterBase<T, T[], ICollection<T>>
{
protected override void Add(T[] collection, int index, T value)
{
collection[index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override ICollection<T> Complete(T[] intermediateCollection)
{
return intermediateCollection;
}
}
public class InterfaceEnumerableFormatter<T> : CollectionFormatterBase<T, T[], IEnumerable<T>>
{
protected override void Add(T[] collection, int index, T value)
{
collection[index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override IEnumerable<T> Complete(T[] intermediateCollection)
{
return intermediateCollection;
}
}
// [Key, [Array]]
public class InterfaceGroupingFormatter<TKey, TElement> : IMessagePackFormatter<IGrouping<TKey, TElement>>
{
public int Serialize(ref byte[] bytes, int offset, IGrouping<TKey, TElement> value, IFormatterResolver formatterResolver)
{
if (value == null)
{
return MessagePackBinary.WriteNil(ref bytes, offset);
}
else
{
var startOffset = offset;
offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, 2);
offset += formatterResolver.GetFormatterWithVerify<TKey>().Serialize(ref bytes, offset, value.Key, formatterResolver);
offset += formatterResolver.GetFormatterWithVerify<IEnumerable<TElement>>().Serialize(ref bytes, offset, value, formatterResolver);
return offset - startOffset;
}
}
public IGrouping<TKey, TElement> Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
{
if (MessagePackBinary.IsNil(bytes, offset))
{
readSize = 1;
return null;
}
else
{
var startOffset = offset;
var count = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
offset += readSize;
if (count != 2) throw new InvalidOperationException("Invalid Grouping format.");
var key = formatterResolver.GetFormatterWithVerify<TKey>().Deserialize(bytes, offset, formatterResolver, out readSize);
offset += readSize;
var value = formatterResolver.GetFormatterWithVerify<IEnumerable<TElement>>().Deserialize(bytes, offset, formatterResolver, out readSize);
offset += readSize;
readSize = offset - startOffset;
return new Grouping<TKey, TElement>(key, value);
}
}
}
public class InterfaceLookupFormatter<TKey, TElement> : CollectionFormatterBase<IGrouping<TKey, TElement>, Dictionary<TKey, IGrouping<TKey, TElement>>, ILookup<TKey, TElement>>
{
protected override void Add(Dictionary<TKey, IGrouping<TKey, TElement>> collection, int index, IGrouping<TKey, TElement> value)
{
collection.Add(value.Key, value);
}
protected override ILookup<TKey, TElement> Complete(Dictionary<TKey, IGrouping<TKey, TElement>> intermediateCollection)
{
return new Lookup<TKey, TElement>(intermediateCollection);
}
protected override Dictionary<TKey, IGrouping<TKey, TElement>> Create(int count)
{
return new Dictionary<TKey, IGrouping<TKey, TElement>>(count);
}
}
class Grouping<TKey, TElement> : IGrouping<TKey, TElement>
{
readonly TKey key;
readonly IEnumerable<TElement> elements;
public Grouping(TKey key, IEnumerable<TElement> elements)
{
this.key = key;
this.elements = elements;
}
public TKey Key
{
get
{
return key;
}
}
public IEnumerator<TElement> GetEnumerator()
{
return elements.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return elements.GetEnumerator();
}
}
class Lookup<TKey, TElement> : ILookup<TKey, TElement>
{
readonly Dictionary<TKey, IGrouping<TKey, TElement>> groupings;
public Lookup(Dictionary<TKey, IGrouping<TKey, TElement>> groupings)
{
this.groupings = groupings;
}
public IEnumerable<TElement> this[TKey key]
{
get
{
return groupings[key];
}
}
public int Count
{
get
{
return groupings.Count;
}
}
public bool Contains(TKey key)
{
return groupings.ContainsKey(key);
}
public IEnumerator<IGrouping<TKey, TElement>> GetEnumerator()
{
return groupings.Values.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return groupings.Values.GetEnumerator();
}
}
#if NETSTANDARD1_4
public class ObservableCollectionFormatter<T> : CollectionFormatterBase<T, ObservableCollection<T>>
{
protected override void Add(ObservableCollection<T> collection, int index, T value)
{
collection.Add(value);
}
protected override ObservableCollection<T> Create(int count)
{
return new ObservableCollection<T>();
}
}
public class ReadOnlyObservableCollectionFormatter<T> : CollectionFormatterBase<T, ObservableCollection<T>, ReadOnlyObservableCollection<T>>
{
protected override void Add(ObservableCollection<T> collection, int index, T value)
{
collection.Add(value);
}
protected override ObservableCollection<T> Create(int count)
{
return new ObservableCollection<T>();
}
protected override ReadOnlyObservableCollection<T> Complete(ObservableCollection<T> intermediateCollection)
{
return new ReadOnlyObservableCollection<T>(intermediateCollection);
}
}
public class InterfaceReadOnlyListFormatter<T> : CollectionFormatterBase<T, T[], IReadOnlyList<T>>
{
protected override void Add(T[] collection, int index, T value)
{
collection[index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override IReadOnlyList<T> Complete(T[] intermediateCollection)
{
return intermediateCollection;
}
}
public class InterfaceReadOnlyCollectionFormatter<T> : CollectionFormatterBase<T, T[], IReadOnlyCollection<T>>
{
protected override void Add(T[] collection, int index, T value)
{
collection[index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override IReadOnlyCollection<T> Complete(T[] intermediateCollection)
{
return intermediateCollection;
}
}
public class InterfaceSetFormatter<T> : CollectionFormatterBase<T, HashSet<T>, ISet<T>>
{
protected override void Add(HashSet<T> collection, int index, T value)
{
collection.Add(value);
}
protected override ISet<T> Complete(HashSet<T> intermediateCollection)
{
return intermediateCollection;
}
protected override HashSet<T> Create(int count)
{
return new HashSet<T>();
}
}
public class ConcurrentBagFormatter<T> : CollectionFormatterBase<T, System.Collections.Concurrent.ConcurrentBag<T>>
{
protected override int? GetCount(ConcurrentBag<T> sequence)
{
return sequence.Count;
}
protected override void Add(ConcurrentBag<T> collection, int index, T value)
{
collection.Add(value);
}
protected override ConcurrentBag<T> Create(int count)
{
return new ConcurrentBag<T>();
}
}
public class ConcurrentQueueFormatter<T> : CollectionFormatterBase<T, System.Collections.Concurrent.ConcurrentQueue<T>>
{
protected override int? GetCount(ConcurrentQueue<T> sequence)
{
return sequence.Count;
}
protected override void Add(ConcurrentQueue<T> collection, int index, T value)
{
collection.Enqueue(value);
}
protected override ConcurrentQueue<T> Create(int count)
{
return new ConcurrentQueue<T>();
}
}
public class ConcurrentStackFormatter<T> : CollectionFormatterBase<T, T[], ConcurrentStack<T>>
{
protected override int? GetCount(ConcurrentStack<T> sequence)
{
return sequence.Count;
}
protected override void Add(T[] collection, int index, T value)
{
// add reverse
collection[collection.Length - 1 - index] = value;
}
protected override T[] Create(int count)
{
return new T[count];
}
protected override ConcurrentStack<T> Complete(T[] intermediateCollection)
{
return new ConcurrentStack<T>(intermediateCollection);
}
}
#endif
}