/** * 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.solr.search.function; import org.apache.lucene.search.Filter; import org.apache.lucene.search.DocIdSet; import org.apache.lucene.search.DocIdSetIterator; import org.apache.lucene.search.Searcher; import org.apache.lucene.index.IndexReader; import org.apache.solr.search.SolrFilter; import java.io.IOException; import java.util.Map; /** * RangeFilter over a ValueSource. */ public class ValueSourceRangeFilter extends SolrFilter { private final ValueSource valueSource; private final String lowerVal; private final String upperVal; private final boolean includeLower; private final boolean includeUpper; public ValueSourceRangeFilter(ValueSource valueSource, String lowerVal, String upperVal, boolean includeLower, boolean includeUpper) { this.valueSource = valueSource; this.lowerVal = lowerVal; this.upperVal = upperVal; this.includeLower = lowerVal != null && includeLower; this.includeUpper = upperVal != null && includeUpper; } public DocIdSet getDocIdSet(final Map context, final IndexReader reader) throws IOException { return new DocIdSet() { public DocIdSetIterator iterator() throws IOException { return valueSource.getValues(context, reader).getRangeScorer(reader, lowerVal, upperVal, includeLower, includeUpper); } }; } @Override public void createWeight(Map context, Searcher searcher) throws IOException { valueSource.createWeight(context, searcher); } public String toString() { StringBuilder sb = new StringBuilder(); sb.append("frange("); sb.append(valueSource); sb.append("):"); sb.append(includeLower ? '[' : '{'); sb.append(lowerVal == null ? "*" : lowerVal); sb.append(" TO "); sb.append(upperVal == null ? "*" : upperVal); sb.append(includeUpper ? ']' : '}'); return sb.toString(); } public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof ValueSourceRangeFilter)) return false; ValueSourceRangeFilter other = (ValueSourceRangeFilter)o; if (!this.valueSource.equals(other.valueSource) || this.includeLower != other.includeLower || this.includeUpper != other.includeUpper ) { return false; } if (this.lowerVal != null ? !this.lowerVal.equals(other.lowerVal) : other.lowerVal != null) return false; if (this.upperVal != null ? !this.upperVal.equals(other.upperVal) : other.upperVal != null) return false; return true; } public int hashCode() { int h = valueSource.hashCode(); h += lowerVal != null ? lowerVal.hashCode() : 0x572353db; h = (h << 16) | (h >>> 16); // rotate to distinguish lower from upper h += (upperVal != null ? (upperVal.hashCode()) : 0xe16fe9e7); h += (includeLower ? 0xdaa47978 : 0) + (includeUpper ? 0x9e634b57 : 0); return h; } }