source: trunk/gsdl/src/colservr/lucenesearch.cpp@ 12685

Last change on this file since 12685 was 12685, checked in by mdewsnip, 18 years ago

Commented out or removed Lucene debugging comments.

  • Property svn:keywords set to Author Date Id Revision
File size: 6.5 KB
Line 
1/**********************************************************************
2 *
3 * lucenesearch.cpp --
4 * Copyright (C) 1999-2002 The New Zealand Digital Library Project
5 *
6 * A component of the Greenstone digital library software
7 * from the New Zealand Digital Library Project at the
8 * University of Waikato, New Zealand.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 *********************************************************************/
25
26
27#if defined(GSDL_USE_OBJECTSPACE)
28# include <ospace\std\iostream>
29#elif defined(GSDL_USE_IOS_H)
30# include <iostream.h>
31#else
32# include <iostream>
33#endif
34
35#include <stdio.h>
36#include <time.h>
37
38#include "gsdlconf.h"
39#include "gsdltools.h"
40#include "lucenesearch.h"
41#include "fileutil.h"
42#include "queryinfo.h"
43#include "gsdlunicode.h"
44
45#include "expat_resultset.h"
46
47text_t lucenesearchclass::getindexsuffix(const queryparamclass &qp) {
48 text_t indexsuffix = "index";
49 // get the first char of the level to be the start of the index name
50 text_t suffix = substr(qp.level.begin(), qp.level.begin()+1);
51 lc(suffix);
52 text_t ind = qp.index;
53 text_t sub = qp.subcollection;
54 text_t lang = qp.language;
55
56 // collection name not added for Lucene
57 indexsuffix = filename_cat(indexsuffix, suffix +ind + sub + lang);
58 return indexsuffix;
59
60}
61
62////////////////////
63// lucenesearch class //
64////////////////////
65
66lucenesearchclass::lucenesearchclass ()
67 : searchclass() {
68
69 gdbm_level = "Doc";
70}
71
72lucenesearchclass::~lucenesearchclass ()
73{
74 if (cache != NULL)
75 {
76 delete cache;
77 cache = NULL;
78 }
79}
80
81void lucenesearchclass::set_gdbm_level(const text_t &level) {
82 gdbm_level = level;
83
84}
85
86bool lucenesearchclass::search(const queryparamclass &queryparams,
87 queryresultsclass &queryresult) {
88
89#ifdef __WIN32__
90 char basepath[]="";
91#else
92 char basepath[] = "/";
93#endif
94
95 char *indexname = (filename_cat(collectdir, getindexsuffix(queryparams))).getcstr();
96
97 // set default stem method from values originally set on prefs page
98 int defaultStemMethod = 0;
99 if (queryparams.casefolding) {
100 defaultStemMethod |= 1;
101 }
102 if (queryparams.stemming) {
103 defaultStemMethod |= 2;
104 }
105
106 text_t utf8querystring = to_utf8(queryparams.querystring);
107
108 text_t escaped_utf8querystring = "";
109 text_t::const_iterator here = utf8querystring.begin();
110 while (here != utf8querystring.end()) {
111 if (*here == '"') escaped_utf8querystring.push_back('\\');
112 escaped_utf8querystring.push_back(*here);
113 ++here;
114 }
115
116 text_t cmd = "\"" + filename_cat(gsdlhome, "bin", "script", "lucene_query.pl") + "\"";
117 cmd += (text_t)" \""+indexname + (text_t)"\" \"" + escaped_utf8querystring + (text_t)"\"";
118
119 if (!queryparams.filterstring.empty()) {
120 cmd += " -filter \"" + queryparams.filterstring + "\"";
121 }
122 if (!queryparams.sortfield.empty()) {
123 cmd += " -sort \"" + queryparams.sortfield + "\"";
124 }
125 if (queryparams.fuzzysearch)
126 {
127 cmd += " -fuzzy";
128 }
129
130 // New code to support configuration of the default conjuction operator
131 // set default Boolean combiner from all/some setting
132 // if match_mode == 1, ie all, default=1 ie AND
133 // if match_mode == 0, ie some, default=0, ie OR
134 if (queryparams.match_mode)
135 {
136 cmd += " -dco AND";
137 }
138
139 // New code to allow Lucene to do paging of search results. This should
140 // substantially improve performance as we don't have to return all 12000
141 // hits if we only need the first 20!
142 if (queryparams.startresults && queryparams.endresults)
143 {
144 cmd += (text_t)" -startresults " + queryparams.startresults;
145 cmd += (text_t)" -endresults " + queryparams.endresults;
146 }
147
148 cerr << "Lucene command: " << cmd << endl;
149
150 text_t xml_text = "";
151
152 // I don't want to do this, but I have to.
153 text_t gsdlhome_env = "GSDLHOME=" + gsdlhome;
154 putenv(gsdlhome_env.getcstr());
155
156#ifdef __WIN32__
157 putenv("GSDLOS=windows");
158
159 //FILE *PIN = _popen(cmd.getcstr(), "r"); // didn't seem to work
160 cmd = (text_t)"perl -S "+cmd;
161 // we write the result to a file
162 clock_t this_time = clock();
163 text_t filename = "luc";
164 filename.append(this_time);
165 filename.append(".txt");
166
167 text_t out_file = filename_cat(collectdir, filename);
168 cmd += " -out \"" + out_file + "\"";
169 int rv = gsdl_system(cmd, true, cerr);
170 if (rv != 0) {
171 cerr << "tried to run command \""<<cmd<<"\", but it failed\n";
172 } else {
173 read_file(out_file, xml_text);
174 remove(out_file.getcstr()); // now delete it
175 }
176#else
177 putenv("GSDLOS=linux");
178
179 FILE *PIN = popen(cmd.getcstr(), "r");
180
181 if (PIN==NULL) {
182 perror("PIPE");
183 cerr << "Error: unable to open pipe to " << cmd << endl;
184
185 return false;
186 }
187 while (!feof(PIN)) {
188 char buffer[256];
189 int num_bytes = fread(buffer,1,256,PIN);
190 xml_text.appendcarr(buffer,num_bytes);
191 }
192
193#endif
194
195 expat_resultset(xml_text,queryresult);
196
197#ifdef __WIN32__
198 // _pclose(PIN);
199#else
200 pclose(PIN);
201#endif
202
203 return true;
204}
205
206
207bool lucenesearchclass::browse_search(const queryparamclass &queryparams,
208 int start, int numDocs,
209 queryresultsclass &queryresult) {
210
211 cerr << "**** Not sure what this function does!" << endl;
212 return false;
213}
214
215// the document text for 'docnum' is placed in 'output'
216// docTargetDocument returns 'true' if it was able to
217// try to get a document
218// collection is needed to see if an index from the
219// collection is loaded. THe default index bits are just there cos
220// the mg version needs them
221
222bool lucenesearchclass::docTargetDocument(const text_t &/*defaultindex*/,
223 const text_t &/*defaultsubcollection*/,
224 const text_t &/*defaultlanguage*/,
225 const text_t &collection,
226 int docnum,
227 text_t &output) {
228
229 // we now get the document directly by lucenegdbmsource, so don't use this
230 // method
231 return false;
232}
233
234// used to clear any cached databases for persistent versions of
235// Greenstone like the Windows local library
236void lucenesearchclass::unload_database () {
237}
238
239void lucenesearchclass::set_gsdlhome (const text_t &gh)
240{
241 gsdlhome = gh;
242}
Note: See TracBrowser for help on using the repository browser.