forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIHqlGeneratorForMethod.cs
99 lines (88 loc) · 3.44 KB
/
IHqlGeneratorForMethod.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq.Expressions;
using System.Reflection;
using NHibernate.Engine;
using NHibernate.Hql.Ast;
using NHibernate.Linq.Visitors;
namespace NHibernate.Linq.Functions
{
public interface IHqlGeneratorForMethod
{
IEnumerable<MethodInfo> SupportedMethods { get; }
HqlTreeNode BuildHql(MethodInfo method, Expression targetObject, ReadOnlyCollection<Expression> arguments, HqlTreeBuilder treeBuilder, IHqlExpressionVisitor visitor);
}
// 6.0 TODO: Merge into IHqlGeneratorForMethod
internal interface IHqlGeneratorForMethodExtended
{
bool AllowsNullableReturnType(MethodInfo method);
/// <summary>
/// Try getting a collection parameter from <see cref="MethodCallExpression"/>.
/// </summary>
/// <param name="expression">The method call expression.</param>
/// <param name="collectionParameter">Output parameter for the retrieved collection parameter.</param>
/// <returns>Whether collection parameter was retrieved.</returns>
bool TryGetCollectionParameter(MethodCallExpression expression, out ConstantExpression collectionParameter);
}
internal static class HqlGeneratorForMethodExtensions
{
// 6.0 TODO: Remove
public static bool AllowsNullableReturnType(this IHqlGeneratorForMethod generator, MethodInfo method)
{
if (generator is IHqlGeneratorForMethodExtended extendedGenerator)
{
return extendedGenerator.AllowsNullableReturnType(method);
}
return true;
}
// 6.0 TODO: Remove
public static bool TryGetCollectionParameters(
this IHqlGeneratorForMethod generator,
MethodCallExpression expression,
out ConstantExpression collectionParameter)
{
if (generator is IHqlGeneratorForMethodExtended extendedGenerator)
{
return extendedGenerator.TryGetCollectionParameter(expression, out collectionParameter);
}
collectionParameter = null;
return false;
}
// 6.0 TODO: merge into IHqlGeneratorForMethod
/// <summary>
/// Should pre-evaluation be allowed for this method?
/// </summary>
/// <param name="generator">The method's HQL generator.</param>
/// <param name="member">The method.</param>
/// <param name="factory">The session factory.</param>
/// <returns>
/// <see langword="true" /> if the method should be evaluated before running the query whenever possible,
/// <see langword="false" /> if it must always be translated to the equivalent HQL call.
/// </returns>
public static bool AllowPreEvaluation(
this IHqlGeneratorForMethod generator,
MemberInfo member,
ISessionFactoryImplementor factory)
{
if (generator is IAllowPreEvaluationHqlGenerator allowPreEvalGenerator)
return allowPreEvalGenerator.AllowPreEvaluation(member, factory);
// By default, everything should be pre-evaluated whenever possible.
return true;
}
/// <summary>
/// Should the instance holding the method be ignored?
/// </summary>
/// <param name="generator">The method's HQL generator.</param>
/// <param name="member">The method.</param>
/// <returns>
/// <see langword="true" /> if the method translation does not depend on the instance to which it
/// belongs, <see langword="false" /> otherwise.
/// </returns>
public static bool IgnoreInstance(this IHqlGeneratorForMethod generator, MemberInfo member)
{
if (generator is IAllowPreEvaluationHqlGenerator allowPreEvalGenerator)
return allowPreEvalGenerator.IgnoreInstance(member);
return false;
}
}
}