org.apache.camel.component.lucene.LuceneConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-lucene Show documentation
Show all versions of camel-lucene Show documentation
Camel Lucene based search component
/*
* 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.camel.component.lucene;
import java.io.File;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Map;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriParams;
import org.apache.camel.spi.UriPath;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
@UriParams
public class LuceneConfiguration {
private transient URI uri;
private transient String authority;
@UriPath
@Metadata(required = true)
private String host;
@UriPath
@Metadata(required = true)
private LuceneOperation operation;
@UriParam
private File srcDir;
@UriParam
private File indexDir;
@UriParam
private Analyzer analyzer;
@UriParam
private int maxHits;
public LuceneConfiguration() {
}
public LuceneConfiguration(URI uri) {
this.uri = uri;
}
public void parseURI(URI uri, Map parameters, LuceneComponent component) throws Exception {
String protocol = uri.getScheme();
if (!protocol.equalsIgnoreCase("lucene")) {
throw new IllegalArgumentException("Unrecognized Lucene protocol: " + protocol + " for uri: " + uri);
}
this.uri = uri;
this.authority = uri.getAuthority();
if (!isValidAuthority()) {
throw new URISyntaxException(
uri.toASCIIString(),
"Incorrect URI syntax and/or Operation specified for the Lucene endpoint."
+ " Please specify the syntax as \"lucene:[Endpoint Name]:[Operation]?[Query]\"");
}
setHost(retrieveTokenFromAuthority("hostname"));
String op = retrieveTokenFromAuthority("operation");
if (op != null) {
op = op.toLowerCase();
}
setOperation(LuceneOperation.valueOf(op));
srcDir = component.resolveAndRemoveReferenceParameter(
parameters, "srcDir", File.class, null);
indexDir = component.resolveAndRemoveReferenceParameter(
parameters, "indexDir", File.class, new File("file:///./indexDirectory"));
analyzer = component.resolveAndRemoveReferenceParameter(
parameters, "analyzer", Analyzer.class, new StandardAnalyzer());
setMaxHits(component.getAndRemoveParameter(parameters, "maxHits", Integer.class, 10));
}
private boolean isValidAuthority() {
if (!authority.contains(":") || authority.split(":")[0] == null || insertOrQueryCheck()) {
return false;
}
return true;
}
private boolean insertOrQueryCheck() {
return !authority.split(":")[1].equalsIgnoreCase("insert")
&& !authority.split(":")[1].equalsIgnoreCase("query");
}
private String retrieveTokenFromAuthority(String token) {
String retval;
if (token.equalsIgnoreCase("hostname")) {
retval = uri.getAuthority().split(":")[0];
} else {
retval = uri.getAuthority().split(":")[1];
}
return retval;
}
public String getHost() {
return host;
}
/**
* The URL to the lucene server
*/
public void setHost(String host) {
this.host = host;
}
public LuceneOperation getOperation() {
return operation;
}
/**
* Operation to do such as insert or query.
*/
public void setOperation(LuceneOperation operation) {
this.operation = operation;
}
public File getSrcDir() {
return srcDir;
}
/**
* An optional directory containing files to be used to be analyzed and added to the index at producer startup.
*/
public void setSrcDir(File srcDir) {
this.srcDir = srcDir;
}
public File getIndexDir() {
return indexDir;
}
/**
* A file system directory in which index files are created upon analysis of the document by the specified analyzer
*/
public void setIndexDir(File indexDir) {
this.indexDir = indexDir;
}
public Analyzer getAnalyzer() {
return analyzer;
}
/**
* An Analyzer builds TokenStreams, which analyze text. It thus represents a policy for extracting index terms from
* text. The value for analyzer can be any class that extends the abstract class
* org.apache.lucene.analysis.Analyzer. Lucene also offers a rich set of analyzers out of the box
*/
public void setAnalyzer(Analyzer analyzer) {
this.analyzer = analyzer;
}
public int getMaxHits() {
return maxHits;
}
/**
* An integer value that limits the result set of the search operation
*/
public void setMaxHits(int maxHits) {
this.maxHits = maxHits;
}
}