/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.index.query; import org.apache.lucene.search.FuzzyQuery; import org.apache.lucene.search.Query; import org.opensearch.core.ParseField; import org.opensearch.core.common.ParsingException; import org.opensearch.core.common.io.stream.StreamInput; import org.opensearch.core.common.io.stream.StreamOutput; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.core.xcontent.XContentParser; import org.opensearch.index.search.MatchQuery; import org.opensearch.index.search.MatchQuery.ZeroTermsQuery; import java.io.IOException; import java.util.Objects; /** * Match query is a query that analyzes the text and constructs a phrase prefix * query as the result of the analysis. * * @opensearch.internal */ public class MatchPhrasePrefixQueryBuilder extends AbstractQueryBuilder { public static final String NAME = "match_phrase_prefix"; public static final ParseField MAX_EXPANSIONS_FIELD = new ParseField("max_expansions"); public static final ParseField ZERO_TERMS_QUERY_FIELD = new ParseField("zero_terms_query"); private final String fieldName; private final Object value; private String analyzer; private int slop = MatchQuery.DEFAULT_PHRASE_SLOP; private int maxExpansions = FuzzyQuery.defaultMaxExpansions; private ZeroTermsQuery zeroTermsQuery = MatchQuery.DEFAULT_ZERO_TERMS_QUERY; public MatchPhrasePrefixQueryBuilder(String fieldName, Object value) { if (fieldName == null) { throw new IllegalArgumentException("[" + NAME + "] requires fieldName"); } if (value == null) { throw new IllegalArgumentException("[" + NAME + "] requires query value"); } this.fieldName = fieldName; this.value = value; } /** * Read from a stream. */ public MatchPhrasePrefixQueryBuilder(StreamInput in) throws IOException { super(in); fieldName = in.readString(); value = in.readGenericValue(); slop = in.readVInt(); maxExpansions = in.readVInt(); analyzer = in.readOptionalString(); this.zeroTermsQuery = ZeroTermsQuery.readFromStream(in); } @Override protected void doWriteTo(StreamOutput out) throws IOException { out.writeString(fieldName); out.writeGenericValue(value); out.writeVInt(slop); out.writeVInt(maxExpansions); out.writeOptionalString(analyzer); zeroTermsQuery.writeTo(out); } /** Returns the field name used in this query. */ public String fieldName() { return this.fieldName; } /** Returns the value used in this query. */ public Object value() { return this.value; } /** * Explicitly set the analyzer to use. Defaults to use explicit mapping * config for the field, or, if not set, the default search analyzer. */ public MatchPhrasePrefixQueryBuilder analyzer(String analyzer) { this.analyzer = analyzer; return this; } /** Get the analyzer to use, if previously set, otherwise {@code null} */ public String analyzer() { return this.analyzer; } /** Sets a slop factor for phrase queries */ public MatchPhrasePrefixQueryBuilder slop(int slop) { if (slop < 0) { throw new IllegalArgumentException("No negative slop allowed."); } this.slop = slop; return this; } /** Get the slop factor for phrase queries. */ public int slop() { return this.slop; } /** * The number of term expansions to use. */ public MatchPhrasePrefixQueryBuilder maxExpansions(int maxExpansions) { if (maxExpansions < 0) { throw new IllegalArgumentException("No negative maxExpansions allowed."); } this.maxExpansions = maxExpansions; return this; } /** * Get the (optional) number of term expansions when using fuzzy or prefix * type query. */ public int maxExpansions() { return this.maxExpansions; } /** * Sets query to use in case no query terms are available, e.g. after analysis removed them. * Defaults to {@link ZeroTermsQuery#NONE}, but can be set to * {@link ZeroTermsQuery#ALL} instead. */ public MatchPhrasePrefixQueryBuilder zeroTermsQuery(ZeroTermsQuery zeroTermsQuery) { if (zeroTermsQuery == null) { throw new IllegalArgumentException("[" + NAME + "] requires zeroTermsQuery to be non-null"); } this.zeroTermsQuery = zeroTermsQuery; return this; } public ZeroTermsQuery zeroTermsQuery() { return this.zeroTermsQuery; } @Override public String getWriteableName() { return NAME; } @Override protected void doXContent(XContentBuilder builder, Params params) throws IOException { builder.startObject(NAME); builder.startObject(fieldName); builder.field(MatchQueryBuilder.QUERY_FIELD.getPreferredName(), value); if (analyzer != null) { builder.field(MatchQueryBuilder.ANALYZER_FIELD.getPreferredName(), analyzer); } builder.field(MatchPhraseQueryBuilder.SLOP_FIELD.getPreferredName(), slop); builder.field(MAX_EXPANSIONS_FIELD.getPreferredName(), maxExpansions); builder.field(ZERO_TERMS_QUERY_FIELD.getPreferredName(), zeroTermsQuery.toString()); printBoostAndQueryName(builder); builder.endObject(); builder.endObject(); } @Override protected Query doToQuery(QueryShardContext context) throws IOException { // validate context specific fields if (analyzer != null && context.getIndexAnalyzers().get(analyzer) == null) { throw new QueryShardException(context, "[" + NAME + "] analyzer [" + analyzer + "] not found"); } MatchQuery matchQuery = new MatchQuery(context); if (analyzer != null) { matchQuery.setAnalyzer(analyzer); } matchQuery.setPhraseSlop(slop); matchQuery.setMaxExpansions(maxExpansions); matchQuery.setZeroTermsQuery(zeroTermsQuery); return matchQuery.parse(MatchQuery.Type.PHRASE_PREFIX, fieldName, value); } @Override protected boolean doEquals(MatchPhrasePrefixQueryBuilder other) { return Objects.equals(fieldName, other.fieldName) && Objects.equals(value, other.value) && Objects.equals(analyzer, other.analyzer) && Objects.equals(slop, other.slop) && Objects.equals(maxExpansions, other.maxExpansions) && Objects.equals(zeroTermsQuery, other.zeroTermsQuery); } @Override protected int doHashCode() { return Objects.hash(fieldName, value, analyzer, slop, maxExpansions, zeroTermsQuery); } public static MatchPhrasePrefixQueryBuilder fromXContent(XContentParser parser) throws IOException { String fieldName = null; Object value = null; float boost = AbstractQueryBuilder.DEFAULT_BOOST; String analyzer = null; int slop = MatchQuery.DEFAULT_PHRASE_SLOP; int maxExpansion = FuzzyQuery.defaultMaxExpansions; String queryName = null; XContentParser.Token token; String currentFieldName = null; ZeroTermsQuery zeroTermsQuery = MatchQuery.DEFAULT_ZERO_TERMS_QUERY; while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) { if (token == XContentParser.Token.FIELD_NAME) { currentFieldName = parser.currentName(); } else if (token == XContentParser.Token.START_OBJECT) { throwParsingExceptionOnMultipleFields(NAME, parser.getTokenLocation(), fieldName, currentFieldName); fieldName = currentFieldName; while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) { if (token == XContentParser.Token.FIELD_NAME) { currentFieldName = parser.currentName(); } else if (token.isValue()) { if (MatchQueryBuilder.QUERY_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { value = parser.objectText(); } else if (MatchQueryBuilder.ANALYZER_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { analyzer = parser.text(); } else if (AbstractQueryBuilder.BOOST_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { boost = parser.floatValue(); } else if (MatchPhraseQueryBuilder.SLOP_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { slop = parser.intValue(); } else if (MAX_EXPANSIONS_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { maxExpansion = parser.intValue(); } else if (AbstractQueryBuilder.NAME_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { queryName = parser.text(); } else if (ZERO_TERMS_QUERY_FIELD.match(currentFieldName, parser.getDeprecationHandler())) { String zeroTermsValue = parser.text(); if ("none".equalsIgnoreCase(zeroTermsValue)) { zeroTermsQuery = ZeroTermsQuery.NONE; } else if ("all".equalsIgnoreCase(zeroTermsValue)) { zeroTermsQuery = ZeroTermsQuery.ALL; } else { throw new ParsingException( parser.getTokenLocation(), "Unsupported zero_terms_query value [" + zeroTermsValue + "]" ); } } else { throw new ParsingException( parser.getTokenLocation(), "[" + NAME + "] query does not support [" + currentFieldName + "]" ); } } else { throw new ParsingException( parser.getTokenLocation(), "[" + NAME + "] unknown token [" + token + "] after [" + currentFieldName + "]" ); } } } else { throwParsingExceptionOnMultipleFields(NAME, parser.getTokenLocation(), fieldName, parser.currentName()); fieldName = parser.currentName(); value = parser.objectText(); } } MatchPhrasePrefixQueryBuilder matchQuery = new MatchPhrasePrefixQueryBuilder(fieldName, value); matchQuery.analyzer(analyzer); matchQuery.slop(slop); matchQuery.maxExpansions(maxExpansion); matchQuery.queryName(queryName); matchQuery.boost(boost); matchQuery.zeroTermsQuery(zeroTermsQuery); return matchQuery; } }