aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search-core/src/main/java/com/yahoo/search/predicate/optimization/AndOrSimplifier.java
blob: 0e01f41a4b1ef1dd5febc17f58d03f1f6a224c91 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.predicate.optimization;

import com.yahoo.document.predicate.Conjunction;
import com.yahoo.document.predicate.Disjunction;
import com.yahoo.document.predicate.Negation;
import com.yahoo.document.predicate.Predicate;

import java.util.ArrayList;
import java.util.List;

/**
 * Simplifies a predicate by:
 *  - Combining child-AND/OR nodes with direct parents of the same type
 *  - Pushing negations down to leaf nodes by using De Morgan's law.
 *
 * @author Magnar Nedland
 * @author bjorncs
 */
public class AndOrSimplifier implements PredicateProcessor {

    public Predicate simplifySubTree(Predicate predicate, boolean negated) {
        if (predicate == null) {
            return null;
        }
        if (predicate instanceof Negation) {
            return simplifySubTree(((Negation) predicate).getOperand(), !negated);
        } else if (predicate instanceof Conjunction) {
            List<Predicate> in = ((Conjunction)predicate).getOperands();
            List<Predicate> out = new ArrayList<>(in.size());
            for (Predicate operand : in) {
                operand = simplifySubTree(operand, negated);
                if (operand instanceof Conjunction) {
                    out.addAll(((Conjunction)operand).getOperands());
                } else {
                    out.add(operand);
                }
            }
            if (negated) {
                return new Disjunction(out);
            }
            ((Conjunction)predicate).setOperands(out);
        } else if (predicate instanceof Disjunction) {
            List<Predicate> in = ((Disjunction)predicate).getOperands();
            List<Predicate> out = new ArrayList<>(in.size());
            for (Predicate operand : in) {
                operand = simplifySubTree(operand, negated);
                if (operand instanceof Disjunction) {
                    out.addAll(((Disjunction)operand).getOperands());
                } else {
                    out.add(operand);
                }
            }
            if (negated) {
                return new Conjunction(out);
            }
            ((Disjunction)predicate).setOperands(out);
        } else {
            if (negated) {
                return new Negation(predicate);
            }
        }
        return predicate;
    }

    @Override
    public Predicate process(Predicate predicate, PredicateOptions options) {
        return simplifySubTree(predicate, false);
    }
}