aboutsummaryrefslogtreecommitdiffstats
path: root/indexinglanguage/src/main/java/com/yahoo/vespa/indexinglanguage/expressions/HexDecodeExpression.java
blob: a344a1d867ede6c66fbefa9173d204fd0d1decc2 (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
60
61
62
63
64
65
66
67
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.indexinglanguage.expressions;

import com.yahoo.document.DataType;
import com.yahoo.document.datatypes.LongFieldValue;

import java.math.BigInteger;

/**
 * @author Simon Thoresen Hult
 */
public final class HexDecodeExpression extends Expression {

    private static final BigInteger ULONG_MAX = new BigInteger("18446744073709551616");

    public HexDecodeExpression() {
        super(DataType.STRING);
    }

    @Override
    protected void doExecute(ExecutionContext context) {
        String input = String.valueOf(context.getValue());
        if (input.isEmpty()) {
            context.setValue(new LongFieldValue(Long.MIN_VALUE));
            return;
        }
        BigInteger output;
        try {
            output = new BigInteger(input, 16);
        } catch (NumberFormatException e) {
            throw new NumberFormatException("Illegal hex value '" + input + "'");
        }
        if (output.bitLength() > 64) {
            throw new NumberFormatException("Hex value '" + input + "' is out of range");
        }
        if (output.compareTo(BigInteger.ZERO) > 0 && output.bitLength() == 64) {
            output = output.subtract(ULONG_MAX); // flip to negative
        }
        context.setValue(new LongFieldValue(output.longValue()));
    }

    @Override
    protected void doVerify(VerificationContext context) {
        context.setValueType(createdOutputType());
    }

    @Override
    public DataType createdOutputType() {
        return DataType.LONG;
    }

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

    @Override
    public boolean equals(Object obj) {
        return obj instanceof HexDecodeExpression;
    }

    @Override
    public int hashCode() {
        return getClass().hashCode();
    }

}