| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- //
- // QueryWhereNode.cs
- //
- // Author:
- // Jérémie "Garuma" Laval <[email protected]>
- //
- // Copyright (c) 2010 Jérémie "Garuma" Laval
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #if NET_4_0
- using System;
- using System.Linq;
- using System.Threading;
- using System.Collections.Generic;
- namespace System.Linq.Parallel.QueryNodes
- {
- internal class QueryWhereNode<TSource> : QueryStreamNode<TSource, TSource>
- {
- Func<TSource, int, bool> indexedPredicate;
- Func<TSource, bool> predicate;
- internal QueryWhereNode (QueryBaseNode<TSource> parent, Func<TSource, bool> predicate)
- : base (parent, false)
- {
- this.predicate = predicate;
- }
- internal QueryWhereNode (QueryBaseNode<TSource> parent, Func<TSource, int, bool> predicate)
- : base (parent, true)
- {
- this.indexedPredicate = predicate;
- }
- internal override IEnumerable<TSource> GetSequential ()
- {
- IEnumerable<TSource> parent = Parent.GetSequential ();
- if (indexedPredicate != null)
- return parent.Where (indexedPredicate);
- else
- return parent.Where (predicate);
- }
- internal override IList<IEnumerable<TSource>> GetEnumerablesIndexed (QueryOptions options)
- {
- return Parent.GetOrderedEnumerables (options)
- .Select ((i) => i.Where ((e) => indexedPredicate (e.Value, (int)e.Key)).Select ((e) => e.Value))
- .ToList ();
- }
- internal override IList<IEnumerable<TSource>> GetEnumerablesNonIndexed (QueryOptions options)
- {
- return Parent.GetEnumerables (options)
- .Select ((i) => i.Where (predicate))
- .ToList ();
- }
- internal override IList<IEnumerable<KeyValuePair<long, TSource>>> GetOrderedEnumerables (QueryOptions options)
- {
- IList<IEnumerable<KeyValuePair<long, TSource>>> sources = Parent.GetOrderedEnumerables (options);
- Tuple<TSource, long, bool>[] store = new Tuple<TSource, long, bool>[sources.Count];
- long lastIndex = 0;
- Barrier barrier = new Barrier (sources.Count, delegate (Barrier b) {
- // Sort the store
- Array.Sort (store, ArraySortMethod);
- // Reassign a good index
- int i = 0;
- for (i = 0; i < store.Length && store[i].Item3; i++) {
- Tuple<TSource, long, bool> old = store[i];
- store[i] = Tuple.Create (old.Item1, lastIndex + i, old.Item3);
- }
- // Update lastIndex for next round
- lastIndex += i;
- });
- return sources
- .Select ((s, i) => GetEnumerator (s, barrier, store, i))
- .ToList ();
- }
- static int ArraySortMethod (Tuple<TSource, long, bool> lhs, Tuple<TSource, long, bool> rhs)
- {
- if (lhs.Item3 && !rhs.Item3)
- return -1;
- if (!lhs.Item3 && rhs.Item3)
- return 1;
- if (!lhs.Item3 && !rhs.Item3)
- return 0;
- return (lhs.Item2 < rhs.Item2) ? -1 : 1;
- }
- IEnumerable<KeyValuePair<long, TSource>> GetEnumerator (IEnumerable<KeyValuePair<long, TSource>> source,
- Barrier barrier,
- Tuple<TSource, long, bool>[] store, int index)
- {
- IEnumerator<KeyValuePair<long, TSource>> current = source.GetEnumerator ();
- bool result;
- Tuple<TSource, long, bool> reset = Tuple.Create (default (TSource), long.MaxValue, false);
- try {
- while (current.MoveNext ()) {
- KeyValuePair<long, TSource> curr = current.Current;
- result = IsIndexed ? indexedPredicate (curr.Value, (int)curr.Key) : predicate (curr.Value);
- store[index] = Tuple.Create (curr.Value, curr.Key, result);
- barrier.SignalAndWait ();
- Tuple<TSource, long, bool> value = store [index];
- if (value.Item3)
- yield return new KeyValuePair<long, TSource> (value.Item2, value.Item1);
- // Reset
- store[index] = reset;
- }
- } finally {
- // Remove our participation
- barrier.RemoveParticipant ();
- current.Dispose ();
- }
- }
- }
- }
- #endif
|