source: trunk/gsdl/src/colservr/search.h@ 1663

Last change on this file since 1663 was 1663, checked in by nzdl, 23 years ago

Removed logging information from the few files that still had it.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/**********************************************************************
2 *
3 * search.h -- abstract search class for mg systems
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#ifndef SEARCH_H
28#define SEARCH_H
29
30#include "text_t.h"
31#include "querycache.h"
32
33#define RESULTCACHESIZE 10
34#define MAXNUMDOCS 1000000
35#define MAXNUMTERMS 100
36
37class searchclass {
38public:
39 searchclass ();
40 virtual ~searchclass ();
41
42 // the index directory must be set before any searching
43 // is done
44 virtual void setcollectdir (const text_t &thecollectdir);
45
46 // the search results are returned in queryresults
47 // search returns 'true' if it was able to do a search
48 virtual bool search(const queryparamclass &queryparams,
49 queryresultsclass &queryresults)=0;
50
51 // the document text for 'docnum' is placed in 'output'
52 // docTargetDocument returns 'true' if it was able to
53 // try to get a document
54 // collection is needed to see if an index from the
55 // collection is loaded. If no index has been loaded
56 // defaultindex is needed to load one
57 virtual bool docTargetDocument(const text_t &defaultindex,
58 const text_t &defaultsubcollection,
59 const text_t &defaultlanguage,
60 const text_t &collection,
61 int docnum,
62 text_t &output)=0;
63
64protected:
65 querycache *cache;
66 text_t collectdir; // the collection directory
67
68};
69
70
71#endif
Note: See TracBrowser for help on using the repository browser.