/*
* Copyright 2016 the original author or authors.
*
* Licensed 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.springframework.data.gemfire.search.lucene;
import java.util.Collection;
import java.util.List;
import org.apache.geode.cache.lucene.LuceneQueryFactory;
import org.apache.geode.cache.lucene.LuceneQueryProvider;
import org.apache.geode.cache.lucene.LuceneResultStruct;
import org.apache.geode.cache.lucene.PageableLuceneQueryResults;
/**
* The {@link LuceneOperations} interface defines a contract for implementations defining data access operations
* using Lucene queries.
*
* @author John Blum
* @see org.apache.geode.cache.lucene.LuceneQueryFactory
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see org.apache.geode.cache.lucene.LuceneResultStruct
* @see org.apache.geode.cache.lucene.PageableLuceneQueryResults
* @since 1.1.0
*/
@SuppressWarnings("unused")
public interface LuceneOperations {
int DEFAULT_PAGE_SIZE = LuceneQueryFactory.DEFAULT_PAGESIZE;
int DEFAULT_RESULT_LIMIT = LuceneQueryFactory.DEFAULT_LIMIT;
/**
* Executes the given Lucene {@link String query}.
*
* @param <K> {@link Class} type of the key.
* @param <V> {@link Class} type of the value.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @param projectionFields array of {@link String} values specifying the query projection.
* @return a {@link List} of {@link LuceneResultStruct} containing the query results.
* @see org.apache.geode.cache.lucene.LuceneResultStruct
* @see #query(String, String, int, String...)
* @see java.util.List
*/
default <K, V> List<LuceneResultStruct<K, V>> query(String query, String defaultField,
String... projectionFields) {
return query(query, defaultField, DEFAULT_RESULT_LIMIT, projectionFields);
}
/**
* Executes the given Lucene {@link String query} with a limit on the number of results returned.
*
* @param <K> {@link Class} type of the key.
* @param <V> {@link Class} type of the value.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @param resultLimit limit on the number of query results to return.
* @param projectionFields array of {@link String} values specifying the query projection.
* @return a {@link List} of {@link LuceneResultStruct} containing the query results.
* @see org.apache.geode.cache.lucene.LuceneResultStruct
* @see java.util.List
*/
<K, V> List<LuceneResultStruct<K, V>> query(String query, String defaultField,
int resultLimit, String... projectionFields);
/**
* Executes the given Lucene {@link String query} with a limit on the number of results returned
* along with a page size for paging.
*
* @param <K> {@link Class} type of the key.
* @param <V> {@link Class} type of the value.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @param resultLimit limit on the number of query results to return.
* @param pageSize number of results per page.
* @param projectionFields array of {@link String} values specifying the query projection.
* @return a {@link PageableLuceneQueryResults} data structure containing the results of the Lucene query.
* @see org.apache.geode.cache.lucene.PageableLuceneQueryResults
*/
<K, V> PageableLuceneQueryResults<K, V> query(String query, String defaultField,
int resultLimit, int pageSize, String... projectionFields);
/**
* Executes the given Lucene {@link String query}.
*
* @param <K> {@link Class} type of the key.
* @param <V> {@link Class} type of the value.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @param projectionFields array of {@link String} values specifying the query projection.
* @return a {@link List} of {@link LuceneResultStruct} containing the query results.
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see org.apache.geode.cache.lucene.LuceneResultStruct
* @see #query(LuceneQueryProvider, int, String...)
* @see java.util.List
*/
default <K, V> List<LuceneResultStruct<K, V>> query(LuceneQueryProvider queryProvider,
String... projectionFields) {
return query(queryProvider, DEFAULT_RESULT_LIMIT, projectionFields);
}
/**
* Executes the given Lucene {@link String query} with a limit on the number of results returned.
*
* @param <K> {@link Class} type of the key.
* @param <V> {@link Class} type of the value.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @param resultLimit limit on the number of query results to return.
* @param projectionFields array of {@link String} values specifying the query projection.
* @return a {@link List} of {@link LuceneResultStruct} containing the query results.
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see org.apache.geode.cache.lucene.LuceneResultStruct
* @see java.util.List
*/
<K, V> List<LuceneResultStruct<K, V>> query(LuceneQueryProvider queryProvider,
int resultLimit, String... projectionFields);
/**
* Executes the given Lucene {@link String query} with a limit on the number of results returned
* along with a page size for paging.
*
* @param <K> {@link Class} type of the key.
* @param <V> {@link Class} type of the value.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @param resultLimit limit on the number of query results to return.
* @param pageSize number of results per page.
* @param projectionFields array of {@link String} values specifying the query projection.
* @return a {@link PageableLuceneQueryResults} data structure containing the results of the Lucene query.
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see org.apache.geode.cache.lucene.PageableLuceneQueryResults
*/
<K, V> PageableLuceneQueryResults<K, V> query(LuceneQueryProvider queryProvider,
int resultLimit, int pageSize, String... projectionFields);
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of keys
* matching the query clause/predicate.
*
* The number of keys returned is limited by {@link LuceneQueryFactory#DEFAULT_LIMIT}.
*
* @param <K> {@link Class} type of the key.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @return a {@link Collection} of keys matching the Lucene query clause (predicate).
* @see #queryForKeys(String, String, int)
* @see java.util.Collection
*/
default <K> Collection<K> queryForKeys(String query, String defaultField) {
return queryForKeys(query, defaultField, DEFAULT_RESULT_LIMIT);
}
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of keys
* matching the query clause/predicate with a limit on the number of keys returned.
*
* @param <K> {@link Class} type of the key.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @param resultLimit limit on the number of keys returned.
* @return a {@link Collection} of keys matching the Lucene query clause (predicate).
* @see #queryForKeys(String, String, int)
* @see java.util.Collection
*/
<K> Collection<K> queryForKeys(String query, String defaultField, int resultLimit);
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of keys
* matching the query clause/predicate.
*
* The number of keys returned is limited by {@link LuceneQueryFactory#DEFAULT_LIMIT}.
*
* @param <K> {@link Class} type of the key.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @return a {@link Collection} of keys matching the Lucene query clause (predicate).
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see #queryForKeys(String, String, int)
* @see java.util.Collection
*/
default <K> Collection<K> queryForKeys(LuceneQueryProvider queryProvider) {
return queryForKeys(queryProvider, DEFAULT_RESULT_LIMIT);
}
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of keys
* matching the query clause/predicate with a limit on the number of keys returned.
*
* @param <K> {@link Class} type of the key.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @param resultLimit limit on the number of keys returned.
* @return a {@link Collection} of keys matching the Lucene query clause (predicate).
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see #queryForKeys(String, String, int)
* @see java.util.Collection
*/
<K> Collection<K> queryForKeys(LuceneQueryProvider queryProvider, int resultLimit);
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of values
* matching the query clause/predicate.
*
* The number of values returned is limited by {@link LuceneQueryFactory#DEFAULT_LIMIT}.
*
* @param <V> {@link Class} type of the value.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @return a {@link Collection} of values matching Lucene query clause (predicate).
* @see #queryForValues(String, String, int)
* @see java.util.Collection
*/
default <V> Collection<V> queryForValues(String query, String defaultField) {
return queryForValues(query, defaultField, DEFAULT_RESULT_LIMIT);
}
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of values
* matching the query clause/predicate.
*
* @param <V> {@link Class} type of the value.
* @param query {@link String} containing the Lucene query to execute.
* @param defaultField {@link String} specifying the default field used in Lucene queries when a field
* is not explicitly defined in the Lucene query clause.
* @param resultLimit limit on the number of values returned.
* @return a {@link Collection} of values matching Lucene query clause (predicate).
* @see #queryForValues(String, String, int)
* @see java.util.Collection
*/
<V> Collection<V> queryForValues(String query, String defaultField, int resultLimit);
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of values
* matching the query clause/predicate.
*
* The number of values returned is limited by {@link LuceneQueryFactory#DEFAULT_LIMIT}.
*
* @param <V> {@link Class} type of the value.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @return a {@link Collection} of values matching Lucene query clause (predicate).
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see #queryForValues(String, String, int)
* @see java.util.Collection
*/
default <V> Collection<V> queryForValues(LuceneQueryProvider queryProvider) {
return queryForValues(queryProvider, DEFAULT_RESULT_LIMIT);
}
/**
* Executes the given Lucene {@link String query} returning a {@link Collection} of values
* matching the query clause/predicate.
*
* @param <V> {@link Class} type of the value.
* @param queryProvider {@link LuceneQueryProvider} is a provider implementation supplying the Lucene query
* to execute as well as de/serialize to distribute across the cluster.
* @param resultLimit limit on the number of values returned.
* @return a {@link Collection} of values matching Lucene query clause (predicate).
* @see org.apache.geode.cache.lucene.LuceneQueryProvider
* @see #queryForValues(String, String, int)
* @see java.util.Collection
*/
<V> Collection<V> queryForValues(LuceneQueryProvider queryProvider, int resultLimit);
}