// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT License.
// See the LICENSE file in the project root for more information. 
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
namespace System.Reactive.Linq
{
    /// 
    /// Provides a set of static methods for writing queries over observable sequences, allowing translation to a target query language.
    /// 
    [LocalQueryMethodImplementationType(typeof(ObservableEx))]
    public static partial class QbservableEx
    {
        internal static Expression GetSourceExpression(IObservable source)
        {
            if (source is IQbservable q)
            {
                return q.Expression;
            }
            return Expression.Constant(source, typeof(IObservable));
        }
        internal static Expression GetSourceExpression(IEnumerable source)
        {
            if (source is IQueryable q)
            {
                return q.Expression;
            }
            return Expression.Constant(source, typeof(IEnumerable));
        }
        internal static Expression GetSourceExpression(IObservable[] sources)
        {
            return Expression.NewArrayInit(
                typeof(IObservable),
                sources.Select(source => GetSourceExpression(source))
            );
        }
        internal static Expression GetSourceExpression(IEnumerable[] sources)
        {
            return Expression.NewArrayInit(
                typeof(IEnumerable),
                sources.Select(source => GetSourceExpression(source))
            );
        }
        internal static MethodInfo InfoOf(Expression> f)
        {
            return ((MethodCallExpression)f.Body).Method;
        }
    }
}