aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/expressiontransforms/FunctionShadower.java
blob: f3bfdf4cf04a62f6b561f10a15fe02456622d1fc (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.expressiontransforms;

import com.yahoo.schema.RankProfile;
import com.yahoo.searchlib.rankingexpression.RankingExpression;
import com.yahoo.searchlib.rankingexpression.rule.CompositeNode;
import com.yahoo.searchlib.rankingexpression.rule.ExpressionNode;
import com.yahoo.searchlib.rankingexpression.rule.FunctionNode;
import com.yahoo.searchlib.rankingexpression.rule.ReferenceNode;
import com.yahoo.searchlib.rankingexpression.transform.ExpressionTransformer;

/**
 * Transforms function nodes to reference nodes if a rank profile function shadows a built-in function.
 * This has the effect of allowing rank profile functions to redefine built-in functions.
 * Another effect is that we can add built-in functions over time
 * without fear of breaking existing users' functions with the same name.
 *
 * However, there is a (largish) caveat. If a user has a function with a certain number
 * of arguments, and we add in a built-in function with a different arity,
 * this will cause parse errors as the Java parser gives precedence to
 * built-in functions.
 *
 * @author lesters
 */
public class FunctionShadower extends ExpressionTransformer<RankProfileTransformContext> {

    @Override
    public RankingExpression transform(RankingExpression expression, RankProfileTransformContext context) {
        ExpressionNode node = expression.getRoot();
        ExpressionNode result = transform(node, context);
        return (result == node)
                ? expression
                : new RankingExpression(expression.getName(), result);
    }

    @Override
    public ExpressionNode transform(ExpressionNode node, RankProfileTransformContext context) {
        if (node instanceof FunctionNode)
            return transformFunctionNode((FunctionNode) node, context);
        if (node instanceof CompositeNode)
            return transformChildren((CompositeNode)node, context);
        return node;
    }

    private ExpressionNode transformFunctionNode(FunctionNode function, RankProfileTransformContext context) {
        String name = function.getFunction().toString();
        RankProfile.RankingExpressionFunction rankingExpressionFunction = context.rankProfile().findFunction(name);
        if (rankingExpressionFunction == null)
            return transformChildren(function, context);

        int functionArity = function.getFunction().arity();
        if (functionArity != rankingExpressionFunction.function().arguments().size())
            return transformChildren(function, context);

        ReferenceNode node = new ReferenceNode(name, function.children(), null);
        return transformChildren(node, context);
    }

}