aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/expression/UnaryFunctionNode.java
blob: 1686453eed8acd046c3a3b389d96358da40d69c3 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.expression;

/**
 * This is an abstract super-class for all functions that accept only a single argument.
 *
 * @author baldersheim
 * @author Simon Thoresen Hult
 */
public abstract class UnaryFunctionNode extends MultiArgFunctionNode {

    public static final int classId = registerClass(0x4000 + 43, UnaryFunctionNode.class);

    @Override
    protected int onGetClassId() {
        return classId;
    }

    /**
     * Return the single argument given to this function.
     *
     * @return The argument to this function
     */
    public ExpressionNode getArg() {
        return getArg(0);
    }

    @Override
    public void onPrepareResult() {
        setResult((ResultNode)getArg().getResult().clone());
    }

    @Override
    public void onPrepare() {
        super.onPrepare();
    }

    @Override
    protected final boolean equalsMultiArgFunction(MultiArgFunctionNode obj) {
        return equalsUnaryFunction((UnaryFunctionNode)obj);
    }

    protected abstract boolean equalsUnaryFunction(UnaryFunctionNode obj);
}