summaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/select/rule/NowNode.java
blob: 600dbe536e4d85576bfa22aef4c6a2cf30ea0057 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.select.rule;
import com.yahoo.document.BucketIdFactory;
import com.yahoo.document.select.*;

/**
 * @author <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
 */
public class NowNode implements ExpressionNode {

    // Inherit doc from ExpressionNode.
    public BucketSet getBucketSet(BucketIdFactory factory) {
        return null;
    }

    // Inherit doc from ExpressionNode.
    public Object evaluate(Context context) {
        Object ret = System.currentTimeMillis() / 1000;  
        return ret;
    }

    @Override
    public String toString() {
        return "now()";
    }

    public OrderingSpecification getOrdering(int order) {
        return null;
    }

    public void accept(Visitor visitor) {
        visitor.visit(this);
    }
}