Example #1
0
        /// <summary>
        /// Creates a parallel query that projects each element of a sequence to an IEnumerable, flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein.
        /// </summary>
        /// <typeparam name="TSource">The type of the elements of source.</typeparam>
        /// <typeparam name="TCol">The type of the intermediate elements collected by collectionSelector.</typeparam>
        /// <typeparam name="TResult">The type of the elements of the sequence returned by selector.</typeparam>
        /// <param name="query">A query whose values to project.</param>
        /// <param name="collectionSelector">A transform function to apply to each element of the input sequence.</param>
        /// <param name="resultSelector">A transform function to apply to each element of the intermediate sequence.</param>
        /// <returns>A parallel query whose elements are the result of invoking the one-to-many transform function on each element of the input sequence and the result selector function on each element therein.</returns>
        public static IParallelQueryExpr <IEnumerable <TResult> > SelectMany <TSource, TCol, TResult>(this IParallelQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, IEnumerable <TCol> > > collectionSelector, Expression <Func <TSource, TCol, TResult> > resultSelector)
        {
            var paramExpr = collectionSelector.Parameters.Single();
            var bodyExpr  = collectionSelector.Body;
            var nested    = Tuple.Create(paramExpr, CSharpExpressionOptimizer.ToQueryExpr(bodyExpr));

            return(new ParallelQueryExpr <IEnumerable <TResult> >(QExpr.NewNestedQueryTransform(nested, resultSelector, query.Expr)));
        }
Example #2
0
        /// <summary>
        /// Creates a new query that projects each element of a sequence to an IEnumerable and flattens the resulting sequences into one sequence.
        /// </summary>
        /// <typeparam name="TSource">The type of the elements of source.</typeparam>
        /// <typeparam name="TResult">The type of the elements of the sequence returned by selector.</typeparam>
        /// <param name="query">A query whose values to project.</param>
        /// <param name="selector">A transform function to apply to each element.</param>
        /// <returns>A query whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.</returns>
        public static IQueryExpr <IEnumerable <TResult> > SelectMany <TSource, TResult>(this IQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, IEnumerable <TResult> > > selector)
        {
            var paramExpr = selector.Parameters.Single();
            var bodyExpr  = selector.Body;
            var nested    = Tuple.Create(paramExpr, CSharpExpressionOptimizer.ToQueryExpr(bodyExpr));

            return(new QueryExpr <IEnumerable <TResult> >(QExpr.NewNestedQuery(nested, query.Expr)));
        }
Example #3
0
 /// <summary>
 /// Enables the optimization of a query in a parallel fashion.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <param name="source">An IEnumerable to convert to an IQExpr.</param>
 /// <returns>A parallel query that returns the elements of the source sequence.</returns>
 public static IParallelQueryExpr <IEnumerable <TSource> > AsParallelQueryExpr <TSource>(this IEnumerable <TSource> source)
 {
     return(new ParallelQueryExpr <IEnumerable <TSource> >(QExpr.NewSource(Expression.Constant(source), typeof(TSource), QueryExprType.Parallel)));
 }
Example #4
0
 /// <summary>
 /// A parallel query that returns a List from an sequence of values.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <param name="query">The query to create a List from.</param>
 /// <returns>A parallel query that contains elements from the input sequence in a List form.</returns>
 public static IParallelQueryExpr <List <TSource> > ToList <TSource>(this IParallelQueryExpr <IEnumerable <TSource> > query)
 {
     return(new ParallelQueryExpr <List <TSource> >(QExpr.NewToList(query.Expr)));
 }
Example #5
0
 /// <summary>
 /// Creates a new parallel query that returns the number of elements in a sequence.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <param name="query">A query whose elements will be count.</param>
 /// <returns>A parallel query that returns the number of elements in the input sequence.</returns>
 public static IParallelQueryExpr <int> Count <TSource>(this IParallelQueryExpr <IEnumerable <TSource> > query)
 {
     return(new ParallelQueryExpr <int>(QExpr.NewCount(query.Expr)));
 }
Example #6
0
 /// <summary>
 /// A parallel query that groups the elements of a sequence according to a specified key selector function.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <typeparam name="TKey">The type of the key returned by keySelector.</typeparam>
 /// <param name="query">A query whose elements to group.</param>
 /// <param name="keySelector">A function to extract the key for each element.</param>
 /// <returns>A parallel query where each IGrouping element contains a sequence of objects and a key.</returns>
 public static IParallelQueryExpr <IEnumerable <IGrouping <TKey, TSource> > > GroupBy <TSource, TKey>(this IParallelQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, TKey> > keySelector)
 {
     return(new ParallelQueryExpr <IEnumerable <IGrouping <TKey, TSource> > >(QExpr.NewGroupBy(keySelector, query.Expr, typeof(IGrouping <TKey, TSource>))));
 }
