aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/searchchain/SearchChain.java
blob: bec0cc18ff85c72f2feb173315673ed745cfd693 (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
75
76
77
78
79
80
81
82
83
84
85
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.searchchain;

import com.yahoo.component.ComponentId;
import com.yahoo.component.chain.Chain;
import com.yahoo.component.chain.Phase;
import com.yahoo.search.Searcher;

import java.util.Arrays;
import java.util.Collection;
import java.util.List;

/**
 * A named collection of searchers.
 * <p>
 * The searchers may have dependencies which define an ordering
 * of the searchers of this chain.
 * <p>
 * Search chains may inherit the searchers of other chains and modify
 * the inherited set of searchers.
 * <p>
 * Search chains may be versioned. The version and name string combined
 * is an unique identifier of a search chain.
 * <p>
 * A search chain cannot be modified once constructed.
 *
 * @author bratseth
 */
public class SearchChain extends Chain<Searcher> {

    public SearchChain(ComponentId id) {
        this(id, null, null);
    }

    public SearchChain(ComponentId id, Searcher... searchers) {
        this(id, Arrays.asList(searchers));
    }

    public SearchChain(ComponentId id, Collection<Searcher> searchers) {
        this(id, searchers, null);
    }

    /**
     * Creates a search chain.
     * <p>
     * This search chain makes a copy of the given lists before return and does not modify the argument lists.
     * <p>
     * The total set of searchers included in this chain will be
     * <ul>
     * <li>The searchers given in <code>searchers</code>.
     * <li>Plus all searchers returned by {@link #searchers} on all search chains in <code>inherited</code>.
     * If a searcher with a given name is present in the <code>searchers</code> list in any version, that
     * version will be used, and a searcher with that name will never be included from an inherited search chain.
     * If the same searcher exists in multiple inherited chains, the highest version will be used.
     * <li>Minus all searchers, of any version, whose name exists in the <code>excluded</code> list.
     * </ul>
     *
     * @param id        the id of this search chain
     * @param searchers the searchers of this chain, or null if none
     * @param phases    the phases of this chain
     */
    public SearchChain(ComponentId id, Collection<Searcher> searchers, Collection<Phase> phases) {
        super(id, searchers, phases);
    }

    /** For internal use only! */
    public SearchChain(Chain<Searcher> chain) {
        super(chain.getId(), chain.components());
    }

    /**
     * Returns an unmodifiable list of the searchers this search chain executs, in resolved execution order.
     * This includes all inherited (and not excluded) searchers.
     */
    public List<Searcher> searchers() {
        return components();
    }

    @Override
    public String toString() {
        StringBuilder b = new StringBuilder("search ");
        b.append(super.toString());
        return b.toString();
    }
}