/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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.apache.lucene.queryparser.flexible.core.processors;

import java.util.*;

import org.apache.lucene.queryparser.flexible.core.QueryNodeException;
import org.apache.lucene.queryparser.flexible.core.config.QueryConfigHandler;
import org.apache.lucene.queryparser.flexible.core.nodes.QueryNode;

A QueryNodeProcessorPipeline class should be used to build a query node processor pipeline. When a query node tree is processed using this class, it passes the query node tree to each processor on the pipeline and the result from each processor is passed to the next one, always following the order the processors were on the pipeline. When a QueryConfigHandler object is set on a QueryNodeProcessorPipeline, it also takes care of setting this QueryConfigHandler on all processor on pipeline.
/** * A {@link QueryNodeProcessorPipeline} class should be used to build a query * node processor pipeline. * * When a query node tree is processed using this class, it passes the query * node tree to each processor on the pipeline and the result from each * processor is passed to the next one, always following the order the * processors were on the pipeline. * * When a {@link QueryConfigHandler} object is set on a * {@link QueryNodeProcessorPipeline}, it also takes care of setting this * {@link QueryConfigHandler} on all processor on pipeline. * */
public class QueryNodeProcessorPipeline implements QueryNodeProcessor, List<QueryNodeProcessor> { private LinkedList<QueryNodeProcessor> processors = new LinkedList<>(); private QueryConfigHandler queryConfig;
Constructs an empty query node processor pipeline.
/** * Constructs an empty query node processor pipeline. */
public QueryNodeProcessorPipeline() { // empty constructor }
Constructs with a QueryConfigHandler object.
/** * Constructs with a {@link QueryConfigHandler} object. */
public QueryNodeProcessorPipeline(QueryConfigHandler queryConfigHandler) { this.queryConfig = queryConfigHandler; }
For reference about this method check: QueryNodeProcessor.getQueryConfigHandler().
See Also:
Returns:QueryConfigHandler the query configuration handler to be set.
/** * For reference about this method check: * {@link QueryNodeProcessor#getQueryConfigHandler()}. * * @return QueryConfigHandler the query configuration handler to be set. * * @see QueryNodeProcessor#setQueryConfigHandler(QueryConfigHandler) * @see QueryConfigHandler */
@Override public QueryConfigHandler getQueryConfigHandler() { return this.queryConfig; }
For reference about this method check: QueryNodeProcessor.process(QueryNode).
Params:
  • queryTree – the query node tree to be processed
Throws:
See Also:
/** * For reference about this method check: * {@link QueryNodeProcessor#process(QueryNode)}. * * @param queryTree the query node tree to be processed * * @throws QueryNodeException if something goes wrong during the query node * processing * * @see QueryNode */
@Override public QueryNode process(QueryNode queryTree) throws QueryNodeException { for (QueryNodeProcessor processor : this.processors) { queryTree = processor.process(queryTree); } return queryTree; }
For reference about this method check: QueryNodeProcessor.setQueryConfigHandler(QueryConfigHandler).
Params:
  • queryConfigHandler – the query configuration handler to be set.
See Also:
/** * For reference about this method check: * {@link QueryNodeProcessor#setQueryConfigHandler(QueryConfigHandler)}. * * @param queryConfigHandler the query configuration handler to be set. * * @see QueryNodeProcessor#getQueryConfigHandler() * @see QueryConfigHandler */
@Override public void setQueryConfigHandler(QueryConfigHandler queryConfigHandler) { this.queryConfig = queryConfigHandler; for (QueryNodeProcessor processor : this.processors) { processor.setQueryConfigHandler(this.queryConfig); } }
See Also:
  • add.add(Object)
/** * @see List#add(Object) */
@Override public boolean add(QueryNodeProcessor processor) { boolean added = this.processors.add(processor); if (added) { processor.setQueryConfigHandler(this.queryConfig); } return added; }
See Also:
  • add.add(int, Object)
/** * @see List#add(int, Object) */
@Override public void add(int index, QueryNodeProcessor processor) { this.processors.add(index, processor); processor.setQueryConfigHandler(this.queryConfig); }
See Also:
  • addAll.addAll(Collection)
/** * @see List#addAll(Collection) */
@Override public boolean addAll(Collection<? extends QueryNodeProcessor> c) { boolean anyAdded = this.processors.addAll(c); for (QueryNodeProcessor processor : c) { processor.setQueryConfigHandler(this.queryConfig); } return anyAdded; }
See Also:
  • addAll.addAll(int, Collection)
/** * @see List#addAll(int, Collection) */
@Override public boolean addAll(int index, Collection<? extends QueryNodeProcessor> c) { boolean anyAdded = this.processors.addAll(index, c); for (QueryNodeProcessor processor : c) { processor.setQueryConfigHandler(this.queryConfig); } return anyAdded; }
See Also:
  • clear.clear()
/** * @see List#clear() */
@Override public void clear() { this.processors.clear(); }
See Also:
  • contains.contains(Object)
/** * @see List#contains(Object) */
@Override public boolean contains(Object o) { return this.processors.contains(o); }
See Also:
  • containsAll.containsAll(Collection)
/** * @see List#containsAll(Collection) */
@Override public boolean containsAll(Collection<?> c) { return this.processors.containsAll(c); }
See Also:
  • get.get(int)
/** * @see List#get(int) */
@Override public QueryNodeProcessor get(int index) { return this.processors.get(index); }
See Also:
  • indexOf.indexOf(Object)
/** * @see List#indexOf(Object) */
@Override public int indexOf(Object o) { return this.processors.indexOf(o); }
See Also:
  • isEmpty.isEmpty()
/** * @see List#isEmpty() */
@Override public boolean isEmpty() { return this.processors.isEmpty(); }
See Also:
  • iterator.iterator()
/** * @see List#iterator() */
@Override public Iterator<QueryNodeProcessor> iterator() { return this.processors.iterator(); }
See Also:
  • lastIndexOf.lastIndexOf(Object)
/** * @see List#lastIndexOf(Object) */
@Override public int lastIndexOf(Object o) { return this.processors.lastIndexOf(o); }
See Also:
  • listIterator.listIterator()
/** * @see List#listIterator() */
@Override public ListIterator<QueryNodeProcessor> listIterator() { return this.processors.listIterator(); }
See Also:
  • listIterator.listIterator(int)
/** * @see List#listIterator(int) */
@Override public ListIterator<QueryNodeProcessor> listIterator(int index) { return this.processors.listIterator(index); }
See Also:
  • remove.remove(Object)
/** * @see List#remove(Object) */
@Override public boolean remove(Object o) { return this.processors.remove(o); }
See Also:
  • remove.remove(int)
/** * @see List#remove(int) */
@Override public QueryNodeProcessor remove(int index) { return this.processors.remove(index); }
See Also:
  • removeAll.removeAll(Collection)
/** * @see List#removeAll(Collection) */
@Override public boolean removeAll(Collection<?> c) { return this.processors.removeAll(c); }
See Also:
  • retainAll.retainAll(Collection)
/** * @see List#retainAll(Collection) */
@Override public boolean retainAll(Collection<?> c) { return this.processors.retainAll(c); }
See Also:
  • set.set(int, Object)
/** * @see List#set(int, Object) */
@Override public QueryNodeProcessor set(int index, QueryNodeProcessor processor) { QueryNodeProcessor oldProcessor = this.processors.set(index, processor); if (oldProcessor != processor) { processor.setQueryConfigHandler(this.queryConfig); } return oldProcessor; }
See Also:
  • size.size()
/** * @see List#size() */
@Override public int size() { return this.processors.size(); }
See Also:
  • subList.subList(int, int)
/** * @see List#subList(int, int) */
@Override public List<QueryNodeProcessor> subList(int fromIndex, int toIndex) { return this.processors.subList(fromIndex, toIndex); }
See Also:
  • toArray.toArray(Object[])
/** * @see List#toArray(Object[]) */
@Override public <T> T[] toArray(T[] array) { return this.processors.toArray(array); }
See Also:
  • toArray.toArray()
/** * @see List#toArray() */
@Override public Object[] toArray() { return this.processors.toArray(); } }