Example #7
0
 /// <summary>
 /// Creates a new query that filters a sequence of values based on a predicate. Each element's index is used in the logic of the predicate function.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of query.</typeparam>
 /// <param name="query">An query whose values to filter.</param>
 /// <param name="predicate">A function to test each source element for a condition; the second parameter of the function represents the index of the source element.</param>
 /// <returns>A query that contains elements from the input query that satisfy the condition.</returns>
 public static IQueryExpr <IEnumerable <TSource> > Where <TSource>(this IQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, int, bool> > predicate)
 {
     return(new QueryExpr <IEnumerable <TSource> >(QExpr.NewFilterIndexed(predicate, query.Expr)));
 }
Example #8
0
 /// <summary>
 /// Creates a new query that projects in parallel each element of a sequence into a new form.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of the query.</typeparam>
 /// <typeparam name="TResult">The type of the value returned by selector.</typeparam>
 /// <param name="query">A query whose values to invoke a transform function on.</param>
 /// <param name="selector">A transform function to apply to each element.</param>
 /// <returns>A query whose elements will be the result of invoking the transform function on each element of source, in parallel.</returns>
 public static IParallelQueryExpr <IEnumerable <TResult> > Select <TSource, TResult>(this IParallelQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, TResult> > selector)
 {
     return(new ParallelQueryExpr <IEnumerable <TResult> >(QExpr.NewTransform(selector, query.Expr)));
 }
Example #9
0
 /// <summary>
 /// Creates a query that sorts the elements of a sequence in ascending order according to a key.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <typeparam name="TKey">The type of the key returned by keySelector.</typeparam>
 /// <param name="query">A query whose values to order.</param>
 /// <param name="keySelector">A function to extract a key from an element.</param>
 /// <returns>A query whose elements are sorted according to a key.</returns>
 public static IQueryExpr <IOrderedEnumerable <TSource> > OrderBy <TSource, TKey>(this IQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, TKey> > keySelector)
 {
     return(new QueryExpr <IOrderedEnumerable <TSource> >(QExpr.AddOrderBy(keySelector, Order.Ascending, query.Expr)));
 }
Example #10
0
 /// <summary>
 /// A query that performs the specified action on each element of the source query.
 /// </summary>
 /// <param name="query">An query to return elements from.</param>
 /// <param name="action">The Action delegate to perform on each element of the query.</param>
 /// <returns>A query that performs the action on each element.</returns>
 public static IQueryExpr ForEach <TSource>(this IQueryExpr <IEnumerable <TSource> > query, Expression <Action <TSource> > action)
 {
     return(new QueryExprVoid(QExpr.NewForEach(action, query.Expr)));
 }
Example #11
0
 /// <summary>
 /// A query that bypasses a specified number of elements in a sequence and then returns the remaining elements.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <param name="query">A query to return elements from.</param>
 /// <param name="count">The number of elements to skip before returning the remaining elements.</param>
 /// <returns>A query that returns a sequence containing the elements that occur after the specified index in the input sequence.</returns>
 public static IQueryExpr <IEnumerable <TSource> > Skip <TSource>(this IQueryExpr <IEnumerable <TSource> > query, int count)
 {
     return(new QueryExpr <IEnumerable <TSource> >(QExpr.NewSkip(Expression.Constant(count), query.Expr)));
 }
Example #12
0
 /// <summary>
 /// Creates a query that bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <param name="query">The query to return elements from.</param>
 /// <param name="predicate">A function to test each element for a condition.</param>
 /// <returns>A query that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate.</returns>
 public static IQueryExpr <IEnumerable <TSource> > SkipWhile <TSource>(this IQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, bool> > predicate)
 {
     return(new QueryExpr <IEnumerable <TSource> >(QExpr.NewSkipWhile(predicate, query.Expr)));
 }
Example #13
0
 /// <summary>
 /// Creates a new query that computes the sum of a sequence of Long values.
 /// </summary>
 /// <param name="query">A query whose sequence of Long values to calculate the sum of.</param>
 /// <returns>A query that returns the sum of the values in the sequence.</returns>
 public static IQueryExpr <long> Sum(this IQueryExpr <IEnumerable <long> > query)
 {
     return(new QueryExpr <long>(QExpr.NewSum(query.Expr)));
 }
Example #14
0
 /// <summary>
 /// Creates a new query that applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <typeparam name="TAcc">The type of the accumulator value.</typeparam>
 /// <param name="query">An query whose values are used to aggregate over.</param>
 /// <param name="seed">The initial accumulator value.</param>
 /// <param name="func">An accumulator function to be invoked on each element.</param>
 /// <returns>A query that returns the final accumulator value.</returns>
 public static IQueryExpr <TAcc> Aggregate <TSource, TAcc>(this IQueryExpr <IEnumerable <TSource> > query, TAcc seed, Expression <Func <TAcc, TSource, TAcc> > func)
 {
     return(new QueryExpr <TAcc>(QExpr.NewAggregate(Expression.Constant(seed), func, query.Expr)));
 }
