Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
648782c9
Commit
648782c9
authored
11 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
OO-921: don't eat the ParseException but throw it away, service handle it
parent
e08950ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/olat/search/service/SearchCallable.java
+12
-9
12 additions, 9 deletions
src/main/java/org/olat/search/service/SearchCallable.java
src/main/java/org/olat/search/service/SearchServiceImpl.java
+12
-1
12 additions, 1 deletion
src/main/java/org/olat/search/service/SearchServiceImpl.java
with
24 additions
and
10 deletions
src/main/java/org/olat/search/service/SearchCallable.java
+
12
−
9
View file @
648782c9
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/olat/search/service/SearchServiceImpl.java
+
12
−
1
View file @
648782c9
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment