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

Last change on this file since 14945 was 14945, checked in by shaoqun, 16 years ago

add two default value variables so that subclasses can overwrite them

  • Property svn:keywords set to Author Date Id Revision
File size: 16.4 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 if (!default_index.equals("")){
216 createParameter(INDEX_PARAM, param_list, lang);
217 }
218 if (!default_index_subcollection.equals("")){
219 createParameter(INDEX_SUBCOLLECTION_PARAM,param_list, lang);
220 }
221 if (!default_index_language.equals("")){
222 createParameter(INDEX_LANGUAGE_PARAM,param_list, lang);
223 }
224 if (does_chunking) {
225 createParameter(MAXDOCS_PARAM, param_list, lang);
226 }
227 if (does_paging) {
228 createParameter(HITS_PER_PAGE_PARAM, param_list, lang);
229 createParameter(START_PAGE_PARAM, param_list, lang);
230 }
231 createParameter(QUERY_PARAM, param_list, lang);
232 }
233
234 /** adds any service specific query params into the service
235 * default implementation: add nothing. subclasses may need to
236 * override this to add in their specific parameters
237 */
238 protected void addCustomQueryParams(Element param_list, String lang)
239 {
240 // default behaviour, do nothing
241 }
242
243 /** default implementations for the standard parameters plus some
244 * other common ones
245 * index, maxDocs, hitsPerPage, startPage, query, case, stem,
246 */
247 protected void createParameter(String name, Element param_list, String lang) {
248 Element param = null;
249 if (name.equals(QUERY_PARAM)) {
250 param = GSXML.createParameterDescription(this.doc, QUERY_PARAM, getTextString("param."+QUERY_PARAM, lang), GSXML.PARAM_TYPE_STRING, null, null, null);
251 param_list.appendChild(param);
252 } else if (name.equals(INDEX_PARAM)) {
253
254 // should we make these class fields?
255 ArrayList index_ids = new ArrayList();
256 ArrayList index_names = new ArrayList();
257 getIndexData(index_ids, index_names, lang);
258 String param_type = GSXML.PARAM_TYPE_ENUM_SINGLE;
259 if (does_multi_index_search) {
260 param_type = GSXML.PARAM_TYPE_ENUM_MULTI;
261 }
262 param = GSXML.createParameterDescription2(this.doc, INDEX_PARAM, getTextString("param."+INDEX_PARAM, lang), param_type, this.default_index, index_ids, index_names);
263 param_list.appendChild(param);
264 }
265 else if (name.equals(INDEX_SUBCOLLECTION_PARAM)){
266 Element index_sub_list = (Element)GSXML.getChildByTagName(this.config_info, INDEX_SUBCOLLECTION_ELEM+GSXML.LIST_MODIFIER);
267 if (index_sub_list == null) return;
268 ArrayList index_sub_ids = new ArrayList();
269 ArrayList index_sub_names = new ArrayList();
270 getIndexSubcollectionData(index_sub_ids, index_sub_names, lang);
271 String param_type = GSXML.PARAM_TYPE_ENUM_SINGLE;
272 if (does_multi_index_search) {
273 param_type = GSXML.PARAM_TYPE_ENUM_MULTI;
274 }
275 param = GSXML.createParameterDescription2(this.doc, INDEX_SUBCOLLECTION_PARAM, getTextString("param."+INDEX_SUBCOLLECTION_PARAM, lang), param_type, this.default_index_subcollection, index_sub_ids, index_sub_names);
276 param_list.appendChild(param);
277 }
278 else if(name.equals(INDEX_LANGUAGE_PARAM)){
279 Element index_lang_list = (Element)GSXML.getChildByTagName(this.config_info, INDEX_LANGUAGE_ELEM+GSXML.LIST_MODIFIER);
280 if (index_lang_list == null) return;
281 ArrayList index_lang_ids = new ArrayList();
282 ArrayList index_lang_names = new ArrayList();
283 getIndexLanguageData(index_lang_ids, index_lang_names, lang);
284 String param_type = GSXML.PARAM_TYPE_ENUM_SINGLE;
285 if (does_multi_index_search) {
286 param_type = GSXML.PARAM_TYPE_ENUM_MULTI;
287 }
288 param = GSXML.createParameterDescription2(this.doc, INDEX_LANGUAGE_PARAM, getTextString("param."+INDEX_LANGUAGE_PARAM, lang), param_type, this.default_index_language, index_lang_ids, index_lang_names);
289 param_list.appendChild(param);
290 }
291 else if (name.equals(MAXDOCS_PARAM)) {
292 param = GSXML.createParameterDescription(this.doc, name, getTextString("param."+name, lang), GSXML.PARAM_TYPE_INTEGER, this.default_max_docs, null, null);
293 param_list.appendChild(param);
294 }
295 else if(name.equals(HITS_PER_PAGE_PARAM)){
296 param = GSXML.createParameterDescription(this.doc, name, getTextString("param."+name, lang), GSXML.PARAM_TYPE_INTEGER, this.default_hits_per_page, null, null);
297 param_list.appendChild(param);
298 }
299 else if (name.equals(CASE_PARAM) || name.equals(STEM_PARAM) || name.equals(ACCENT_PARAM)) {
300 String[] bool_ops = {"0", "1"};
301 String[] bool_texts = {getTextString("param.boolean.off", lang),getTextString("param.boolean.on", lang)};
302 param = GSXML.createParameterDescription(this.doc, name, getTextString("param."+name, lang), GSXML.PARAM_TYPE_BOOLEAN, BOOLEAN_PARAM_ON, bool_ops, bool_texts);
303 param_list.appendChild(param);
304 } else if (name.equals(MATCH_PARAM)) {
305 String[] vals = {MATCH_PARAM_SOME, MATCH_PARAM_ALL };
306 String[] val_texts = {getTextString("param."+MATCH_PARAM+"."+MATCH_PARAM_SOME, lang), getTextString("param."+MATCH_PARAM+"."+MATCH_PARAM_ALL, lang)};
307 param = GSXML.createParameterDescription(this.doc, MATCH_PARAM, getTextString("param."+MATCH_PARAM, lang), GSXML.PARAM_TYPE_ENUM_SINGLE, MATCH_PARAM_SOME, vals, val_texts);
308 param_list.appendChild(param);
309 } else if (name.equals(START_PAGE_PARAM)) {
310 // start page - set to 1 for the search page
311 param = GSXML.createParameterDescription(this.doc, START_PAGE_PARAM, "", GSXML.PARAM_TYPE_INVISIBLE, "1", null, null);
312 param_list.appendChild(param);
313 }
314
315
316 }
317 /** create an element to go into the search results list. A node element
318 * has the form
319 * <docNode nodeId='xxx' nodeType='leaf' docType='hierarchy' rank='0.23'/>
320 */
321 protected Element createDocNode(String node_id, String rank) {
322 Element node = this.doc.createElement(GSXML.DOC_NODE_ELEM);
323 node.setAttribute(GSXML.NODE_ID_ATT, node_id);
324 node.setAttribute(GSXML.NODE_RANK_ATT, rank);
325 String doc_type = null;
326 if (default_document_type != null) {
327 doc_type = default_document_type;
328 } else {
329 doc_type = getDocType(node_id);
330 }
331 node.setAttribute(GSXML.DOC_TYPE_ATT, doc_type);
332 String node_type = getNodeType(node_id, doc_type);
333 node.setAttribute(GSXML.NODE_TYPE_ATT, node_type);
334 return node;
335 }
336
337 /** returns the node type of the specified node.
338 should be one of
339 GSXML.NODE_TYPE_LEAF,
340 GSXML.NODE_TYPE_INTERNAL,
341 GSXML.NODE_TYPE_ROOT
342 */
343 protected String getNodeType(String node_id, String doc_type) {
344 if (doc_type.equals(GSXML.DOC_TYPE_SIMPLE)) {
345 return GSXML.NODE_TYPE_LEAF;
346 }
347
348 if (!hasParent(node_id)) {
349 return GSXML.NODE_TYPE_ROOT;
350 }
351 if (doc_type.equals(GSXML.DOC_TYPE_PAGED)) {
352 return GSXML.NODE_TYPE_LEAF;
353 }
354 if (!hasChildren(node_id)) {
355 return GSXML.NODE_TYPE_LEAF;
356 }
357 return GSXML.NODE_TYPE_INTERNAL;
358
359 }
360
361
362 /** returns the document type of the doc that the specified node
363 belongs to. should be one of
364 GSXML.DOC_TYPE_SIMPLE,
365 GSXML.DOC_TYPE_PAGED,
366 GSXML.DOC_TYPE_HIERARCHY
367 default implementation returns GSXML.DOC_TYPE_SIMPLE, over ride
368 if documents can be hierarchical
369 */
370 protected String getDocType(String node_id) {
371 return GSXML.DOC_TYPE_SIMPLE;
372 }
373
374 /** returns true if the node has child nodes
375 * default implementation returns false, over ride if documents can be
376 * hierarchical
377 */
378 protected boolean hasChildren(String node_id) {
379 return false;
380 }
381 /** returns true if the node has a parent
382 * default implementation returns false, over ride if documents can be
383 * hierarchical*/
384 protected boolean hasParent(String node_id) {
385 return false;
386 }
387
388 /** do the actual query
389 * must be implemented by subclass */
390 abstract protected Element processTextQuery(Element request);
391
392 /** get the details about the indexes available
393 * must be implemented by subclass
394 * there must be at least one index */
395 abstract protected void getIndexData(ArrayList index_ids, ArrayList index_names, String lang);
396
397 /** get the details about the indexexSubcollections available
398 * might be implemented by subclass
399 */
400 protected void getIndexSubcollectionData(ArrayList index_ids, ArrayList index_names, String lang){}
401
402 /** get the details about the indexes available
403 * might be implemented by subclass
404 */
405 protected void getIndexLanguageData(ArrayList index_ids, ArrayList index_names, String lang){}
406
407
408}
409
Note: See TracBrowser for help on using the repository browser.