| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118 |
- #if NET_4_0
- //
- // ParallelEnumerable.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.
- using System;
- using System.Threading;
- using System.Collections;
- using System.Collections.Generic;
- using System.Collections.Concurrent;
- namespace System.Linq
- {
- public static class ParallelEnumerable
- {
- #region Range & Repeat
- public static ParallelQuery<int> Range (int start, int count)
- {
- if (int.MaxValue - start < count)
- throw new ArgumentOutOfRangeException ("count", "start + count - 1 is larger than Int32.MaxValue");
- if (count < 0)
- throw new ArgumentOutOfRangeException ("count", "count is less than 0");
- return (new RangeList (start, count)).AsParallel ();
- }
- public static ParallelQuery<TResult> Repeat<TResult> (TResult obj, int count)
- {
- if (count < 0)
- throw new ArgumentOutOfRangeException ("count", "count is less than 0");
- return (new RepeatList<TResult> (obj, count)).AsParallel ();
- }
- #endregion
- #region Empty
- public static ParallelQuery<TResult> Empty<TResult> ()
- {
- return Repeat<TResult> (default (TResult), 0);
- }
- #endregion
- #region AsParallel
- public static ParallelQuery<TSource> AsParallel<TSource> (this IEnumerable<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new QueryStartNode<TSource> (source));
- }
- public static ParallelQuery<TSource> AsParallel<TSource> (this Partitioner<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new QueryStartNode<TSource> (source));
- }
- public static ParallelQuery AsParallel (this IEnumerable source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<object> (new QueryStartNode<object> (source.Cast<object> ()));
- }
- public static IEnumerable<TSource> AsEnumerable<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.AsSequential ();
- }
- public static IEnumerable<TSource> AsSequential<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Node.GetSequential ();
- }
- #endregion
- #region AsOrdered / AsUnordered
- public static ParallelQuery<TSource> AsOrdered<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new QueryAsOrderedNode<TSource> (source.Node));
- }
- public static ParallelQuery<TSource> AsUnordered<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new QueryAsUnorderedNode<TSource> (source.Node));
- }
- public static ParallelQuery AsOrdered (this ParallelQuery source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.TypedQuery.AsOrdered ();
- }
- #endregion
- #region With*
- public static ParallelQuery<TSource> WithExecutionMode<TSource> (this ParallelQuery<TSource> source,
- ParallelExecutionMode executionMode)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new ParallelExecutionModeNode<TSource> (executionMode, source.Node));
- }
- public static ParallelQuery<TSource> WithCancellation<TSource> (this ParallelQuery<TSource> source,
- CancellationToken cancellationToken)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new CancellationTokenNode<TSource> (cancellationToken, source.Node));
- }
- public static ParallelQuery<TSource> WithMergeOptions<TSource> (this ParallelQuery<TSource> source,
- ParallelMergeOptions mergeOptions)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new ParallelMergeOptionsNode<TSource> (mergeOptions, source.Node));
- }
- public static ParallelQuery<TSource> WithDegreeOfParallelism<TSource> (this ParallelQuery<TSource> source,
- int degreeParallelism)
- {
- if (degreeParallelism < 1 || degreeParallelism > 63)
- throw new ArgumentException ("degreeOfParallelism is less than 1 or greater than 63", "degreeParallelism");
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new DegreeOfParallelismNode<TSource> (degreeParallelism, source.Node));
- }
- internal static ParallelQuery<TSource> WithImplementerToken<TSource> (this ParallelQuery<TSource> source,
- CancellationTokenSource token)
- {
- return new ParallelQuery<TSource> (new ImplementerTokenNode<TSource> (token, source.Node));
- }
- #endregion
- #region Select
- public static ParallelQuery<TResult> Select<TSource, TResult> (this ParallelQuery<TSource> source, Func<TSource, TResult> selector)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (selector == null)
- throw new ArgumentNullException ("selector");
- return new ParallelQuery<TResult> (new QuerySelectNode<TResult, TSource> (source.Node, selector));
- }
- public static ParallelQuery<TResult> Select<TSource, TResult> (this ParallelQuery<TSource> source, Func<TSource, int, TResult> selector)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (selector == null)
- throw new ArgumentNullException ("selector");
- return new ParallelQuery<TResult> (new QuerySelectNode<TResult, TSource> (source.Node, selector));
- }
- #endregion
-
- #region SelectMany
- public static ParallelQuery<TResult> SelectMany<TSource, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, IEnumerable<TResult>> selector)
- {
- return source.SelectMany (selector, (s, e) => e);
- }
- public static ParallelQuery<TResult> SelectMany<TSource, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, int, IEnumerable<TResult>> selector)
- {
- return source.SelectMany (selector, (s, e) => e);
- }
-
- public static ParallelQuery<TResult> SelectMany<TSource, TCollection, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, IEnumerable<TCollection>> collectionSelector,
- Func<TSource, TCollection, TResult> resultSelector)
- {
- return new ParallelQuery<TResult> (new QuerySelectManyNode<TSource, TCollection, TResult> (source.Node,
- collectionSelector,
- resultSelector));
- }
-
- public static ParallelQuery<TResult> SelectMany<TSource, TCollection, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, int, IEnumerable<TCollection>> collectionSelector,
- Func<TSource, TCollection, TResult> resultSelector)
- {
- return new ParallelQuery<TResult> (new QuerySelectManyNode<TSource, TCollection, TResult> (source.Node,
- collectionSelector,
- resultSelector));
- }
- #endregion
- #region Where
- public static ParallelQuery<TSource> Where<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return new ParallelQuery<TSource> (new QueryWhereNode<TSource> (source.Node, predicate));
- }
- public static ParallelQuery<TSource> Where<TSource> (this ParallelQuery<TSource> source, Func<TSource, int, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return new ParallelQuery<TSource> (new QueryWhereNode<TSource> (source.Node, predicate));
- }
- #endregion
- #region Aggregate
- public static TSource Aggregate<TSource> (this ParallelQuery<TSource> source, Func<TSource, TSource, TSource> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Aggregate<TSource, TSource, TSource> ((Func<TSource>)null,
- func,
- func,
- (e) => e);
- }
- public static TAccumulate Aggregate<TSource, TAccumulate> (this ParallelQuery<TSource> source,
- TAccumulate seed,
- Func<TAccumulate, TSource, TAccumulate> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Aggregate (seed, func, (e) => e);
- }
- public static TResult Aggregate<TSource, TAccumulate, TResult> (this ParallelQuery<TSource> source,
- TAccumulate seed,
- Func<TAccumulate, TSource, TAccumulate> func,
- Func<TAccumulate, TResult> resultSelector)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- if (resultSelector == null)
- throw new ArgumentNullException ("resultSelector");
- TAccumulate accumulator = seed;
- foreach (TSource value in source)
- accumulator = func (accumulator, value);
- return resultSelector (accumulator);
- }
- public static TResult Aggregate<TSource, TAccumulate, TResult> (this ParallelQuery<TSource> source,
- TAccumulate seed,
- Func<TAccumulate, TSource, TAccumulate> updateAccumulatorFunc,
- Func<TAccumulate, TAccumulate, TAccumulate> combineAccumulatorsFunc,
- Func<TAccumulate, TResult> resultSelector)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (updateAccumulatorFunc == null)
- throw new ArgumentNullException ("updateAccumulatorFunc");
- if (combineAccumulatorsFunc == null)
- throw new ArgumentNullException ("combineAccumulatorsFunc");
- if (resultSelector == null)
- throw new ArgumentNullException ("resultSelector");
- return source.Aggregate (() => seed, updateAccumulatorFunc, combineAccumulatorsFunc, resultSelector);
- }
- public static TResult Aggregate<TSource, TAccumulate, TResult> (this ParallelQuery<TSource> source,
- Func<TAccumulate> seedFunc,
- Func<TAccumulate, TSource, TAccumulate> updateAccumulatorFunc,
- Func<TAccumulate, TAccumulate, TAccumulate> combineAccumulatorsFunc,
- Func<TAccumulate, TResult> resultSelector)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (seedFunc == null)
- throw new ArgumentNullException ("seedFunc");
- if (updateAccumulatorFunc == null)
- throw new ArgumentNullException ("updateAccumulatorFunc");
- if (combineAccumulatorsFunc == null)
- throw new ArgumentNullException ("combineAccumulatorsFunc");
- if (resultSelector == null)
- throw new ArgumentNullException ("resultSelector");
- TAccumulate accumulator = default (TAccumulate);
- ParallelExecuter.ProcessAndAggregate<TSource, TAccumulate> (source.Node, seedFunc, updateAccumulatorFunc, (list) => {
- accumulator = list [0];
- for (int i = 1; i < list.Count; i++)
- accumulator = combineAccumulatorsFunc (accumulator, list[i]);
- });
- return resultSelector (accumulator);;
- }
- #endregion
- #region ForAll
- public static void ForAll<TSource> (this ParallelQuery<TSource> source, Action<TSource> action)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (action == null)
- throw new ArgumentNullException ("action");
- ParallelExecuter.ProcessAndBlock (source.Node, action);
- }
- #endregion
- #region OrderBy
- public static OrderedParallelQuery<TSource> OrderByDescending<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IComparer<TKey> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (keySelector == null)
- throw new ArgumentNullException ("keySelector");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- Comparison<TSource> comparison = (e1, e2) => -comparer.Compare (keySelector (e1), keySelector (e2));
- return new OrderedParallelQuery<TSource> (new QueryOrderByNode<TSource> (source.Node, comparison));
- }
- public static OrderedParallelQuery<TSource> OrderByDescending<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return OrderByDescending (source, keySelector, Comparer<TKey>.Default);
- }
- public static OrderedParallelQuery<TSource> OrderBy<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return OrderBy (source, keySelector, Comparer<TKey>.Default);
- }
- public static OrderedParallelQuery<TSource> OrderBy<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IComparer<TKey> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (keySelector == null)
- throw new ArgumentNullException ("keySelector");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- Comparison<TSource> comparison = (e1, e2) => comparer.Compare (keySelector (e1), keySelector (e2));
- return new OrderedParallelQuery<TSource> (new QueryOrderByNode<TSource> (source.Node, comparison));
- }
- #endregion
- #region ThenBy
- public static OrderedParallelQuery<TSource> ThenBy<TSource, TKey> (this OrderedParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return ThenBy (source, keySelector, Comparer<TKey>.Default);
- }
- public static OrderedParallelQuery<TSource> ThenBy<TSource, TKey> (this OrderedParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IComparer<TKey> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (keySelector == null)
- throw new ArgumentNullException ("keySelector");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- Comparison<TSource> comparison = (e1, e2) => comparer.Compare (keySelector (e1), keySelector (e2));
- return new OrderedParallelQuery<TSource> (new QueryOrderByNode<TSource> (source.Node, comparison));
- }
- public static OrderedParallelQuery<TSource> ThenByDescending<TSource, TKey> (this OrderedParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return ThenByDescending (source, keySelector, Comparer<TKey>.Default);
- }
- public static OrderedParallelQuery<TSource> ThenByDescending<TSource, TKey> (this OrderedParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IComparer<TKey> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (keySelector == null)
- throw new ArgumentNullException ("keySelector");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- Comparison<TSource> comparison = (e1, e2) => -comparer.Compare (keySelector (e1), keySelector (e2));
- return new OrderedParallelQuery<TSource> (new QueryOrderByNode<TSource> (source.Node, comparison));
- }
- #endregion
- #region All
- public static bool All<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- CancellationTokenSource src = new CancellationTokenSource ();
- ParallelQuery<TSource> innerQuery = source.WithImplementerToken (src);
- bool result = true;
- innerQuery.ForAll ((e) => {
- if (!predicate (e)) {
- result = false;
- src.Cancel ();
- }
- });
- return result;
- }
- #endregion
- #region Any
- public static bool Any<TSource> (this ParallelQuery<TSource> source)
- {
- return Any<TSource> (source, (_) => true);
- }
- public static bool Any<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return !source.All ((e) => !predicate (e));
- }
- #endregion
- #region Contains
- public static bool Contains<TSource> (this ParallelQuery<TSource> source, TSource value)
- {
- return Contains<TSource> (source, value, EqualityComparer<TSource>.Default);
- }
- public static bool Contains<TSource> (this ParallelQuery<TSource> source, TSource value, IEqualityComparer<TSource> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- return Any<TSource> (source, (e) => comparer.Equals (value));
- }
- #endregion
- #region SequenceEqual
- public static bool SequenceEqual<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second)
- {
- if (first == null)
- throw new ArgumentNullException ("first");
- if (second == null)
- throw new ArgumentNullException ("second");
- return first.SequenceEqual (second, EqualityComparer<TSource>.Default);
- }
- public static bool SequenceEqual<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- if (first == null)
- throw new ArgumentNullException ("first");
- if (second == null)
- throw new ArgumentNullException ("second");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- CancellationTokenSource source = new CancellationTokenSource ();
- ParallelQuery<bool> innerQuery
- = first.Zip (second, (e1, e2) => comparer.Equals (e1, e2)).Where ((e) => !e).WithImplementerToken (source);
- bool result = true;
- innerQuery.ForAll ((value) => {
- result = false;
- source.Cancel ();
- });
- return result;
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static bool SequenceEqual<TSource> (this ParallelQuery<TSource> first, IEnumerable<TSource> second)
- {
- throw new NotSupportedException ();
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static bool SequenceEqual<TSource> (this ParallelQuery<TSource> first,
- IEnumerable<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- throw new NotSupportedException ();
- }
- #endregion
-
- #region GroupBy
- public static ParallelQuery<IGrouping<TKey, TSource>> GroupBy<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return source.GroupBy (keySelector, EqualityComparer<TKey>.Default);
- }
-
- public static ParallelQuery<IGrouping<TKey, TSource>> GroupBy<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IEqualityComparer<TKey> comparer)
- {
- return source.GroupBy (keySelector, (e) => e, comparer);
- }
-
- public static ParallelQuery<IGrouping<TKey, TElement>> GroupBy<TSource, TKey, TElement> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector)
- {
- return source.GroupBy (keySelector, elementSelector, EqualityComparer<TKey>.Default);
- }
-
- public static ParallelQuery<TResult> GroupBy<TSource, TKey, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TKey, IEnumerable<TSource>, TResult> resultSelector)
- {
- return source.GroupBy (keySelector)
- .Select ((g) => resultSelector (g.Key, (IEnumerable<TSource>)g));
- }
-
- public static ParallelQuery<IGrouping<TKey, TElement>> GroupBy<TSource, TKey, TElement> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector,
- IEqualityComparer<TKey> comparer)
- {
- throw new NotImplementedException ();
- }
-
- public static ParallelQuery<TResult> GroupBy<TSource, TKey, TElement, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector,
- Func<TKey, IEnumerable<TElement>, TResult> resultSelector)
- {
- return source.GroupBy (keySelector, elementSelector)
- .Select ((g) => resultSelector (g.Key, (IEnumerable<TElement>)g));
- }
-
- public static ParallelQuery<TResult> GroupBy<TSource, TKey, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TKey, IEnumerable<TSource>, TResult> resultSelector,
- IEqualityComparer<TKey> comparer)
- {
- return source.GroupBy (keySelector, comparer)
- .Select ((g) => resultSelector (g.Key, (IEnumerable<TSource>)g));
- }
-
- public static ParallelQuery<TResult> GroupBy<TSource, TKey, TElement, TResult> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector,
- Func<TKey, IEnumerable<TElement>, TResult> resultSelector,
- IEqualityComparer<TKey> comparer)
- {
- return source.GroupBy (keySelector, elementSelector, comparer)
- .Select ((g) => resultSelector (g.Key, (IEnumerable<TElement>)g));
- }
- #endregion
- #region GroupJoin
- public static ParallelQuery<TResult> GroupJoin<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- ParallelQuery<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, IEnumerable<TInner>, TResult> resultSelector)
- {
- return outer.GroupJoin (inner, outerKeySelector, innerKeySelector, resultSelector, EqualityComparer<TKey>.Default);
- }
-
- public static ParallelQuery<TResult> GroupJoin<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- ParallelQuery<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, IEnumerable<TInner>, TResult> resultSelector,
- IEqualityComparer<TKey> comparer)
- {
- throw new NotImplementedException ();
- }
-
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TResult> GroupJoin<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- IEnumerable<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, IEnumerable<TInner>, TResult> resultSelector)
- {
- throw new NotSupportedException ();
- }
-
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TResult> GroupJoin<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- IEnumerable<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, IEnumerable<TInner>, TResult> resultSelector,
- IEqualityComparer<TKey> comparer)
- {
- throw new NotImplementedException ();
- }
- #endregion
- #region ElementAt
- public static TSource ElementAt<TSource> (this ParallelQuery<TSource> source, int index)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (index < 0)
- throw new ArgumentOutOfRangeException ("index");
- if (index == 0) {
- try {
- return source.First ();
- } catch (InvalidOperationException) {
- throw new ArgumentOutOfRangeException ("index");
- }
- }
- TSource result = default (TSource);
- ParallelQuery<TSource> innerQuery = source.Where ((e, i) => i == index);
- try {
- result = innerQuery.First ();
- } catch (InvalidOperationException) {
- throw new ArgumentOutOfRangeException ("index");
- }
- return result;
- }
- public static TSource ElementAtOrDefault<TSource> (this ParallelQuery<TSource> source, int index)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- try {
- return source.ElementAt (index);
- } catch (ArgumentOutOfRangeException) {
- return default (TSource);
- }
- }
- #endregion
- #region Intersect
- public static ParallelQuery<TSource> Intersect<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second)
- {
- return Intersect<TSource> (first, second, EqualityComparer<TSource>.Default);
- }
- public static ParallelQuery<TSource> Intersect<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- if (first == null)
- throw new ArgumentNullException ("first");
- if (second == null)
- throw new ArgumentNullException ("second");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- return new ParallelQuery<TSource> (new QuerySetNode<TSource> (SetInclusionDefaults.Intersect, comparer, first.Node, second.Node));
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Intersect<TSource> (this ParallelQuery<TSource> first, IEnumerable<TSource> second)
- {
- throw new NotSupportedException ();
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Intersect<TSource> (this ParallelQuery<TSource> first,
- IEnumerable<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- throw new NotSupportedException ();
- }
- #endregion
- #region Join
- public static ParallelQuery<TResult> Join<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- ParallelQuery<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, TInner, TResult> resultSelector)
- {
- return outer.Join (inner, outerKeySelector, innerKeySelector, resultSelector, EqualityComparer<TKey>.Default);
- }
-
- public static ParallelQuery<TResult> Join<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- ParallelQuery<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, TInner, TResult> resultSelector,
- IEqualityComparer<TKey> comparer)
- {
- throw new NotImplementedException ();
- }
-
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TResult> Join<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- IEnumerable<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, TInner, TResult> resultSelector)
- {
- throw new NotSupportedException ();
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TResult> Join<TOuter, TInner, TKey, TResult> (this ParallelQuery<TOuter> outer,
- IEnumerable<TInner> inner,
- Func<TOuter, TKey> outerKeySelector,
- Func<TInner, TKey> innerKeySelector,
- Func<TOuter, TInner, TResult> resultSelector,
- IEqualityComparer<TKey> comparer)
- {
- throw new NotSupportedException ();
- }
- #endregion
- #region Except
- public static ParallelQuery<TSource> Except<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second)
- {
- return Except<TSource> (first, second, EqualityComparer<TSource>.Default);
- }
- public static ParallelQuery<TSource> Except<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- if (first == null)
- throw new ArgumentNullException ("first");
- if (second == null)
- throw new ArgumentNullException ("second");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- return new ParallelQuery<TSource> (new QuerySetNode<TSource> (SetInclusionDefaults.Except,
- comparer, first.Node, second.Node));
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Except<TSource> (this ParallelQuery<TSource> first,
- IEnumerable<TSource> second)
- {
- throw new NotSupportedException ();
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Except<TSource> (this ParallelQuery<TSource> first,
- IEnumerable<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- throw new NotSupportedException ();
- }
- #endregion
- #region Distinct
- public static ParallelQuery<TSource> Distinct<TSource> (this ParallelQuery<TSource> source)
- {
- return Distinct<TSource> (source, EqualityComparer<TSource>.Default);
- }
- public static ParallelQuery<TSource> Distinct<TSource> (this ParallelQuery<TSource> source, IEqualityComparer<TSource> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- return new ParallelQuery<TSource> (new QuerySetNode<TSource> (SetInclusionDefaults.Distinct, comparer,
- source.Node, null));
- }
- #endregion
- #region Union
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Union<TSource> (this ParallelQuery<TSource> first,
- IEnumerable<TSource> second)
- {
- throw new NotSupportedException ();
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Union<TSource>(this ParallelQuery<TSource> first,
- IEnumerable<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- throw new NotSupportedException ();
- }
- public static ParallelQuery<TSource> Union<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second)
- {
- return first.Union (second, EqualityComparer<TSource>.Default);
- }
- public static ParallelQuery<TSource> Union<TSource> (this ParallelQuery<TSource> first,
- ParallelQuery<TSource> second,
- IEqualityComparer<TSource> comparer)
- {
- if (first == null)
- throw new ArgumentNullException ("first");
- if (second == null)
- throw new ArgumentNullException ("second");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- return new ParallelQuery<TSource> (new QuerySetNode<TSource> (SetInclusionDefaults.Union, comparer, first.Node, second.Node));
- }
- #endregion
- #region Take
- // TODO : introduce some early break up here, use ImplementerToken
- public static ParallelQuery<TSource> Take<TSource> (this ParallelQuery<TSource> source, int count)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Where ((e, i) => i < count);
- }
- public static ParallelQuery<TSource> TakeWhile<TSource> (this ParallelQuery<TSource> source,
- Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where ((e) => predicate (e));
- }
- public static ParallelQuery<TSource> TakeWhile<TSource> (this ParallelQuery<TSource> source,
- Func<TSource, int, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where ((e, i) => predicate (e, i));
- }
- #endregion
- #region Skip
- public static ParallelQuery<TSource> Skip<TSource> (this ParallelQuery<TSource> source, int count)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Node.IsOrdered () ?
- source.Where ((e, i) => i >= count) :
- source.Where ((e) => count < 0 || Interlocked.Decrement (ref count) < 0);
- }
- public static ParallelQuery<TSource> SkipWhile<TSource> (this ParallelQuery<TSource> source,
- Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where ((e) => !predicate (e));
- }
- public static ParallelQuery<TSource> SkipWhile<TSource> (this ParallelQuery<TSource> source,
- Func<TSource, int, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where ((e, i) => !predicate (e, i));
- }
- #endregion
- #region Single
- static TSource SingleInternal<TSource> (this ParallelQuery<TSource> source, params TSource[] init)
- {
- TSource result = default(TSource);
- bool hasValue = false;
- foreach (TSource element in source) {
- if (hasValue)
- throw new InvalidOperationException ("The input sequence contains more than one element.");
- result = element;
- hasValue = true;
- }
- if (!hasValue && init.Length != 0) {
- result = init[0];
- hasValue = true;
- }
- if (!hasValue)
- throw new InvalidOperationException ("The input sequence is empty.");
- return result;
- }
- public static TSource Single<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return SingleInternal<TSource> (source);
- }
- public static TSource Single<TSource> (this ParallelQuery<TSource> source,
- Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where (predicate).Single ();
- }
- public static TSource SingleOrDefault<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return SingleInternal<TSource> (source, default (TSource));
- }
- public static TSource SingleOrDefault<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where (predicate).SingleOrDefault ();
- }
- #endregion
- #region Count
- public static int Count<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate<TSource, int, int> (() => 0,
- (acc, e) => acc + 1,
- (acc1, acc2) => acc1 + acc2,
- (result) => result);
- }
- public static int Count<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where (predicate).Count ();
- }
- public static long LongCount<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate<TSource, long, long> (() => 0,
- (acc, e) => acc + 1,
- (acc1, acc2) => acc1 + acc2,
- (result) => result);
- }
- public static long LongCount<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (predicate == null)
- throw new ArgumentNullException ("predicate");
- return source.Where (predicate).LongCount ();
- }
- #endregion
- #region Average
- public static double Average (this ParallelQuery<int> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (() => new int[2],
- (acc, e) => { acc[0] += e; acc[1]++; return acc; },
- (acc1, acc2) => { acc1[0] += acc2[0]; acc1[1] += acc2[1]; return acc1; },
- (acc) => acc[0] / ((double)acc[1]));
- }
- public static double Average (this ParallelQuery<long> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (() => new long[2],
- (acc, e) => { acc[0] += e; acc[1]++; return acc; },
- (acc1, acc2) => { acc1[0] += acc2[0]; acc1[1] += acc2[1]; return acc1; },
- (acc) => acc[0] / ((double)acc[1]));
- }
- public static decimal Average (this ParallelQuery<decimal> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (() => new decimal[2],
- (acc, e) => { acc[0] += e; acc[1]++; return acc; },
- (acc1, acc2) => { acc1[0] += acc2[0]; acc1[1] += acc2[1]; return acc1; },
- (acc) => acc[0] / acc[1]);
- }
- public static double Average (this ParallelQuery<double> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (() => new double[2],
- (acc, e) => { acc[0] += e; acc[1]++; return acc; },
- (acc1, acc2) => { acc1[0] += acc2[0]; acc1[1] += acc2[1]; return acc1; },
- (acc) => acc[0] / ((double)acc[1]));
- }
- public static float Average (this ParallelQuery<float> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (() => new float[2],
- (acc, e) => { acc[0] += e; acc[1]++; return acc; },
- (acc1, acc2) => { acc1[0] += acc2[0]; acc1[1] += acc2[1]; return acc1; },
- (acc) => acc[0] / acc[1]);
- }
- #endregion
- #region More Average
- public static double? Average (this ParallelQuery<int?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Average ();;
- }
- public static double? Average (this ParallelQuery<long?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Average ();
- }
- public static decimal? Average (this ParallelQuery<decimal?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Average ();
- }
- public static double? Average (this ParallelQuery<double?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Average ();
- }
- public static float? Average (this ParallelQuery<float?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Average ();
- }
- public static double Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, int> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static double Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, long> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static float Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, float> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static double Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, double> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static decimal Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static double? Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, int?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static double? Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, long?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static float? Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, float?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static double? Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, double?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- public static decimal? Average<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Average ();
- }
- #endregion
- #region Sum
- public static int Sum (this ParallelQuery<int> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (0, (e1, e2) => e1 + e2, (sum1, sum2) => sum1 + sum2, (sum) => sum);
- }
- public static long Sum (this ParallelQuery<long> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate ((long)0, (e1, e2) => e1 + e2, (sum1, sum2) => sum1 + sum2, (sum) => sum);
- }
- public static float Sum (this ParallelQuery<float> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (0.0f, (e1, e2) => e1 + e2, (sum1, sum2) => sum1 + sum2, (sum) => sum);
- }
- public static double Sum (this ParallelQuery<double> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate (0.0, (e1, e2) => e1 + e2, (sum1, sum2) => sum1 + sum2, (sum) => sum);
- }
- public static decimal Sum (this ParallelQuery<decimal> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Aggregate ((decimal)0, (e1, e2) => e1 + e2, (sum1, sum2) => sum1 + sum2, (sum) => sum);
- }
- public static int? Sum (this ParallelQuery<int?> source)
- {
- return source.Select ((e) => e.HasValue ? e.Value : 0).Sum ();
- }
- public static long? Sum (this ParallelQuery<long?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Sum ();
- }
- public static float? Sum (this ParallelQuery<float?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Sum ();
- }
- public static double? Sum (this ParallelQuery<double?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Sum ();
- }
- public static decimal? Sum (this ParallelQuery<decimal?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : 0).Sum ();
- }
- public static int Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, int> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static long Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, long> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static decimal Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static float Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, float> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static double Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, double> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static int? Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, int?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static long? Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, long?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static decimal? Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static float? Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, float?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- public static double? Sum<TSource> (this ParallelQuery<TSource> source, Func<TSource, double?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Sum ();
- }
- #endregion
- #region Min-Max
- static T BestOrder<T> (ParallelQuery<T> source, Func<T, T, bool> bestSelector, T seed)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- T best = seed;
- best = source.Aggregate (() => seed,
- (first, second) => (bestSelector(first, second)) ? first : second,
- (first, second) => (bestSelector(first, second)) ? first : second,
- (e) => e);
- return best;
- }
- public static int Min (this ParallelQuery<int> source)
- {
- return BestOrder (source, (first, second) => first < second, int.MaxValue);
- }
- public static long Min (this ParallelQuery<long> source)
- {
- return BestOrder (source, (first, second) => first < second, long.MaxValue);
- }
- public static float Min (this ParallelQuery<float> source)
- {
- return BestOrder (source, (first, second) => first < second, float.MaxValue);
- }
- public static double Min (this ParallelQuery<double> source)
- {
- return BestOrder (source, (first, second) => first < second, double.MaxValue);
- }
- public static decimal Min (this ParallelQuery<decimal> source)
- {
- return BestOrder (source, (first, second) => first < second, decimal.MaxValue);
- }
- public static TSource Min<TSource> (this ParallelQuery<TSource> source)
- {
- IComparer<TSource> comparer = Comparer<TSource>.Default;
- return BestOrder (source, (first, second) => comparer.Compare (first, second) < 0, default (TSource));
- }
- public static TResult Min<TSource, TResult> (this ParallelQuery<TSource> source, Func<TSource, TResult> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static int? Min (this ParallelQuery<int?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : int.MaxValue).Min ();
- }
- public static long? Min (this ParallelQuery<long?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : long.MaxValue).Min ();
- }
- public static float? Min (this ParallelQuery<float?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : float.MaxValue).Min ();
- }
- public static double? Min (this ParallelQuery<double?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : double.MaxValue).Min ();
- }
- public static decimal? Min (this ParallelQuery<decimal?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : decimal.MaxValue).Min ();
- }
- public static int Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, int> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static long Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, long> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static float Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, float> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static double Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, double> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static decimal Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static int? Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, int?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static long? Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, long?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static float? Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, float?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static double? Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, double?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static decimal? Min<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Min ();
- }
- public static int Max (this ParallelQuery<int> source)
- {
- return BestOrder (source, (first, second) => first > second, int.MinValue);
- }
- public static long Max(this ParallelQuery<long> source)
- {
- return BestOrder(source, (first, second) => first > second, long.MinValue);
- }
- public static float Max (this ParallelQuery<float> source)
- {
- return BestOrder(source, (first, second) => first > second, float.MinValue);
- }
- public static double Max (this ParallelQuery<double> source)
- {
- return BestOrder(source, (first, second) => first > second, double.MinValue);
- }
- public static decimal Max (this ParallelQuery<decimal> source)
- {
- return BestOrder(source, (first, second) => first > second, decimal.MinValue);
- }
- public static TSource Max<TSource> (this ParallelQuery<TSource> source)
- {
- IComparer<TSource> comparer = Comparer<TSource>.Default;
- return BestOrder (source, (first, second) => comparer.Compare (first, second) > 0, default (TSource));
- }
- public static TResult Max<TSource, TResult> (this ParallelQuery<TSource> source, Func<TSource, TResult> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static int? Max (this ParallelQuery<int?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : int.MinValue).Max ();
- }
- public static long? Max (this ParallelQuery<long?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : long.MinValue).Max ();
- }
- public static float? Max (this ParallelQuery<float?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : float.MinValue).Max ();
- }
- public static double? Max (this ParallelQuery<double?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : double.MinValue).Max ();
- }
- public static decimal? Max (this ParallelQuery<decimal?> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.Select ((e) => e.HasValue ? e.Value : decimal.MinValue).Max ();
- }
- public static int Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, int> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static long Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, long> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static float Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, float> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static double Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, double> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static decimal Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static int? Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, int?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static long? Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, long?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static float? Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, float?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static double? Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, double?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- public static decimal? Max<TSource> (this ParallelQuery<TSource> source, Func<TSource, decimal?> func)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (func == null)
- throw new ArgumentNullException ("func");
- return source.Select (func).Max ();
- }
- #endregion
- #region Cast / OfType
- public static ParallelQuery<TResult> Cast<TResult> (this ParallelQuery source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.TypedQuery.Select ((e) => (TResult)e);
- }
- public static ParallelQuery<TResult> OfType<TResult> (this ParallelQuery source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return source.TypedQuery.Where ((e) => e is TResult).Cast<TResult> ();
- }
- #endregion
- #region Reverse
- public static ParallelQuery<TSource> Reverse<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- return new ParallelQuery<TSource> (new QueryReverseNode<TSource> (source));
- }
- #endregion
- #region ToArray - ToList - ToDictionary - ToLookup
- public static List<TSource> ToList<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (source.Node.IsOrdered ())
- return ToListOrdered (source);
- List<TSource> temp = source.Aggregate (() => new List<TSource>(50),
- (list, e) => { list.Add (e); return list; },
- (list, list2) => { list.AddRange (list2); return list; },
- (list) => list);
- return temp;
- }
- internal static List<TSource> ToListOrdered<TSource> (this ParallelQuery<TSource> source)
- {
- List<TSource> result = new List<TSource> ();
- foreach (TSource element in source)
- result.Add (element);
- return result;
- }
- public static TSource[] ToArray<TSource> (this ParallelQuery<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (source.Node.IsOrdered ())
- return ToListOrdered (source).ToArray ();
- TSource[] result = null;
- Func<List<TSource>, TSource, List<TSource>> intermediate = (list, e) => {
- list.Add (e); return list;
- };
- Action<IList<List<TSource>>> final = (list) => {
- int count = 0;
- for (int i = 0; i < list.Count; i++)
- count += list[i].Count;
- result = new TSource[count];
- int insertIndex = -1;
- for (int i = 0; i < list.Count; i++)
- for (int j = 0; j < list[i].Count; j++)
- result [++insertIndex] = list[i][j];
- };
- ParallelExecuter.ProcessAndAggregate<TSource, List<TSource>> (source.Node,
- () => new List<TSource> (),
- intermediate,
- final);
- return result;
- }
- public static Dictionary<TKey, TSource> ToDictionary<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IEqualityComparer<TKey> comparer)
- {
- return ToDictionary<TSource, TKey, TSource> (source, keySelector, (e) => e, comparer);
- }
- public static Dictionary<TKey, TSource> ToDictionary<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return ToDictionary<TSource, TKey, TSource> (source, keySelector, (e) => e, EqualityComparer<TKey>.Default);
- }
- public static Dictionary<TKey, TElement> ToDictionary<TSource, TKey, TElement> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector)
- {
- return ToDictionary<TSource, TKey, TElement> (source, keySelector, elementSelector, EqualityComparer<TKey>.Default);
- }
- public static Dictionary<TKey, TElement> ToDictionary<TSource, TKey, TElement> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector,
- IEqualityComparer<TKey> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (keySelector == null)
- throw new ArgumentNullException ("keySelector");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- if (elementSelector == null)
- throw new ArgumentNullException ("elementSelector");
- return source.Aggregate (() => new Dictionary<TKey, TElement> (comparer),
- (d, e) => { d.Add (keySelector (e), elementSelector (e)); return d; },
- (d1, d2) => { foreach (var couple in d2) d1.Add (couple.Key, couple.Value); return d1; },
- (d) => d);
- }
- public static ILookup<TKey, TSource> ToLookup<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector)
- {
- return ToLookup<TSource, TKey, TSource> (source, keySelector, (e) => e, EqualityComparer<TKey>.Default);
- }
- public static ILookup<TKey, TSource> ToLookup<TSource, TKey> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- IEqualityComparer<TKey> comparer)
- {
- return ToLookup<TSource, TKey, TSource> (source, keySelector, (e) => e, comparer);
- }
- public static ILookup<TKey, TElement> ToLookup<TSource, TKey, TElement> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector)
- {
- return ToLookup<TSource, TKey, TElement> (source, keySelector, elementSelector, EqualityComparer<TKey>.Default);
- }
- public static ILookup<TKey, TElement> ToLookup<TSource, TKey, TElement> (this ParallelQuery<TSource> source,
- Func<TSource, TKey> keySelector,
- Func<TSource, TElement> elementSelector,
- IEqualityComparer<TKey> comparer)
- {
- if (source == null)
- throw new ArgumentNullException ("source");
- if (keySelector == null)
- throw new ArgumentNullException ("keySelector");
- if (comparer == null)
- throw new ArgumentNullException ("comparer");
- if (elementSelector == null)
- throw new ArgumentNullException ("elementSelector");
- ConcurrentLookup<TKey, TElement> lookup = new ConcurrentLookup<TKey, TElement> (comparer);
- source.ForAll ((e) => lookup.Add (keySelector (e), elementSelector (e)));
- return lookup;
- }
- #endregion
- #region Concat
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than "
- + "System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method "
- + "to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TSource> Concat<TSource>(this ParallelQuery<TSource> first,
- IEnumerable<TSource> second)
- {
- throw new NotSupportedException ();
- }
- public static ParallelQuery<TSource> Concat<TSource> (this ParallelQuery<TSource> first, ParallelQuery<TSource> second)
- {
- return new ParallelQuery<TSource> (new QueryConcatNode<TSource> (first.Node, second.Node));
- }
- #endregion
-
- #region DefaultIfEmpty
- public static ParallelQuery<TSource> DefaultIfEmpty<TSource> (this ParallelQuery<TSource> source)
- {
- return source.DefaultIfEmpty (default (TSource));
- }
-
- public static ParallelQuery<TSource> DefaultIfEmpty<TSource> (this ParallelQuery<TSource> source, TSource defaultValue)
- {
- return new ParallelQuery<TSource> (new QueryDefaultEmptyNode<TSource> (source.Node, defaultValue));
- }
- #endregion
-
- #region First
- public static TSource First<TSource> (this ParallelQuery<TSource> source)
- {
- CancellationTokenSource src = new CancellationTokenSource ();
- IEnumerator<TSource> enumerator = source.WithImplementerToken (src).GetEnumerator ();
-
- if (enumerator == null || !enumerator.MoveNext ())
- throw new InvalidOperationException ("source contains no element");
-
- TSource result = enumerator.Current;
- src.Cancel ();
-
- return result;
- }
-
- public static TSource First<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- return source.Where (predicate).First ();
- }
-
- public static TSource FirstOrDefault<TSource> (this ParallelQuery<TSource> source)
- {
- return source.DefaultIfEmpty ().First ();
- }
-
- public static TSource FirstOrDefault<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- return source.Where (predicate).FirstOrDefault ();
- }
- #endregion
-
- #region Last
- public static TSource Last<TSource> (this ParallelQuery<TSource> source)
- {
- return source.Reverse ().First ();
- }
-
- public static TSource Last<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- return source.Reverse ().First (predicate);
- }
-
- public static TSource LastOrDefault<TSource> (this ParallelQuery<TSource> source)
- {
- return source.Reverse ().FirstOrDefault ();
- }
-
- public static TSource LastOrDefault<TSource> (this ParallelQuery<TSource> source, Func<TSource, bool> predicate)
- {
- return source.Reverse ().FirstOrDefault (predicate);
- }
- #endregion
- #region Zip
- public static ParallelQuery<TResult> Zip<TFirst, TSecond, TResult> (this ParallelQuery<TFirst> first,
- ParallelQuery<TSecond> second,
- Func<TFirst, TSecond, TResult> resultSelector)
- {
- if (first == null)
- throw new ArgumentNullException ("first");
- if (second == null)
- throw new ArgumentNullException ("second");
- if (resultSelector == null)
- throw new ArgumentNullException ("resultSelector");
- return new ParallelQuery<TResult> (new QueryZipNode<TFirst, TSecond, TResult> (resultSelector, first.Node, second.Node));
- }
- [ObsoleteAttribute("The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather "
- + "than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() "
- + "extension method to convert the right data source to System.Linq.ParallelQuery<T>.")]
- public static ParallelQuery<TResult> Zip<TFirst, TSecond, TResult> (this ParallelQuery<TFirst> first,
- IEnumerable<TSecond> second,
- Func<TFirst, TSecond, TResult> resultSelector)
- {
- throw new NotSupportedException ();
- }
- #endregion
- }
- }
- #endif
|