Skip to content
Snippets Groups Projects
Commit 648782c9 authored by srosse's avatar srosse
Browse files

OO-921: don't eat the ParseException but throw it away, service handle it

parent e08950ca
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,7 @@ package org.olat.search.service; ...@@ -22,6 +22,7 @@ package org.olat.search.service;
import java.util.List; import java.util.List;
import java.util.concurrent.Callable; import java.util.concurrent.Callable;
import org.apache.lucene.queryparser.classic.ParseException;
import org.apache.lucene.search.BooleanQuery; import org.apache.lucene.search.BooleanQuery;
import org.apache.lucene.search.IndexSearcher; import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.TopDocs; import org.apache.lucene.search.TopDocs;
...@@ -66,7 +67,7 @@ class SearchCallable implements Callable<SearchResults> { ...@@ -66,7 +67,7 @@ class SearchCallable implements Callable<SearchResults> {
} }
@Override @Override
public SearchResults call() { public SearchResults call() throws ParseException {
try { try {
boolean debug = log.isDebug(); boolean debug = log.isDebug();
...@@ -80,17 +81,19 @@ class SearchCallable implements Callable<SearchResults> { ...@@ -80,17 +81,19 @@ class SearchCallable implements Callable<SearchResults> {
BooleanQuery query = searchService.createQuery(queryString, condQueries); BooleanQuery query = searchService.createQuery(queryString, condQueries);
if(debug) log.debug("query=" + query); if(debug) log.debug("query=" + query);
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
int n = SearchServiceFactory.getService().getSearchModuleConfig().getMaxHits(); int n = SearchServiceFactory.getService().getSearchModuleConfig().getMaxHits();
TopDocs docs = searcher.search(query, n); TopDocs docs = searcher.search(query, n);
long queryTime = System.currentTimeMillis() - startTime; long queryTime = System.currentTimeMillis() - startTime;
if(debug) log.debug("hits.length()=" + docs.totalHits); if(debug) log.debug("hits.length()=" + docs.totalHits);
SearchResultsImpl searchResult = new SearchResultsImpl(searchService.getMainIndexer(), searcher, docs, query, searchService.getAnalyzer(), identity, roles, firstResult, maxResults, doHighlighting, false); SearchResultsImpl searchResult = new SearchResultsImpl(searchService.getMainIndexer(), searcher, docs, query, searchService.getAnalyzer(), identity, roles, firstResult, maxResults, doHighlighting, false);
searchResult.setQueryTime(queryTime); searchResult.setQueryTime(queryTime);
searchResult.setNumberOfIndexDocuments(docs.totalHits); searchResult.setNumberOfIndexDocuments(docs.totalHits);
return searchResult; return searchResult;
} catch(ParseException pex) {
throw pex;
} catch (Exception naex) { } catch (Exception naex) {
log.error("", naex); log.error("", naex);
return null; return null;
......
...@@ -32,6 +32,7 @@ import java.util.Calendar; ...@@ -32,6 +32,7 @@ import java.util.Calendar;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future; import java.util.concurrent.Future;
...@@ -228,13 +229,23 @@ public class SearchServiceImpl implements SearchService { ...@@ -228,13 +229,23 @@ public class SearchServiceImpl implements SearchService {
public SearchResults doSearch(String queryString, List<String> condQueries, Identity identity, Roles roles, public SearchResults doSearch(String queryString, List<String> condQueries, Identity identity, Roles roles,
int firstResult, int maxResults, boolean doHighlighting) int firstResult, int maxResults, boolean doHighlighting)
throws ServiceNotAvailableException, ParseException { throws ServiceNotAvailableException, ParseException {
try { try {
SearchCallable run = new SearchCallable(queryString, condQueries, identity, roles, firstResult, maxResults, doHighlighting, this); SearchCallable run = new SearchCallable(queryString, condQueries, identity, roles, firstResult, maxResults, doHighlighting, this);
Future<SearchResults> futureResults = searchExecutor.submit(run); Future<SearchResults> futureResults = searchExecutor.submit(run);
SearchResults results = futureResults.get(); SearchResults results = futureResults.get();
queryCount++; queryCount++;
return results; return results;
} catch (Exception e) { } catch (InterruptedException e) {
log.error("", e);
return null;
} catch (ExecutionException e) {
Throwable e1 = e.getCause();
if(e1 instanceof ParseException) {
throw (ParseException)e1;
} else if(e1 instanceof ServiceNotAvailableException) {
throw (ServiceNotAvailableException)e1;
}
log.error("", e); log.error("", e);
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment