< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Extensions.ExpressionExtensions
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Extensions/ExpressionExtensions.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 12
Coverable lines: 12
Total lines: 70
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 4
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
Or(...)100%210%
Or(...)0%620%
And(...)100%210%
And(...)0%620%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Extensions/ExpressionExtensions.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Linq.Expressions;
 5
 6namespace Jellyfin.Server.Implementations.Extensions;
 7
 8/// <summary>
 9/// Provides <see cref="Expression"/> extension methods.
 10/// </summary>
 11public static class ExpressionExtensions
 12{
 13    /// <summary>
 14    /// Combines two predicates into a single predicate using a logical OR operation.
 15    /// </summary>
 16    /// <typeparam name="T">The predicate parameter type.</typeparam>
 17    /// <param name="firstPredicate">The first predicate expression to combine.</param>
 18    /// <param name="secondPredicate">The second predicate expression to combine.</param>
 19    /// <returns>A new expression representing the OR combination of the input predicates.</returns>
 20    public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> firstPredicate, Expression<Func<T, bool
 21    {
 022        ArgumentNullException.ThrowIfNull(firstPredicate);
 023        ArgumentNullException.ThrowIfNull(secondPredicate);
 24
 025        var invokedExpression = Expression.Invoke(secondPredicate, firstPredicate.Parameters);
 026        return Expression.Lambda<Func<T, bool>>(Expression.OrElse(firstPredicate.Body, invokedExpression), firstPredicat
 27    }
 28
 29    /// <summary>
 30    /// Combines multiple predicates into a single predicate using a logical OR operation.
 31    /// </summary>
 32    /// <typeparam name="T">The predicate parameter type.</typeparam>
 33    /// <param name="predicates">A collection of predicate expressions to combine.</param>
 34    /// <returns>A new expression representing the OR combination of all input predicates.</returns>
 35    public static Expression<Func<T, bool>> Or<T>(this IEnumerable<Expression<Func<T, bool>>> predicates)
 36    {
 037        ArgumentNullException.ThrowIfNull(predicates);
 38
 039        return predicates.Aggregate((aggregatePredicate, nextPredicate) => aggregatePredicate.Or(nextPredicate));
 40    }
 41
 42    /// <summary>
 43    /// Combines two predicates into a single predicate using a logical AND operation.
 44    /// </summary>
 45    /// <typeparam name="T">The predicate parameter type.</typeparam>
 46    /// <param name="firstPredicate">The first predicate expression to combine.</param>
 47    /// <param name="secondPredicate">The second predicate expression to combine.</param>
 48    /// <returns>A new expression representing the AND combination of the input predicates.</returns>
 49    public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> firstPredicate, Expression<Func<T, boo
 50    {
 051        ArgumentNullException.ThrowIfNull(firstPredicate);
 052        ArgumentNullException.ThrowIfNull(secondPredicate);
 53
 054        var invokedExpression = Expression.Invoke(secondPredicate, firstPredicate.Parameters);
 055        return Expression.Lambda<Func<T, bool>>(Expression.AndAlso(firstPredicate.Body, invokedExpression), firstPredica
 56    }
 57
 58    /// <summary>
 59    /// Combines multiple predicates into a single predicate using a logical AND operation.
 60    /// </summary>
 61    /// <typeparam name="T">The predicate parameter type.</typeparam>
 62    /// <param name="predicates">A collection of predicate expressions to combine.</param>
 63    /// <returns>A new expression representing the AND combination of all input predicates.</returns>
 64    public static Expression<Func<T, bool>> And<T>(this IEnumerable<Expression<Func<T, bool>>> predicates)
 65    {
 066        ArgumentNullException.ThrowIfNull(predicates);
 67
 068        return predicates.Aggregate((aggregatePredicate, nextPredicate) => aggregatePredicate.And(nextPredicate));
 69    }
 70}