Example #15
0
 /// <summary>
 /// A parallel query that returns an array from an sequence of values.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <param name="query">The query to create an array from.</param>
 /// <returns>A parallel query that contains elements from the input sequence in an array form.</returns>
 public static IParallelQueryExpr <TSource[]> ToArray <TSource>(this IParallelQueryExpr <IEnumerable <TSource> > query)
 {
     return(new ParallelQueryExpr <TSource[]>(QExpr.NewToArray(query.Expr)));
 }
Example #16
0
 /// <summary>
 /// A query that generates a sequence by mimicking a for loop.
 /// </summary>
 /// <typeparam name="TState">State type.</typeparam>
 /// <typeparam name="TResult">Result sequence element type.</typeparam>
 /// <param name="initialState">Initial state of the generator loop.</param>
 /// <param name="condition">Loop condition.</param>
 /// <param name="iterate">State update function to run after every iteration of the generator loop.</param>
 /// <param name="resultSelector">Result selector to compute resulting sequence elements.</param>
 /// <returns>A query whose elements are obtained by running the generator loop, yielding computed elements.</returns>
 public static IQueryExpr <IEnumerable <TResult> > Generate <TState, TResult>(TState initialState, Expression <Func <TState, bool> > condition, Expression <Func <TState, TState> > iterate, Expression <Func <TState, TResult> > resultSelector)
 {
     return(new QueryExpr <IEnumerable <TResult> >(QExpr.NewGenerate(Expression.Constant(initialState), condition, iterate, resultSelector)));
 }
Example #17
0
 /// <summary>
 /// Performs a subsequent ordering of the elements of a sequence in parallel and in descending order according to a key.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <typeparam name="TKey">The type of the key returned by keySelector.</typeparam>
 /// <param name="query">A query whose values to order.</param>
 /// <param name="keySelector">A function to extract a key from an element.</param>
 /// <returns>A parallel query whose elements are sorted according to a key.</returns>
 public static IParallelQueryExpr <IOrderedEnumerable <TSource> > ThenByDescending <TSource, TKey>(this IParallelQueryExpr <IOrderedEnumerable <TSource> > query, Expression <Func <TSource, TKey> > keySelector)
 {
     return(new ParallelQueryExpr <IOrderedEnumerable <TSource> >(QExpr.AddOrderBy(keySelector, Order.Descending, query.Expr)));
 }
Example #18
0
 /// <summary>
 /// Creates a new query that computes the sum of a sequence of int values in parallel.
 /// </summary>
 /// <param name="query">A query whose sequence of int values to calculate the sum of.</param>
 /// <returns>A parallel query that returns the sum of the values in the sequence.</returns>
 public static IParallelQueryExpr <int> Sum(this IParallelQueryExpr <IEnumerable <int> > query)
 {
     return(new ParallelQueryExpr <int>(QExpr.NewSum(query.Expr)));
 }
Example #19
0
 /// <summary>
 /// Creates a new query that filters in parallel a sequence of values based on a predicate.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <param name="query">An query whose values to filter.</param>
 /// <param name="predicate">A function to test each element for a condition.</param>
 /// <returns>A parallel query that contains elements from the input query that satisfy the condition.</returns>
 public static IParallelQueryExpr <IEnumerable <TSource> > Where <TSource>(this IParallelQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, bool> > predicate)
 {
     return(new ParallelQueryExpr <IEnumerable <TSource> >(QExpr.NewFilter(predicate, query.Expr)));
 }
Example #20
0
 /// <summary>
 /// Creates a new query that projects each element of a sequence into a new form by incorporating the element's index.
 /// </summary>
 /// <typeparam name="TSource">The type of the elements of source.</typeparam>
 /// <typeparam name="TResult">The type of the value returned by selector.</typeparam>
 /// <param name="query">A query whose values to invoke a transform function on.</param>
 /// <param name="selector">A transform function to apply to each source element; the second parameter of the function represents the index of the source element.</param>
 /// <returns>A query whose elements will be the result of invoking the transform function on each element of source.</returns>
 public static IQueryExpr <IEnumerable <TResult> > Select <TSource, TResult>(this IQueryExpr <IEnumerable <TSource> > query, Expression <Func <TSource, int, TResult> > selector)
 {
     return(new QueryExpr <IEnumerable <TResult> >(QExpr.NewTransformIndexed(selector, query.Expr)));
 }