source: gsdl/trunk/src/protocol/nullproto.h@ 15450

Last change on this file since 15450 was 15450, checked in by mdewsnip, 16 years ago

(Untangling colservr/recpt) Created a new src/protocol directory, and moved the recptproto and nullproto classes into it.

  • Property svn:executable set to *
File size: 3.4 KB
Line 
1/**********************************************************************
2 *
3 * nullproto.h --
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 NULLPROTO_H
28#define NULLPROTO_H
29
30#include "gsdlconf.h"
31#include "collectserver.h"
32#include "collectset.h"
33#include "recptproto.h"
34
35
36class nullproto : public recptproto {
37protected:
38 collectset *cset;
39public:
40 nullproto();
41 virtual ~nullproto();
42
43 // add_collection sets up the collectionserver and calls
44 // add_collectserver
45 virtual void add_collection (const text_t &collection, void *recpt,
46 const text_t &gsdlhome, const text_t &gdbmhome);
47
48 void set_collectset(collectset *set) { this->cset = set; }
49
50 // remove_collection deletes the collection server of collection.
51 // This only needs to be called if a collectionserver is to be
52 // removed while the library is running as the destructor function
53 // cleans up all collectservers when the program exits.
54 void remove_collection (const text_t &collection, ostream &logout);
55
56 // this configure will configure each of the collection servers
57 void configure (const text_t &key, const text_tarray &cfgline,
58 comerror_t &err);
59
60 // this init will init each of the collection servers
61 bool init (comerror_t &err, ostream &logout);
62
63 text_t get_protocol_name (comerror_t &err);
64 text_t get_site_name (comerror_t &err);
65
66 void get_collection_list (text_tarray &collist, comerror_t &err,
67 ostream &logout);
68 void has_collection (const text_t &collection, bool &hascollection,
69 comerror_t &err, ostream &logout);
70 void ping (const text_t &collection, bool &wassuccess,
71 comerror_t &err, ostream &logout);
72 void get_collectinfo (const text_t &collection,
73 ColInfoResponse_t &collectinfo,
74 comerror_t &err, ostream &logout);
75 void get_filterinfo (const text_t &collection,
76 InfoFiltersResponse_t &response,
77 comerror_t &err, ostream &logout);
78 void get_filteroptions (const text_t &collection,
79 const InfoFilterOptionsRequest_t &request,
80 InfoFilterOptionsResponse_t &response,
81 comerror_t &err, ostream &logout);
82 void filter (const text_t &collection,
83 FilterRequest_t &request,
84 FilterResponse_t &response,
85 comerror_t &err, ostream &logout);
86
87 void get_document (const text_t &collection,
88 const DocumentRequest_t &request,
89 DocumentResponse_t &response,
90 comerror_t &err, ostream &logout);
91
92 void is_searchable (const text_t &collection, bool &issearchable,
93 comerror_t &err, ostream &logout);
94
95
96};
97
98
99#endif
Note: See TracBrowser for help on using the repository browser.