com.jaeksoft.searchlib.web.controller.query.SpellCheckController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2008-2012 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSearchServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.web.controller.query;
import java.util.Set;
import java.util.TreeSet;
import org.zkoss.bind.annotation.BindingParam;
import org.zkoss.bind.annotation.Command;
import org.zkoss.bind.annotation.NotifyChange;
import com.jaeksoft.searchlib.Client;
import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.request.RequestTypeEnum;
import com.jaeksoft.searchlib.request.SpellCheckRequest;
import com.jaeksoft.searchlib.schema.Indexed;
import com.jaeksoft.searchlib.schema.SchemaField;
import com.jaeksoft.searchlib.spellcheck.SpellCheckDistanceEnum;
import com.jaeksoft.searchlib.spellcheck.SpellCheckField;
import com.jaeksoft.searchlib.spellcheck.SpellCheckFieldList;
public class SpellCheckController extends AbstractQueryController {
private transient TreeSet fieldLeft;
private transient SpellCheckField currentSpellCheckField;
private transient SpellCheckField selectedSpellCheckField;
public SpellCheckController() throws SearchLibException {
super(RequestTypeEnum.SpellCheckRequest);
}
@Override
protected void reset() throws SearchLibException {
fieldLeft = null;
currentSpellCheckField = null;
selectedSpellCheckField = null;
}
public boolean isFieldLeft() throws SearchLibException {
synchronized (this) {
Set set = getSpellCheckFieldLeft();
if (set == null)
return false;
return set.size() > 0;
}
}
public Set getSpellCheckFieldLeft() throws SearchLibException {
synchronized (this) {
if (fieldLeft != null)
return fieldLeft;
Client client = getClient();
if (client == null)
return null;
SpellCheckRequest request = (SpellCheckRequest) getRequest();
if (request == null)
return null;
SpellCheckFieldList spellCheckFieldList = request
.getSpellCheckFieldList();
fieldLeft = new TreeSet();
for (SchemaField field : client.getSchema().getFieldList()) {
String fieldName = field.getName();
if (selectedSpellCheckField != null
&& selectedSpellCheckField.getName().equals(fieldName)) {
fieldLeft.add(field.getName());
continue;
}
if (field.checkIndexed(Indexed.YES))
if (spellCheckFieldList.get(fieldName) == null)
fieldLeft.add(field.getName());
}
return fieldLeft;
}
}
@Command
@NotifyChange("*")
public void onFieldRemove(
@BindingParam("scFieldItem") SpellCheckField spellCheckField)
throws SearchLibException {
synchronized (this) {
((SpellCheckRequest) getRequest()).getSpellCheckFieldList().remove(
spellCheckField.getName());
onCancel();
}
}
@Command
@NotifyChange("*")
public void onFieldAdd() throws SearchLibException {
synchronized (this) {
if (selectedSpellCheckField != null)
selectedSpellCheckField.copyFrom(currentSpellCheckField);
else
((SpellCheckRequest) getRequest()).getSpellCheckFieldList()
.put(currentSpellCheckField);
onCancel();
}
}
@Command
@NotifyChange("*")
public void onCancel() throws SearchLibException {
synchronized (this) {
reset();
}
}
public SpellCheckDistanceEnum[] getStringDistanceList() {
return SpellCheckDistanceEnum.values();
}
public SpellCheckField getCurrent() throws SearchLibException {
if (currentSpellCheckField != null)
return currentSpellCheckField;
getSpellCheckFieldLeft();
if (fieldLeft == null || fieldLeft.size() == 0)
return null;
String fieldName = fieldLeft.first();
currentSpellCheckField = new SpellCheckField(fieldName, 0.5F, 5,
SpellCheckDistanceEnum.LevensteinDistance);
return currentSpellCheckField;
}
/**
* @return the selectedSpellCheckField
*/
public SpellCheckField getSelected() {
return selectedSpellCheckField;
}
/**
* @param selectedSpellCheckField
* the selectedSpellCheckField to set
* @throws SearchLibException
*/
public void setSelected(SpellCheckField selectedSpellCheckField)
throws SearchLibException {
this.selectedSpellCheckField = selectedSpellCheckField;
this.currentSpellCheckField = new SpellCheckField(
selectedSpellCheckField);
fieldLeft = null;
reload();
}
public boolean isSelection() {
return this.selectedSpellCheckField != null;
}
public boolean isNoSelection() {
return !isSelection();
}
}