source: trunk/gsdl/src/recpt/browseactiontools.cpp@ 2465

Last change on this file since 2465 was 2465, checked in by dmm9, 23 years ago

filter options function filled in

  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/**********************************************************************
2 *
3 * browseactiontools.cpp --
4 * Copyright (C) 1999 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#include "browseactiontools.h"
28#include <ctype.h>
29
30void format_browsestring(text_t orig, text_t& formatted, int and_or)
31{
32
33
34 text_t conj = "";
35
36 if(and_or == 0){ conj = " | "; }
37 else { conj = " & "; }
38 text_t::const_iterator here = orig.begin();
39 text_t::const_iterator end = orig.end();
40
41 //while not at the end of the filter string
42 while(here!=end){
43 //if seeing text, add it to the formatted string
44 if(!isspace(*here)){
45 formatted.push_back(*here);
46 here++;
47 }
48 //else, if seeing spaces, check that there is following text and add
49 //the ncessary conjugation if there is.
50 else if(isspace(*here)){
51 while(isspace(*here) && here!=end) here++;
52 if(here!=end) formatted += conj;
53 }
54 }
55
56}
57
58void set_browsefilter_options(FilterRequest_t &request, text_t &browsestring,
59 cgiargsclass &args)
60{
61 request.filterName = "QueryFilter";
62
63 OptionValue_t option;
64
65 option.name = "Term";
66 option.value = browsestring;
67 request.filterOptions.push_back (option);
68
69 option.name = "QueryType";
70 option.value = "boolean";
71 request.filterOptions.push_back (option);
72
73 option.name = "MatchMode";
74 option.value = (args.getintarg("bt")) ? "some" : "all";
75 request.filterOptions.push_back (option);
76
77 option.name = "Casefold";
78 option.value = (args.getintarg("k")) ? "true" : "false";
79 request.filterOptions.push_back (option);
80
81 option.name = "Stem";
82 option.value = (args.getintarg("s")) ? "true" : "false";
83 request.filterOptions.push_back (option);
84
85 option.name = "Maxdocs";
86 option.value = 1000000;
87 request.filterOptions.push_back (option);
88
89
90
91}
92
Note: See TracBrowser for help on using the repository browser.