source: trunk/gsdl/src/recpt/action.h@ 533

Last change on this file since 533 was 533, checked in by sjboddie, 25 years ago

added GPL notice

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 6.3 KB
Line 
1/**********************************************************************
2 *
3 * action.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 * $Id: action.h 533 1999-09-07 04:57:01Z sjboddie $
25 *
26 *********************************************************************/
27
28
29#ifndef ACTION_H
30#define ACTION_H
31
32#include "gsdlconf.h"
33#include "text_t.h"
34#include "cgiargs.h"
35#include "display.h"
36#include "recptproto.h"
37
38#if defined(GSDL_USE_OBJECTSPACE)
39# include <ospace\std\iostream>
40#elif defined(GSDL_USE_IOS_H)
41# include <iostream.h>
42#else
43# include <iostream>
44#endif
45
46
47class action {
48protected:
49 cgiargsinfoclass argsinfo;
50
51
52public:
53 action ();
54 virtual ~action ();
55
56 // configure should be called once for each configuration line
57 virtual void configure (const text_t &key, const text_tarray &cfgline);
58
59 // init should be called after all the configuration is done but
60 // before any other methods are called
61 virtual bool init (ostream &logout);
62
63 // returns the "a" argument value that will specify this action
64 // this name should be short but does not have to be one character
65 // long
66 virtual text_t get_action_name ();
67
68 // check_cgiargs should be called before get_cgihead_info,
69 // define_external_macros, and do_action. If an error is found
70 // a message will be written to logout, if the error is severe
71 // then the function will return false and no page content
72 // should be produced based on the arguments.
73 virtual bool check_cgiargs (cgiargsinfoclass &argsinfo, cgiargsclass &args,
74 ostream &logout);
75
76 // check_external_cgiargs should be called after check_cgiargs
77 // for all actions. It should only be used to override some other
78 // normal behaviour, for example, producing a login page when
79 // the requested page needs authentication.
80 virtual bool check_external_cgiargs (cgiargsinfoclass &argsinfo,
81 cgiargsclass &args,
82 outconvertclass &outconvert,
83 const text_t &saveconf,
84 ostream &logout);
85
86 // get_cgihead_info determines the cgi header information for
87 // a set of cgi arguments. If response contains location then
88 // response_data contains the redirect address. If reponse
89 // contains content then reponse_data contains the content-type.
90 // Note that images can now be produced by the receptionist.
91 virtual void get_cgihead_info (cgiargsclass &args, response_t &response,
92 text_t &response_data, ostream &logout);
93
94 // uses_display should return true if the receptionist should return
95 // true if the display class is needed to output the page content.
96 // The default is to return true.
97 virtual bool uses_display (cgiargsclass &args);
98
99 // define all the macros which are related to pages generated
100 // by this action
101 virtual void define_internal_macros (const ColInfoResponse_t &collectinfo, displayclass &disp,
102 cgiargsclass &args, recptproto *collectproto,
103 ostream &logout);
104
105 // define all the macros which might be used by other actions
106 // to produce pages. These macros should be well documented.
107 virtual void define_external_macros (const ColInfoResponse_t &collectinfo, displayclass &disp,
108 cgiargsclass &args, recptproto *collectproto,
109 ostream &logout);
110
111 // returns false if there was an error which prevented the action
112 // from outputing anything.
113 virtual bool do_action (cgiargsclass &args, const ColInfoResponse_t &collectinfo,
114 recptproto *collectproto, displayclass &disp,
115 outconvertclass &outconvert, ostream &textout,
116 ostream &logout);
117
118 // getargsinfo should be called after all configuration files
119 // have been read
120 cgiargsinfoclass getargsinfo () {return argsinfo;};
121};
122
123
124// The actionptr function does not 'own' the action. The
125// action should be deleted by the code which created it.
126class actionptr {
127public:
128 action *a;
129
130 actionptr () {a=NULL;}
131};
132
133bool operator==(const actionptr &x, const actionptr &y);
134bool operator<(const actionptr &x, const actionptr &y);
135
136typedef map<text_t, actionptr, lttext_t> actionptrmap;
137
138// contains a list of actions indexed by their name
139class actionmapclass {
140protected:
141 actionptrmap actionptrs;
142
143public:
144 // type support for actionptrmap
145 typedef actionptrmap::iterator iterator;
146 typedef actionptrmap::const_iterator const_iterator;
147 typedef actionptrmap::reference reference;
148 typedef actionptrmap::const_reference const_reference;
149 typedef actionptrmap::size_type size_type;
150
151 typedef actionptrmap::difference_type difference_type;
152 typedef actionptrmap::const_reverse_iterator const_reverse_iterator;
153 typedef actionptrmap::reverse_iterator reverse_iterator;
154
155 // basic container support
156 iterator begin () {return actionptrs.begin();}
157 const_iterator begin () const {return actionptrs.begin();}
158 iterator end () {return actionptrs.end();}
159 const_iterator end () const {return actionptrs.end();}
160
161 void erase(iterator pos) {actionptrs.erase(pos);}
162 void erase(iterator first, iterator last) {actionptrs.erase(first, last);}
163 actionmapclass &operator=(const actionmapclass &x) {actionptrs=x.actionptrs;return *this;}
164
165 bool empty () const {return actionptrs.empty();}
166 size_type size() const {return actionptrs.size();}
167
168
169 // added functionality
170 void clear () {actionptrs.erase(actionptrs.begin(),actionptrs.end());}
171
172 // theaction remains the property of the calling code but
173 // should not be deleted until it is removed from this list.
174 void addaction (action *theaction);
175
176 // getaction will return NULL if the action could not be found
177 action *getaction (const text_t &key);
178};
179
180
181#endif
Note: See TracBrowser for help on using the repository browser.