2010-06-08 18:04:34 +03:00
|
|
|
/*
|
2014-01-06 22:48:02 +01:00
|
|
|
* 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
|
2010-06-08 18:04:34 +03:00
|
|
|
*
|
|
|
|
* 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-06-08 18:04:34 +03:00
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
import com.google.common.collect.Lists;
|
2010-09-12 23:20:13 +02:00
|
|
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
2010-06-08 18:04:34 +03:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A filter that matches documents matching boolean combinations of other filters.
|
2015-05-05 08:27:52 +02:00
|
|
|
* @deprecated Use {@link BoolQueryBuilder} instead
|
2010-06-08 18:04:34 +03:00
|
|
|
*/
|
2015-04-09 18:33:27 +02:00
|
|
|
@Deprecated
|
2015-05-05 08:27:52 +02:00
|
|
|
public class AndQueryBuilder extends BaseQueryBuilder {
|
2010-06-08 18:04:34 +03:00
|
|
|
|
2015-05-05 08:27:52 +02:00
|
|
|
private ArrayList<QueryBuilder> filters = Lists.newArrayList();
|
2010-06-08 18:04:34 +03:00
|
|
|
|
2015-05-05 08:27:52 +02:00
|
|
|
private String queryName;
|
2010-09-11 12:38:19 +03:00
|
|
|
|
2015-05-05 08:27:52 +02:00
|
|
|
public AndQueryBuilder(QueryBuilder... filters) {
|
|
|
|
for (QueryBuilder filter : filters) {
|
2010-06-08 18:04:34 +03:00
|
|
|
this.filters.add(filter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a filter to the list of filters to "and".
|
|
|
|
*/
|
2015-05-05 08:27:52 +02:00
|
|
|
public AndQueryBuilder add(QueryBuilder filterBuilder) {
|
2010-06-08 18:04:34 +03:00
|
|
|
filters.add(filterBuilder);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2010-09-11 12:38:19 +03:00
|
|
|
/**
|
|
|
|
* Sets the filter name for the filter that can be used when searching for matched_filters per hit.
|
|
|
|
*/
|
2015-05-05 08:27:52 +02:00
|
|
|
public AndQueryBuilder queryName(String queryName) {
|
|
|
|
this.queryName = queryName;
|
2010-09-11 12:38:19 +03:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
protected void doXContent(XContentBuilder builder, Params params) throws IOException {
|
2015-05-05 08:27:52 +02:00
|
|
|
builder.startObject(AndQueryParser.NAME);
|
2010-06-08 18:04:34 +03:00
|
|
|
builder.startArray("filters");
|
2015-05-05 08:27:52 +02:00
|
|
|
for (QueryBuilder filter : filters) {
|
2010-06-08 18:04:34 +03:00
|
|
|
filter.toXContent(builder, params);
|
|
|
|
}
|
|
|
|
builder.endArray();
|
2015-05-05 08:27:52 +02:00
|
|
|
if (queryName != null) {
|
|
|
|
builder.field("_name", queryName);
|
2010-06-08 18:04:34 +03:00
|
|
|
}
|
|
|
|
builder.endObject();
|
|
|
|
}
|
|
|
|
}
|