summaryrefslogtreecommitdiff
path: root/src/fulltext/lucene/LuceneSearcher.java
blob: a5ccbe89291a74dbcb82ba4e7051f6182f6e1b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*

Licensed 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.

*/

/*

LuceneSearcher searches a lucene index.

It is managed by the Apache CouchDB daemon.

*/

//basics
import java.io.*;

//lucene
import org.apache.lucene.index.Term;
import org.apache.lucene.index.IndexReader;

import org.apache.lucene.document.Document;

import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Hits;
import org.apache.lucene.search.TermQuery;
import org.apache.lucene.search.Query;

/*
protocol:
Queries will look like this:

databasename\n
the full text query\n

Then the java reader will read the lines and respond
by outputing each document result:
ok\n
docid1\n
score1\n
docid2\n
score2\n
docid3\n
score3\n
\n

or:

error\n
error_id\n
error message\n

*/
public class LuceneSearcher
{
    public static void main(String[] args) throws Exception
    {

        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

        String db = "";
        String queryString = "";

        while(((db = in.readLine()) != null) && ((queryString = in.readLine()) != null)) {

            IndexSearcher searcher = new IndexSearcher("Lucene/Index/" + db);

            Query query = new TermQuery(new Term("__couchdb_keywords", queryString));

            Hits hits = searcher.search(query);

            System.out.println("ok");
            for(int i = 0; i < hits.length(); i++) {
                Document d = hits.doc(i);
                System.out.println(d.get("__couchdb_document_id"));
                System.out.println(hits.score(i));
            }
            System.out.println();
        }
    }
}