aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/profile/AllValuesQueryProfileVisitor.java
blob: bef5b00c51bec6131b903ee7e21d1d9ccb0be5da (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 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.profile;

import com.yahoo.processing.request.CompoundName;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

/**
 * @author <a href="mailto:bratseth@yahoo-inc.com">Jon Bratseth</a>
 */
final class AllValuesQueryProfileVisitor extends PrefixQueryProfileVisitor {

    private Map<String,Object> values=new HashMap<>();

    /* Lists all values starting at prefix */
    public AllValuesQueryProfileVisitor(CompoundName prefix) {
        super(prefix);
    }

    public @Override void onValue(String localName, Object value, DimensionBinding binding, QueryProfile owner) {
        putValue(localName, value, values);
    }

    public @Override void onQueryProfileInsidePrefix(QueryProfile profile, DimensionBinding binding, QueryProfile owner) {
        putValue("", profile.getValue(), values);
    }

    private final void putValue(String key, Object value, Map<String, Object> values) {
        if (value == null) return;
        CompoundName fullName = currentPrefix.append(key);
        if (fullName.isEmpty()) return; // Avoid putting a non-leaf (subtree) root in the list
        if (values.containsKey(fullName.toString())) return; // The first value encountered has priority
        values.put(fullName.toString(), value);
    }

    /** Returns the values resulting from this visiting */
    public Map<String, Object> getResult() { return values; }

    /** Returns false - we are not done until we have seen all */
    public boolean isDone() { return false; }

}