source: greenstone3/trunk/src/java/org/greenstone/gsdl3/service/AbstractSearch.java@ 20240

Last change on this file since 20240 was 20240, checked in by kjdon, 15 years ago

createParameter now takes an optional defualt_value parameter, to be used as teh default in the option. If not specified, use teh default that it was using previously

  • Property svn:keywords set to Author Date Id Revision
File size: 17.5 KB
Line 
1/*
2 * AbstractSearch.java
3 * Copyright (C) 2005 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.greenstone.gsdl3.service;
20
21// Greenstone classes
22import org.greenstone.gsdl3.util.GSXML;
23import org.greenstone.gsdl3.util.GSPath;
24
25// XML classes
26import org.w3c.dom.Document;
27import org.w3c.dom.Element;
28import org.w3c.dom.NodeList;
29
30// java classes
31import java.util.ArrayList;
32import java.util.HashMap;
33
34import org.apache.log4j.*;
35
36/** Partially implements a generic search service
37 *
38 * @author <a href="mailto:[email protected]">Katherine Don</a>
39 */
40
41public abstract class AbstractSearch
42 extends ServiceRack
43{
44
45 static Logger logger = Logger.getLogger(org.greenstone.gsdl3.service.AbstractSearch.class.getName());
46
47
48 // the search service
49 protected static final String TEXT_QUERY_SERVICE = "TextQuery";
50
51 // compulsory params
52 protected static final String INDEX_PARAM = "index";
53 protected static final String QUERY_PARAM = "query";
54
55 // optional standard params - some of these have to be implemented
56 protected static final String INDEX_SUBCOLLECTION_PARAM = "indexSubcollection";
57 protected static final String INDEX_LANGUAGE_PARAM = "indexLanguage";
58 protected static final String MAXDOCS_PARAM = "maxDocs";
59 protected static final String HITS_PER_PAGE_PARAM = "hitsPerPage";
60 protected static final String START_PAGE_PARAM = "startPage";
61
62 protected static final String INDEX_SUBCOLLECTION_ELEM = "indexSubcollection";
63 protected static final String INDEX_LANGUAGE_ELEM = "indexLanguage";
64
65
66 // some other common params that may be used
67 protected static final String CASE_PARAM = "case";
68 protected static final String STEM_PARAM = "stem";
69 protected static final String ACCENT_PARAM="accent";
70
71 protected static final String BOOLEAN_PARAM_ON = "1";
72 protected static final String BOOLEAN_PARAM_OFF = "0";
73 protected static final String MATCH_PARAM = "matchMode";
74 protected static final String MATCH_PARAM_ALL = "all";
75 protected static final String MATCH_PARAM_SOME = "some";
76
77 /** can more than one index be searched at the smae time? */
78 protected boolean does_multi_index_search = false;
79 /** does this service support paging of results? */
80 protected boolean does_paging = false;
81 /** does this service support asking for a subset of results? */
82 protected boolean does_chunking = false;
83 /** the default document type - use if all documents are the same type
84 */
85 protected String default_document_type = null;
86 /** the default index, or comma separated list if more than one is
87 * the default (with start and end commas, eg ,TI,SU,).
88 * Should be set by configure()
89 */
90 protected String default_index = "";
91
92 protected String default_index_subcollection = "";
93
94 protected String default_index_language = "";
95
96 protected String default_max_docs = "100";
97
98 protected String default_hits_per_page = "10";
99
100 public AbstractSearch()
101 {
102 }
103
104 /** sets up the short service info for TextQuery. If other services
105 * will be provided, should be added in the subclass configure
106 * also looks for search format info, and document format info
107 */
108 public boolean configure(Element info, Element extra_info)
109 {
110 if (!super.configure(info, extra_info)){
111 return false;
112 }
113
114 logger.info("Configuring AbstractSearch...");
115
116 this.config_info = info;
117
118 // set up short_service_info_ - for now just has id and type. the name (lang dependent) will be added in if the list is requested.
119 Element tq_service = this.doc.createElement(GSXML.SERVICE_ELEM);
120 tq_service.setAttribute(GSXML.TYPE_ATT, GSXML.SERVICE_TYPE_QUERY);
121 tq_service.setAttribute(GSXML.NAME_ATT, TEXT_QUERY_SERVICE);
122 this.short_service_info.appendChild(tq_service);
123
124 // add some format info to service map if there is any - look in extra info
125 // first look in buildConfig
126 Element format = (Element)GSXML.getChildByTagName(info, GSXML.FORMAT_ELEM);
127
128 if (format==null) {
129 String path = GSPath.appendLink(GSXML.SEARCH_ELEM, GSXML.FORMAT_ELEM);
130
131 //note by xiao: instead of retrieving the first 'format' element inside the 'search'
132 // element, we are trying to find the real format element which has at least one
133 // 'gsf:template' child element. (extra_info is collectionConfig.xml)
134 //format = (Element) GSXML.getNodeByPath(extra_info, path);
135 Element search_elem = (Element) GSXML.getChildByTagName(extra_info, GSXML.SEARCH_ELEM);
136 NodeList format_elems = null;
137 if (search_elem != null) {
138 format_elems = search_elem.getElementsByTagName(GSXML.FORMAT_ELEM);
139 }
140 for(int i=0; i<format_elems.getLength(); i++) {
141 format = (Element)format_elems.item(i);
142 if (format.getElementsByTagName("gsf:template").getLength() != 0) {
143 break;
144 }
145 }
146 }//end of if(format==null)
147 //
148 if (format != null) {
149 this.format_info_map.put(TEXT_QUERY_SERVICE, this.doc.importNode(format, true));
150 }
151
152 // look for document display format - for documentType
153 String path = GSPath.appendLink(GSXML.DISPLAY_ELEM, GSXML.FORMAT_ELEM);
154 Element display_format = (Element)GSXML.getNodeByPath(extra_info, path);
155 if (display_format != null) {
156 // check for docType option.
157 Element doc_type_opt = GSXML.getNamedElement(display_format, "gsf:option", GSXML.NAME_ATT, "documentType");
158 if (doc_type_opt != null) {
159 String value = doc_type_opt.getAttribute(GSXML.VALUE_ATT);
160 if (!value.equals("")) {
161 this.default_document_type = value;
162 }
163 }
164 }
165
166 return true;
167 }
168
169 /** returns the description of the TextQuery service. If a subclass
170 * provides other services they need to provides their own descriptions */
171 protected Element getServiceDescription(String service, String lang, String subset)
172 {
173 if (!service.equals(TEXT_QUERY_SERVICE)) {
174 return null;
175 }
176
177 Element tq_service = this.doc.createElement(GSXML.SERVICE_ELEM);
178 tq_service.setAttribute(GSXML.TYPE_ATT, GSXML.SERVICE_TYPE_QUERY);
179 tq_service.setAttribute(GSXML.NAME_ATT, TEXT_QUERY_SERVICE);
180 if (subset==null || subset.equals(GSXML.DISPLAY_TEXT_ELEM+GSXML.LIST_MODIFIER)) {
181 tq_service.appendChild(GSXML.createDisplayTextElement(this.doc, GSXML.DISPLAY_TEXT_NAME, getServiceName(TEXT_QUERY_SERVICE, lang) ));
182 tq_service.appendChild(GSXML.createDisplayTextElement(this.doc, GSXML.DISPLAY_TEXT_SUBMIT, getServiceSubmit(TEXT_QUERY_SERVICE, lang) ));
183 tq_service.appendChild(GSXML.createDisplayTextElement(this.doc, GSXML.DISPLAY_TEXT_DESCRIPTION, getServiceDescription(TEXT_QUERY_SERVICE, lang)));
184 }
185 if (subset==null || subset.equals(GSXML.PARAM_ELEM+GSXML.LIST_MODIFIER)) {
186 Element param_list = this.doc.createElement(GSXML.PARAM_ELEM+GSXML.LIST_MODIFIER);
187 addCustomQueryParams(param_list, lang);
188 addStandardQueryParams(param_list, lang);
189 tq_service.appendChild(param_list);
190 }
191 return tq_service;
192
193 }
194
195 // perhaps these should be changed to search down the class hierarchy for
196 // values - do can just put the info in the resource bundle to use it
197 /** returns the default name for the TextQuery service */
198 protected String getServiceName(String service_id, String lang) {
199 return getTextString(service_id+".name", lang);
200 }
201
202 /** returns the default description for the TextQuery service */
203 protected String getServiceDescription(String service_id, String lang) {
204 return getTextString(service_id+".description", lang);
205 }
206
207 /** returns the default submit button text for the TextQuery service */
208 protected String getServiceSubmit(String service_id, String lang) {
209 return getTextString(service_id+".submit", lang);
210
211 }
212 /** adds the standard query params into the service description */
213 protected void addStandardQueryParams(Element param_list, String lang)
214 {
215 // this test is not so good. here we are using absence of default index
216 // to determine whether we have indexes or not. But in other places,
217 // absence of default index just means to use the first one as default.
218 if (!default_index.equals("")){
219 createParameter(INDEX_PARAM, param_list, lang);
220 }
221 if (!default_index_subcollection.equals("")){
222 createParameter(INDEX_SUBCOLLECTION_PARAM,param_list, lang);
223 }
224 if (!default_index_language.equals("")){
225 createParameter(INDEX_LANGUAGE_PARAM,param_list, lang);
226 }
227 if (does_chunking) {
228 createParameter(MAXDOCS_PARAM, param_list, lang);
229 }
230 if (does_paging) {
231 createParameter(HITS_PER_PAGE_PARAM, param_list, lang);
232 createParameter(START_PAGE_PARAM, param_list, lang);
233 }
234 createParameter(QUERY_PARAM, param_list, lang);
235 }
236
237 /** adds any service specific query params into the service
238 * default implementation: add nothing. subclasses may need to
239 * override this to add in their specific parameters
240 */
241 protected void addCustomQueryParams(Element param_list, String lang)
242 {
243 // default behaviour, do nothing
244 }
245
246 protected void createParameter(String name, Element param_list, String lang) {
247 createParameter(name, param_list, lang, null);
248 }
249 /** default implementations for the standard parameters plus some
250 * other common ones
251 * index, maxDocs, hitsPerPage, startPage, query, case, stem,
252 */
253 protected void createParameter(String name, Element param_list, String lang, String default_value) {
254 Element param = null;
255 String param_default = default_value;
256 if (name.equals(QUERY_PARAM)) {
257 param = GSXML.createParameterDescription(this.doc, QUERY_PARAM, getTextString("param."+QUERY_PARAM, lang), GSXML.PARAM_TYPE_STRING, param_default, null, null);
258 param_list.appendChild(param);
259 } else if (name.equals(INDEX_PARAM)) {
260
261 // should we make these class fields?
262 ArrayList index_ids = new ArrayList();
263 ArrayList index_names = new ArrayList();
264 getIndexData(index_ids, index_names, lang);
265 String param_type = GSXML.PARAM_TYPE_ENUM_SINGLE;
266 if (does_multi_index_search) {
267 param_type = GSXML.PARAM_TYPE_ENUM_MULTI;
268 }
269 if (param_default == null) {
270 param_default = this.default_index;
271 }
272 param = GSXML.createParameterDescription2(this.doc, INDEX_PARAM, getTextString("param."+INDEX_PARAM, lang), param_type, param_default, index_ids, index_names);
273 param_list.appendChild(param);
274 }
275 else if (name.equals(INDEX_SUBCOLLECTION_PARAM)){
276 Element index_sub_list = (Element)GSXML.getChildByTagName(this.config_info, INDEX_SUBCOLLECTION_ELEM+GSXML.LIST_MODIFIER);
277 if (index_sub_list == null) return;
278 ArrayList index_sub_ids = new ArrayList();
279 ArrayList index_sub_names = new ArrayList();
280 getIndexSubcollectionData(index_sub_ids, index_sub_names, lang);
281 String param_type = GSXML.PARAM_TYPE_ENUM_SINGLE;
282 if (does_multi_index_search) {
283 param_type = GSXML.PARAM_TYPE_ENUM_MULTI;
284 }
285 if (param_default == null) {
286 param_default = this.default_index_subcollection;
287 }
288 param = GSXML.createParameterDescription2(this.doc, INDEX_SUBCOLLECTION_PARAM, getTextString("param."+INDEX_SUBCOLLECTION_PARAM, lang), param_type, param_default, index_sub_ids, index_sub_names);
289 param_list.appendChild(param);
290 }
291 else if(name.equals(INDEX_LANGUAGE_PARAM)){
292 Element index_lang_list = (Element)GSXML.getChildByTagName(this.config_info, INDEX_LANGUAGE_ELEM+GSXML.LIST_MODIFIER);
293 if (index_lang_list == null) return;
294 ArrayList index_lang_ids = new ArrayList();
295 ArrayList index_lang_names = new ArrayList();
296 getIndexLanguageData(index_lang_ids, index_lang_names, lang);
297 String param_type = GSXML.PARAM_TYPE_ENUM_SINGLE;
298 if (does_multi_index_search) {
299 param_type = GSXML.PARAM_TYPE_ENUM_MULTI;
300 }
301 if (param_default == null) {
302 param_default = this.default_index_language;
303 }
304 param = GSXML.createParameterDescription2(this.doc, INDEX_LANGUAGE_PARAM, getTextString("param."+INDEX_LANGUAGE_PARAM, lang), param_type, param_default, index_lang_ids, index_lang_names);
305 param_list.appendChild(param);
306 }
307 else if (name.equals(MAXDOCS_PARAM)) {
308 if (param_default == null) {
309 param_default = this.default_max_docs;
310 }
311
312 param = GSXML.createParameterDescription(this.doc, name, getTextString("param."+name, lang), GSXML.PARAM_TYPE_INTEGER, param_default, null, null);
313 param_list.appendChild(param);
314 }
315 else if(name.equals(HITS_PER_PAGE_PARAM)){
316 if (param_default == null) {
317 param_default = this.default_hits_per_page;
318 }
319
320 param = GSXML.createParameterDescription(this.doc, name, getTextString("param."+name, lang), GSXML.PARAM_TYPE_INTEGER, param_default, null, null);
321 param_list.appendChild(param);
322 }
323 else if (name.equals(CASE_PARAM) || name.equals(STEM_PARAM) || name.equals(ACCENT_PARAM)) {
324 if (param_default == null) {
325 param_default = BOOLEAN_PARAM_OFF;
326 }
327 String[] bool_ops = {"0", "1"};
328 String[] bool_texts = {getTextString("param.boolean.off", lang),getTextString("param.boolean.on", lang)};
329 param = GSXML.createParameterDescription(this.doc, name, getTextString("param."+name, lang), GSXML.PARAM_TYPE_BOOLEAN, param_default, bool_ops, bool_texts);
330 param_list.appendChild(param);
331 } else if (name.equals(MATCH_PARAM)) {
332 if (param_default == null) {
333 param_default = MATCH_PARAM_SOME;
334 }
335
336 String[] vals = {MATCH_PARAM_SOME, MATCH_PARAM_ALL };
337 String[] val_texts = {getTextString("param."+MATCH_PARAM+"."+MATCH_PARAM_SOME, lang), getTextString("param."+MATCH_PARAM+"."+MATCH_PARAM_ALL, lang)};
338 param = GSXML.createParameterDescription(this.doc, MATCH_PARAM, getTextString("param."+MATCH_PARAM, lang), GSXML.PARAM_TYPE_ENUM_SINGLE, param_default, vals, val_texts);
339 param_list.appendChild(param);
340 } else if (name.equals(START_PAGE_PARAM)) {
341 if (param_default == null) {
342 param_default = "1";
343 }
344
345 // start page - set to 1 for the search page
346 param = GSXML.createParameterDescription(this.doc, START_PAGE_PARAM, "", GSXML.PARAM_TYPE_INVISIBLE, param_default, null, null);
347 param_list.appendChild(param);
348 }
349
350
351 }
352 /** create an element to go into the search results list. A node element
353 * has the form
354 * <docNode nodeId='xxx' nodeType='leaf' docType='hierarchy' rank='0.23'/>
355 */
356 protected Element createDocNode(String node_id, String rank) {
357 Element node = this.doc.createElement(GSXML.DOC_NODE_ELEM);
358 node.setAttribute(GSXML.NODE_ID_ATT, node_id);
359 node.setAttribute(GSXML.NODE_RANK_ATT, rank);
360 String doc_type = null;
361 if (default_document_type != null) {
362 doc_type = default_document_type;
363 } else {
364 doc_type = getDocType(node_id);
365 }
366 node.setAttribute(GSXML.DOC_TYPE_ATT, doc_type);
367 String node_type = getNodeType(node_id, doc_type);
368 node.setAttribute(GSXML.NODE_TYPE_ATT, node_type);
369 return node;
370 }
371
372 /** returns the node type of the specified node.
373 should be one of
374 GSXML.NODE_TYPE_LEAF,
375 GSXML.NODE_TYPE_INTERNAL,
376 GSXML.NODE_TYPE_ROOT
377 */
378 protected String getNodeType(String node_id, String doc_type) {
379 if (doc_type.equals(GSXML.DOC_TYPE_SIMPLE)) {
380 return GSXML.NODE_TYPE_LEAF;
381 }
382
383 if (!hasParent(node_id)) {
384 return GSXML.NODE_TYPE_ROOT;
385 }
386 if (doc_type.equals(GSXML.DOC_TYPE_PAGED)) {
387 return GSXML.NODE_TYPE_LEAF;
388 }
389 if (!hasChildren(node_id)) {
390 return GSXML.NODE_TYPE_LEAF;
391 }
392 return GSXML.NODE_TYPE_INTERNAL;
393
394 }
395
396
397 /** returns the document type of the doc that the specified node
398 belongs to. should be one of
399 GSXML.DOC_TYPE_SIMPLE,
400 GSXML.DOC_TYPE_PAGED,
401 GSXML.DOC_TYPE_HIERARCHY
402 default implementation returns GSXML.DOC_TYPE_SIMPLE, over ride
403 if documents can be hierarchical
404 */
405 protected String getDocType(String node_id) {
406 return GSXML.DOC_TYPE_SIMPLE;
407 }
408
409 /** returns true if the node has child nodes
410 * default implementation returns false, over ride if documents can be
411 * hierarchical
412 */
413 protected boolean hasChildren(String node_id) {
414 return false;
415 }
416 /** returns true if the node has a parent
417 * default implementation returns false, over ride if documents can be
418 * hierarchical*/
419 protected boolean hasParent(String node_id) {
420 return false;
421 }
422
423 /** do the actual query
424 * must be implemented by subclass */
425 abstract protected Element processTextQuery(Element request);
426
427 /** get the details about the indexes available
428 * must be implemented by subclass
429 * there must be at least one index */
430 abstract protected void getIndexData(ArrayList index_ids, ArrayList index_names, String lang);
431
432 /** get the details about the indexexSubcollections available
433 * might be implemented by subclass
434 */
435 protected void getIndexSubcollectionData(ArrayList index_ids, ArrayList index_names, String lang){}
436
437 /** get the details about the indexes available
438 * might be implemented by subclass
439 */
440 protected void getIndexLanguageData(ArrayList index_ids, ArrayList index_names, String lang){}
441
442
443}
444
Note: See TracBrowser for help on using the repository browser.