Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.queries.function.valuesource;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.queries.function.FunctionValues;
import org.apache.lucene.queries.function.ValueSource;
import org.apache.lucene.search.IndexSearcher;
/**
* Abstract parent class for {@link ValueSource} implementations that wrap multiple ValueSources and
* apply their own logic.
*/
public abstract class MultiFunction extends ValueSource {
protected final List sources;
public MultiFunction(List sources) {
this.sources = sources;
}
protected abstract String name();
@Override
public String description() {
return description(name(), sources);
}
/**
* Helper utility for {@link FunctionValues}
*
* @return true if all of the specified values {@link FunctionValues#exists}
* for the specified doc, else false.
*/
public static boolean allExists(int doc, FunctionValues[] values) throws IOException {
for (FunctionValues v : values) {
if (!v.exists(doc)) {
return false;
}
}
return true;
}
/**
* Helper utility for {@link FunctionValues}
*
* @return true if any of the specified values {@link FunctionValues#exists}
* for the specified doc, else false.
*/
public static boolean anyExists(int doc, FunctionValues[] values) throws IOException {
for (FunctionValues v : values) {
if (v.exists(doc)) {
return true;
}
}
return false;
}
/**
* Equivalent to the {@code FunctionValues[]} method with the same name, but optimized for dealing
* with exactly 2 arguments.
*
* @return true if both of the specified values {@link
* FunctionValues#exists} for the specified doc, else false.
* @see #anyExists(int,FunctionValues[])
*/
public static boolean allExists(int doc, FunctionValues values1, FunctionValues values2)
throws IOException {
return values1.exists(doc) && values2.exists(doc);
}
/**
* Equivalent to the {@code FunctionValues[]} method with the same name, but optimized for dealing
* with exactly 2 arguments.
*
* @return true if either of the specified values {@link
* FunctionValues#exists} for the specified doc, else false.
* @see #anyExists(int,FunctionValues[])
*/
public static boolean anyExists(int doc, FunctionValues values1, FunctionValues values2)
throws IOException {
return values1.exists(doc) || values2.exists(doc);
}
public static String description(String name, List sources) {
StringBuilder sb = new StringBuilder();
sb.append(name).append('(');
boolean firstTime = true;
for (ValueSource source : sources) {
if (firstTime) {
firstTime = false;
} else {
sb.append(',');
}
sb.append(source);
}
sb.append(')');
return sb.toString();
}
public static FunctionValues[] valsArr(
List sources, Map