ListPartitioner.cs
Go to the documentation of this file.
1 //
2 // ListPartitioner.cs
3 //
4 // Author:
5 // Jérémie "Garuma" Laval <jeremie.laval@gmail.com>
6 //
7 // Copyright (c) 2009 Jérémie "Garuma" Laval
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26 
27 #if NET_4_0
28 
29 using System;
30 using System.Threading;
32 using System.Runtime.InteropServices;
33 
34 namespace System.Collections.Concurrent.Partitioners
35 {
36  // Represent a Range partitioner
37  internal class ListPartitioner<T> : OrderablePartitioner<T>
38  {
39  IList<T> source;
40 
41  public ListPartitioner (IList<T> source) : base (true, true, true)
42  {
43  this.source = source;
44  }
45 
46  public override IList<IEnumerator<KeyValuePair<long, T>>> GetOrderablePartitions (int partitionCount)
47  {
48  if (partitionCount <= 0)
49  throw new ArgumentOutOfRangeException ("partitionCount");
50 
51  IEnumerator<KeyValuePair<long, T>>[] enumerators
52  = new IEnumerator<KeyValuePair<long, T>>[partitionCount];
53 
54  int count = source.Count / partitionCount;
55  int extra = 0;
56 
57  if (source.Count < partitionCount) {
58  count = 1;
59  } else {
60  extra = source.Count % partitionCount;
61  if (extra > 0)
62  ++count;
63  }
64 
65  int currentIndex = 0;
66 
67  Range[] ranges = new Range[enumerators.Length];
68  for (int i = 0; i < ranges.Length; i++) {
69  ranges[i] = new Range (currentIndex,
70  currentIndex + count);
71  currentIndex += count;
72  if (--extra == 0)
73  --count;
74  }
75 
76  for (int i = 0; i < enumerators.Length; i++) {
77  enumerators[i] = GetEnumeratorForRange (ranges, i);
78  }
79 
80  return enumerators;
81  }
82 
83  class Range
84  {
85  public int Actual;
86  public readonly int LastIndex;
87 
88  public Range (int frm, int lastIndex)
89  {
90  Actual = frm;
91  LastIndex = lastIndex;
92  }
93  }
94 
95  IEnumerator<KeyValuePair<long, T>> GetEnumeratorForRange (Range[] ranges, int workerIndex)
96  {
97  if (ranges[workerIndex].Actual >= source.Count)
98  return GetEmpty ();
99 
100  return GetEnumeratorForRangeInternal (ranges, workerIndex);
101  }
102 
103  IEnumerator<KeyValuePair<long, T>> GetEmpty ()
104  {
105  yield break;
106  }
107 
108  IEnumerator<KeyValuePair<long, T>> GetEnumeratorForRangeInternal (Range[] ranges, int workerIndex)
109  {
110  Range range = ranges[workerIndex];
111  int lastIndex = range.LastIndex;
112  int index = range.Actual;
113 
114  for (int i = index; i < lastIndex; i = ++range.Actual) {
115  yield return new KeyValuePair<long, T> (i, source[i]);
116  }
117  }
118  }
119 }
120 #endif