2010-02-08 15:30:06 +02:00
|
|
|
/*
|
2011-12-06 02:42:25 +02:00
|
|
|
* Licensed to ElasticSearch and Shay Banon under one
|
2010-02-08 15:30:06 +02:00
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
2011-12-06 02:42:25 +02:00
|
|
|
* regarding copyright ownership. ElasticSearch licenses this
|
2010-02-08 15:30:06 +02:00
|
|
|
* file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
* with the License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
|
2011-06-03 04:32:27 +03:00
|
|
|
package org.elasticsearch.index.query;
|
2010-02-08 15:30:06 +02:00
|
|
|
|
2013-08-07 12:16:27 +02:00
|
|
|
import org.apache.lucene.search.MatchAllDocsQuery;
|
2010-09-12 23:20:13 +02:00
|
|
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
2010-02-08 15:30:06 +02:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.ArrayList;
|
2010-03-26 00:44:44 +02:00
|
|
|
import java.util.List;
|
2010-02-08 15:30:06 +02:00
|
|
|
|
|
|
|
/**
|
2010-03-02 22:16:35 +02:00
|
|
|
* A Query that matches documents matching boolean combinations of other queries.
|
2010-02-08 15:30:06 +02:00
|
|
|
*/
|
2012-05-30 17:22:08 +02:00
|
|
|
public class BoolQueryBuilder extends BaseQueryBuilder implements BoostableQueryBuilder<BoolQueryBuilder> {
|
2010-02-08 15:30:06 +02:00
|
|
|
|
2011-06-03 04:32:27 +03:00
|
|
|
private ArrayList<QueryBuilder> mustClauses = new ArrayList<QueryBuilder>();
|
2011-05-30 20:32:45 +02:00
|
|
|
|
2011-06-03 04:32:27 +03:00
|
|
|
private ArrayList<QueryBuilder> mustNotClauses = new ArrayList<QueryBuilder>();
|
2011-05-30 20:32:45 +02:00
|
|
|
|
2011-06-03 04:32:27 +03:00
|
|
|
private ArrayList<QueryBuilder> shouldClauses = new ArrayList<QueryBuilder>();
|
2010-02-08 15:30:06 +02:00
|
|
|
|
|
|
|
private float boost = -1;
|
|
|
|
|
|
|
|
private Boolean disableCoord;
|
|
|
|
|
2012-08-22 14:15:08 +02:00
|
|
|
private String minimumShouldMatch;
|
2013-08-07 12:16:27 +02:00
|
|
|
|
|
|
|
private Boolean adjustPureNegative;
|
2010-02-08 15:30:06 +02:00
|
|
|
|
2013-08-28 10:42:33 +02:00
|
|
|
private String queryName;
|
|
|
|
|
2010-03-02 22:16:35 +02:00
|
|
|
/**
|
|
|
|
* Adds a query that <b>must</b> appear in the matching documents.
|
|
|
|
*/
|
2011-06-03 04:32:27 +03:00
|
|
|
public BoolQueryBuilder must(QueryBuilder queryBuilder) {
|
2011-05-30 22:32:38 +02:00
|
|
|
mustClauses.add(queryBuilder);
|
2010-02-08 15:30:06 +02:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-03-02 22:16:35 +02:00
|
|
|
/**
|
|
|
|
* Adds a query that <b>must not</b> appear in the matching documents.
|
|
|
|
*/
|
2011-06-03 04:32:27 +03:00
|
|
|
public BoolQueryBuilder mustNot(QueryBuilder queryBuilder) {
|
2011-05-30 22:32:38 +02:00
|
|
|
mustNotClauses.add(queryBuilder);
|
2010-02-08 15:30:06 +02:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-03-02 22:16:35 +02:00
|
|
|
/**
|
|
|
|
* Adds a query that <i>should</i> appear in the matching documents. For a boolean query with no
|
|
|
|
* <tt>MUST</tt> clauses one or more <code>SHOULD</code> clauses must match a document
|
|
|
|
* for the BooleanQuery to match.
|
|
|
|
*
|
|
|
|
* @see #minimumNumberShouldMatch(int)
|
|
|
|
*/
|
2011-06-03 04:32:27 +03:00
|
|
|
public BoolQueryBuilder should(QueryBuilder queryBuilder) {
|
2011-05-30 22:32:38 +02:00
|
|
|
shouldClauses.add(queryBuilder);
|
2010-02-08 15:30:06 +02:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-03-02 22:16:35 +02:00
|
|
|
/**
|
|
|
|
* Sets the boost for this query. Documents matching this query will (in addition to the normal
|
|
|
|
* weightings) have their score multiplied by the boost provided.
|
|
|
|
*/
|
2010-04-29 00:05:55 +03:00
|
|
|
public BoolQueryBuilder boost(float boost) {
|
2010-02-08 15:30:06 +02:00
|
|
|
this.boost = boost;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-03-02 22:16:35 +02:00
|
|
|
/**
|
|
|
|
* Disables <tt>Similarity#coord(int,int)</tt> in scoring. Defualts to <tt>false</tt>.
|
|
|
|
*/
|
2010-04-29 00:05:55 +03:00
|
|
|
public BoolQueryBuilder disableCoord(boolean disableCoord) {
|
2010-02-08 15:30:06 +02:00
|
|
|
this.disableCoord = disableCoord;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-03-02 22:16:35 +02:00
|
|
|
/**
|
|
|
|
* Specifies a minimum number of the optional (should) boolean clauses which must be satisfied.
|
2011-12-06 02:42:25 +02:00
|
|
|
* <p/>
|
2010-03-02 22:16:35 +02:00
|
|
|
* <p>By default no optional clauses are necessary for a match
|
|
|
|
* (unless there are no required clauses). If this method is used,
|
|
|
|
* then the specified number of clauses is required.
|
2011-12-06 02:42:25 +02:00
|
|
|
* <p/>
|
2010-03-02 22:16:35 +02:00
|
|
|
* <p>Use of this method is totally independent of specifying that
|
|
|
|
* any specific clauses are required (or prohibited). This number will
|
|
|
|
* only be compared against the number of matching optional clauses.
|
|
|
|
*
|
|
|
|
* @param minimumNumberShouldMatch the number of optional clauses that must match
|
|
|
|
*/
|
2010-04-29 00:05:55 +03:00
|
|
|
public BoolQueryBuilder minimumNumberShouldMatch(int minimumNumberShouldMatch) {
|
2012-08-22 14:15:08 +02:00
|
|
|
this.minimumShouldMatch = Integer.toString(minimumNumberShouldMatch);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the minimum should match using the special syntax (for example, supporting percentage).
|
|
|
|
*/
|
|
|
|
public BoolQueryBuilder minimumShouldMatch(String minimumShouldMatch) {
|
|
|
|
this.minimumShouldMatch = minimumShouldMatch;
|
2010-02-08 15:30:06 +02:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-03-26 00:44:44 +02:00
|
|
|
/**
|
2011-05-30 22:32:38 +02:00
|
|
|
* Return <code>true</code> if the query being built has no clause yet
|
2010-03-26 00:44:44 +02:00
|
|
|
*/
|
2011-05-30 22:32:38 +02:00
|
|
|
public boolean hasClauses() {
|
|
|
|
return !mustClauses.isEmpty() || !mustNotClauses.isEmpty() || !shouldClauses.isEmpty();
|
2010-03-26 00:44:44 +02:00
|
|
|
}
|
2013-08-07 12:16:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If a boolean query contains only negative ("must not") clauses should the
|
|
|
|
* BooleanQuery be enhanced with a {@link MatchAllDocsQuery} in order to act
|
|
|
|
* as a pure exclude. The default is <code>true</code>.
|
|
|
|
*/
|
|
|
|
public BoolQueryBuilder adjustPureNegative(boolean adjustPureNegative) {
|
|
|
|
this.adjustPureNegative = adjustPureNegative;
|
|
|
|
return this;
|
|
|
|
}
|
2010-03-26 00:44:44 +02:00
|
|
|
|
2013-08-28 10:42:33 +02:00
|
|
|
/**
|
|
|
|
* Sets the query name for the filter that can be used when searching for matched_filters per hit.
|
|
|
|
*/
|
|
|
|
public BoolQueryBuilder queryName(String queryName) {
|
|
|
|
this.queryName = queryName;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
protected void doXContent(XContentBuilder builder, Params params) throws IOException {
|
2010-02-08 15:30:06 +02:00
|
|
|
builder.startObject("bool");
|
2011-05-30 20:32:45 +02:00
|
|
|
doXArrayContent("must", mustClauses, builder, params);
|
|
|
|
doXArrayContent("must_not", mustNotClauses, builder, params);
|
|
|
|
doXArrayContent("should", shouldClauses, builder, params);
|
2010-02-08 15:30:06 +02:00
|
|
|
if (boost != -1) {
|
|
|
|
builder.field("boost", boost);
|
|
|
|
}
|
|
|
|
if (disableCoord != null) {
|
2010-04-04 17:18:18 +03:00
|
|
|
builder.field("disable_coord", disableCoord);
|
2010-02-08 15:30:06 +02:00
|
|
|
}
|
2012-08-22 14:15:08 +02:00
|
|
|
if (minimumShouldMatch != null) {
|
|
|
|
builder.field("minimum_should_match", minimumShouldMatch);
|
2010-02-08 15:30:06 +02:00
|
|
|
}
|
2013-08-07 12:16:27 +02:00
|
|
|
if (adjustPureNegative != null) {
|
|
|
|
builder.field("adjust_pure_negative", adjustPureNegative);
|
|
|
|
}
|
2013-08-28 10:42:33 +02:00
|
|
|
if (queryName != null) {
|
|
|
|
builder.field("_name", queryName);
|
|
|
|
}
|
2010-02-08 15:30:06 +02:00
|
|
|
builder.endObject();
|
|
|
|
}
|
|
|
|
|
2011-06-03 04:32:27 +03:00
|
|
|
private void doXArrayContent(String field, List<QueryBuilder> clauses, XContentBuilder builder, Params params) throws IOException {
|
2011-05-30 18:58:50 +02:00
|
|
|
if (clauses.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (clauses.size() == 1) {
|
|
|
|
builder.field(field);
|
2011-05-30 22:32:38 +02:00
|
|
|
clauses.get(0).toXContent(builder, params);
|
2011-05-30 18:58:50 +02:00
|
|
|
} else {
|
|
|
|
builder.startArray(field);
|
2011-06-03 04:32:27 +03:00
|
|
|
for (QueryBuilder clause : clauses) {
|
2011-05-30 22:32:38 +02:00
|
|
|
clause.toXContent(builder, params);
|
2011-05-30 18:58:50 +02:00
|
|
|
}
|
|
|
|
builder.endArray();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:30:06 +02:00
|
|
|
}
|