aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/querytransform/WeakAndReplacementSearcher.java
blob: 9aa7a9d998df96b9e891b4c1d609be42b6cee844 (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.querytransform;

import com.yahoo.prelude.query.CompositeItem;
import com.yahoo.prelude.query.Item;
import com.yahoo.prelude.query.OrItem;
import com.yahoo.prelude.query.WeakAndItem;
import com.yahoo.processing.request.CompoundName;
import com.yahoo.search.Query;
import com.yahoo.search.Result;
import com.yahoo.search.Searcher;
import com.yahoo.search.searchchain.Execution;
import com.yahoo.search.yql.MinimalQueryInserter;
import com.yahoo.yolean.chain.After;

/**
 * Recursively replaces all instances of OrItems with WeakAndItems if the query property weakand.replace is true.
 * Otherwise a noop searcher.
 *
 * @author karowan
 */
@After(MinimalQueryInserter.EXTERNAL_YQL)
public class WeakAndReplacementSearcher extends Searcher {
    static final CompoundName WEAKAND_REPLACE = CompoundName.from("weakAnd.replace");
    static final CompoundName WAND_HITS = CompoundName.from("wand.hits");

    @Override public Result search(Query query, Execution execution) {
        if (!query.properties().getBoolean(WEAKAND_REPLACE)) {
            return execution.search(query);
        }
        replaceOrItems(query);
        return execution.search(query);
    }

    /**
     * Extracts the queryTree root and the wand.hits property to send to the recursive replacement function
     * @param query the search query
     */
    private void replaceOrItems(Query query) {
        Item root = query.getModel().getQueryTree().getRoot();
        int hits = query.properties().getInteger(WAND_HITS, WeakAndItem.defaultN);
        query.getModel().getQueryTree().setRoot(replaceOrItems(root, hits));
        if (root != query.getModel().getQueryTree().getRoot())
            query.trace("Replaced OR by WeakAnd", true, 2);
    }


    /**
     * Recursively iterates over an Item to replace all instances of OrItems with WeakAndItems
     * @param item the current item in the replacement iteration
     * @param hits the wand.hits property from the request which is assigned to the N value of the new WeakAndItem
     * @return the original item or a WeakAndItem replacement of an OrItem
     */
    private Item replaceOrItems(Item item, int hits) {
        if (!(item instanceof CompositeItem compositeItem)) {
            return item;
        }
        if (compositeItem instanceof OrItem) {
            WeakAndItem newItem = new WeakAndItem(hits);
            newItem.setWeight(compositeItem.getWeight());
            compositeItem.items().forEach(newItem::addItem);
            compositeItem = newItem;
        }
        for (int i = 0; i < compositeItem.getItemCount(); i++) {
            Item subItem = compositeItem.getItem(i);
            Item replacedItem = replaceOrItems(subItem, hits);
            if (replacedItem != subItem) {
                compositeItem.setItem(i, replacedItem);
            }
        }
        return compositeItem;
    }

}