%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/thread-self/root/home/waritko/yacy/source/net/yacy/cora/federate/solr/logic/
Upload File :
Create Path :
Current File : //proc/thread-self/root/home/waritko/yacy/source/net/yacy/cora/federate/solr/logic/Disjunction.java

/**
 *  Disjunction
 *  Copyright 2014 by Michael Peter Christen
 *  First released 03.08.2014 at http://yacy.net
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with this program in the file lgpl21.txt
 *  If not, see <http://www.gnu.org/licenses/>.
 */

package net.yacy.cora.federate.solr.logic;

import org.apache.solr.common.SolrDocument;

/**
 * A Disjunction is a desjunction of terms to Solr. The purpose of this class is,
 * to provide a mechanism to reduce the calls to Solr when calling Solr several times with sets of
 * terms which are all disjunctive.
 */
public class Disjunction extends AbstractOperations implements Operations {

    public Disjunction() {
        super("OR");
    }
    
    public Disjunction(final Term t1, final Term t2) {
        super("OR");
        this.addOperand(t1);
        this.addOperand(t2);
    }

    @Override
    public Object clone() {
        Disjunction c = new Disjunction();
        for (Term t: this.terms) c.addOperand(t);
        return c;
    }

    @Override
    public boolean equals(Object otherTerm) {
        if (!(otherTerm instanceof Disjunction)) return false;
        Disjunction o = (Disjunction) otherTerm;
        for (Term t: this.terms) {
            if (!TermTools.isIn(t, o.getOperands())) return false;
        }
        return true;
    }
    
    /**
     * check if this disjunction matches with a given SolrDocument
     * @param doc the SolrDocument to match to
     * @return true, if all literals of this disjunction match with the terms of the document
     */
    @Override
    public boolean matches(SolrDocument doc) {
        for (Term term: this.terms) {
            if (term.matches(doc)) return true;
        }
        return false;
    }
}

Zerion Mini Shell 1.0