aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/UcaFunction.java
blob: 2fdcf8168fd07dd1a3c2f81e97201e40d7a534d6 (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
68
69
70
71
72
73
74
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.grouping.request;

import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

/**
 * This class represents an uca-function in a {@link GroupingExpression}.
 *
 * @author Ulf Lilleengen
 * @author bratseth
 */
public class UcaFunction extends FunctionNode {

    private final String locale;
    private final String strength;

    /**
     * Constructs a new instance of this class.
     *
     * @param exp     The expression to evaluate.
     * @param locale  The locale to used for sorting.
     */
    public UcaFunction(GroupingExpression exp, String locale) {
        this(null, null, Arrays.asList(exp, new StringValue(locale)));
    }

    /**
     * Constructs a new instance of this class.
     *
     * @param exp     The expression to evaluate.
     * @param locale  The locale to used for sorting.
     * @param strength The strength level to use.
     */
    public UcaFunction(GroupingExpression exp, String locale, String strength) {
        this(null, null, Arrays.asList(exp, new StringValue(locale), new StringValue(strength)));
        if ( ! validStrength(strength))
            throw new IllegalArgumentException("Not a valid UCA strength: " + strength);
    }

    private UcaFunction(String label, Integer level, List<GroupingExpression> args) {
        super("uca", label, level, args);
        this.locale = ((StringValue)args.get(1)).getValue();
        this.strength = args.size() > 2 ? ((StringValue)args.get(2)).getValue() : "TERTIARY";
    }

    @Override
    public UcaFunction copy() {
        return new UcaFunction(getLabel(),
                               getLevelOrNull(),
                               args().stream().map(arg -> arg.copy()).toList());
    }

    private boolean validStrength(String strength) {
        return (strength.equals("PRIMARY") ||
                strength.equals("SECONDARY") ||
                strength.equals("TERTIARY") ||
                strength.equals("QUATERNARY") ||
                strength.equals("IDENTICAL"));
    }

    public String getLocale() {
        return locale;
    }

    public String getStrength() {
        return strength;
    }

}