diff lucene/src/luan/modules/lucene/LuceneSearcher.java @ 257:c5c60eca33dd

allow Lucene search for 0 rows git-svn-id: https://luan-java.googlecode.com/svn/trunk@258 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 28 Oct 2014 03:05:37 +0000
parents b25feac318d8
children 8afe9f2fdfec
line wrap: on
line diff
--- a/lucene/src/luan/modules/lucene/LuceneSearcher.java	Tue Oct 28 01:59:35 2014 +0000
+++ b/lucene/src/luan/modules/lucene/LuceneSearcher.java	Tue Oct 28 03:05:37 2014 +0000
@@ -16,6 +16,7 @@
 import org.apache.lucene.search.TermQuery;
 import org.apache.lucene.search.BooleanQuery;
 import org.apache.lucene.search.BooleanClause;
+import org.apache.lucene.search.TotalHitCountCollector;
 import luan.Luan;
 import luan.LuanState;
 import luan.LuanTable;
@@ -159,10 +160,21 @@
 		return new Sort(flds);
 	}
 
+	private static final LuanFunction nothingFn = new LuanFunction() {
+		@Override public Object call(LuanState luan,Object[] args) {
+			return LuanFunction.NOTHING;
+		}
+	};
+
 	public Object[] search( LuanState luan, LuanTable queryTbl, int n, LuanTable sortTbl ) throws LuanException, IOException {
 		Query query = query(queryTbl);
 		if( query == null )
 			throw luan.exception("invalid query");
+		if( n==0 ) {
+			TotalHitCountCollector thcc = new TotalHitCountCollector();
+			searcher.search(query,thcc);
+			return new Object[]{ nothingFn, 0, thcc.getTotalHits() };
+		}
 		TopDocs td = sortTbl==null ? searcher.search(query,n) : searcher.search(query,n,sort(luan,sortTbl));
 		final ScoreDoc[] scoreDocs = td.scoreDocs;
 		LuanFunction results = new LuanFunction() {