mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-04-02 05:18:49 +00:00
We have some builders, specifically query builders, `SearchSourceBuilder`, `QuerySourceBuilder` and `SuggestBuilder`, that implement `ToXContent` and also allow to build their content as bytes by simply creating a `BytesReference` that holds their json (or yaml etc.) content (`buildAsBytes` methods). They can also print out their content through `toString`. Made sure that those common methods are in one single place and reused where needed. Also, merged `QueryBuilder` and `BaseQueryBuilder` and made `QueryBuilder` an abstract class instead of an interface. Closes #11063
203 lines
6.8 KiB
Java
203 lines
6.8 KiB
Java
/*
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch licenses this 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.
|
|
*/
|
|
|
|
package org.elasticsearch.index.query;
|
|
|
|
import org.apache.lucene.search.MatchAllDocsQuery;
|
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
|
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* A Query that matches documents matching boolean combinations of other queries.
|
|
*/
|
|
public class BoolQueryBuilder extends QueryBuilder implements BoostableQueryBuilder<BoolQueryBuilder> {
|
|
|
|
private final List<QueryBuilder> mustClauses = new ArrayList<>();
|
|
|
|
private final List<QueryBuilder> mustNotClauses = new ArrayList<>();
|
|
|
|
private final List<QueryBuilder> filterClauses = new ArrayList<>();
|
|
|
|
private final List<QueryBuilder> shouldClauses = new ArrayList<>();
|
|
|
|
private float boost = -1;
|
|
|
|
private Boolean disableCoord;
|
|
|
|
private String minimumShouldMatch;
|
|
|
|
private Boolean adjustPureNegative;
|
|
|
|
private String queryName;
|
|
|
|
/**
|
|
* Adds a query that <b>must</b> appear in the matching documents and will
|
|
* contribute to scoring.
|
|
*/
|
|
public BoolQueryBuilder must(QueryBuilder queryBuilder) {
|
|
mustClauses.add(queryBuilder);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Adds a query that <b>must</b> appear in the matching documents but will
|
|
* not contribute to scoring.
|
|
*/
|
|
public BoolQueryBuilder filter(QueryBuilder queryBuilder) {
|
|
filterClauses.add(queryBuilder);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Adds a query that <b>must not</b> appear in the matching documents and
|
|
* will not contribute to scoring.
|
|
*/
|
|
public BoolQueryBuilder mustNot(QueryBuilder queryBuilder) {
|
|
mustNotClauses.add(queryBuilder);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 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)
|
|
*/
|
|
public BoolQueryBuilder should(QueryBuilder queryBuilder) {
|
|
shouldClauses.add(queryBuilder);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@Override
|
|
public BoolQueryBuilder boost(float boost) {
|
|
this.boost = boost;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Disables <tt>Similarity#coord(int,int)</tt> in scoring. Defaults to <tt>false</tt>.
|
|
*/
|
|
public BoolQueryBuilder disableCoord(boolean disableCoord) {
|
|
this.disableCoord = disableCoord;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Specifies a minimum number of the optional (should) boolean clauses which must be satisfied.
|
|
* <p/>
|
|
* <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.
|
|
* <p/>
|
|
* <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
|
|
*/
|
|
public BoolQueryBuilder minimumNumberShouldMatch(int minimumNumberShouldMatch) {
|
|
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;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Returns <code>true</code> iff this query builder has at least one should, must or mustNot clause.
|
|
* Otherwise <code>false</code>.
|
|
*/
|
|
public boolean hasClauses() {
|
|
return !(mustClauses.isEmpty() && shouldClauses.isEmpty() && mustNotClauses.isEmpty());
|
|
}
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
@Override
|
|
protected void doXContent(XContentBuilder builder, Params params) throws IOException {
|
|
builder.startObject("bool");
|
|
doXArrayContent("must", mustClauses, builder, params);
|
|
doXArrayContent("filter", filterClauses, builder, params);
|
|
doXArrayContent("must_not", mustNotClauses, builder, params);
|
|
doXArrayContent("should", shouldClauses, builder, params);
|
|
if (boost != -1) {
|
|
builder.field("boost", boost);
|
|
}
|
|
if (disableCoord != null) {
|
|
builder.field("disable_coord", disableCoord);
|
|
}
|
|
if (minimumShouldMatch != null) {
|
|
builder.field("minimum_should_match", minimumShouldMatch);
|
|
}
|
|
if (adjustPureNegative != null) {
|
|
builder.field("adjust_pure_negative", adjustPureNegative);
|
|
}
|
|
if (queryName != null) {
|
|
builder.field("_name", queryName);
|
|
}
|
|
builder.endObject();
|
|
}
|
|
|
|
private void doXArrayContent(String field, List<QueryBuilder> clauses, XContentBuilder builder, Params params) throws IOException {
|
|
if (clauses.isEmpty()) {
|
|
return;
|
|
}
|
|
if (clauses.size() == 1) {
|
|
builder.field(field);
|
|
clauses.get(0).toXContent(builder, params);
|
|
} else {
|
|
builder.startArray(field);
|
|
for (QueryBuilder clause : clauses) {
|
|
clause.toXContent(builder, params);
|
|
}
|
|
builder.endArray();
|
|
}
|
|
}
|
|
|
|
}
|