blob: 699368f50cf2dfffbd5db14d095e89a85c7e18f6 [file] [log] [blame]
/*
* 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.jackrabbit.oak.query.ast;
import java.util.Collections;
import java.util.Set;
import org.apache.jackrabbit.oak.api.PropertyValue;
import org.apache.jackrabbit.oak.api.Type;
import org.apache.jackrabbit.oak.query.index.FilterImpl;
import org.apache.jackrabbit.oak.plugins.memory.PropertyValues;
import org.apache.jackrabbit.oak.spi.query.QueryIndex.FulltextQueryIndex;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Support for "spellcheck(...)
*/
public class SpellcheckImpl extends ConstraintImpl {
private final Logger log = LoggerFactory.getLogger(getClass());
public static final String NATIVE_LUCENE_LANGUAGE = "lucene";
public static final String SPELLCHECK_PREFIX = "spellcheck?term=";
private final String selectorName;
private final StaticOperandImpl expression;
private SelectorImpl selector;
SpellcheckImpl(String selectorName, StaticOperandImpl expression) {
this.selectorName = selectorName;
this.expression = expression;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("spellcheck(");
builder.append(quote(selectorName));
builder.append(", ");
builder.append(getExpression());
builder.append(')');
return builder.toString();
}
@Override
public boolean evaluate() {
// disable evaluation if a fulltext index is used,
// and because we don't know how to process native
// conditions
if (!(selector.getIndex() instanceof FulltextQueryIndex)) {
log.warn("No full-text index was found that can process the condition " + toString());
return false;
}
// we assume the index only returns the requested entries
return true;
}
@Override
public Set<PropertyExistenceImpl> getPropertyExistenceConditions() {
return Collections.emptySet();
}
@Override
public void restrict(FilterImpl f) {
if (f.getSelector().equals(selector)) {
PropertyValue p = expression.currentValue();
String term = p.getValue(Type.STRING);
String query = SPELLCHECK_PREFIX + term;
PropertyValue v = PropertyValues.newString(query);
f.restrictProperty(NativeFunctionImpl.NATIVE_PREFIX + NATIVE_LUCENE_LANGUAGE, Operator.EQUAL, v);
}
}
@Override
public void restrictPushDown(SelectorImpl s) {
if (s.equals(selector)) {
selector.restrictSelector(this);
}
}
@Override
public Set<SelectorImpl> getSelectors() {
return Collections.emptySet();
}
@Override
boolean accept(AstVisitor v) {
return v.visit(this);
}
public void bindSelector(SourceImpl source) {
selector = source.getExistingSelector(selectorName);
}
public StaticOperandImpl getExpression() {
return expression;
}
@Override
public AstElement copyOf() {
return new SpellcheckImpl(selectorName, expression);
}
@Override
public boolean requiresFullTextIndex() {
return true;
}
}