source: trunk/gsdl/src/recpt/receptionist.h@ 173

Last change on this file since 173 was 173, checked in by rjmcnab, 25 years ago

Fixed a few things.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1/**********************************************************************
2 *
3 * receptionist.h -- a web interface for the gsdl
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * PUT COPYRIGHT NOTICE HERE
7 *
8 * $Id: receptionist.h 173 1999-02-28 20:00:19Z rjmcnab $
9 *
10 *********************************************************************/
11
12
13#ifndef RECEPTIONIST_H
14#define RECEPTIONIST_H
15
16#include "gsdlconf.h"
17#include "text_t.h"
18#include "cgiargs.h"
19#include "display.h"
20#include "action.h"
21#include "recptproto.h"
22#include "converter.h"
23
24#ifndef MACROPRECEDENCE
25#define MACROPRECEDENCE "style,collection,queryversion,version,language"
26#endif
27
28
29struct recptconf {
30 text_t gsdlhome;
31 text_t collection; // will equal "" in 'general' mode
32 text_t collectdir; // will equal gsdlhome in 'general' mode
33 text_t httpimg;
34 text_t gwcgi;
35 text_tarray macrofiles;
36 text_t saveconf;
37};
38
39
40class receptionist {
41protected:
42 recptconf configinfo;
43
44 cgiargsinfoclass argsinfo;
45 actionmapclass actions;
46 recptprotolistclass protocols;
47 displayclass disp;
48 convertinfoclass converters;
49 // prepare_page sets up page parameters, sets display macros
50 // and opens the page ready for output
51 void prepare_page (action *a, cgiargsclass &args, recptproto *collectproto,
52 displayclass &disp, ostream &logout);
53 void define_general_macros (displayclass &disp, cgiargsclass &args,
54 ostream &logout);
55
56public:
57 receptionist () {}
58 virtual ~receptionist() {}
59
60 // add_action makes another action available to the receptionist
61 // the action remains the property of the calling code and that
62 // code should destroy the action after the recptionist has been
63 // destroyed.
64 void add_action (action *theaction) {actions.addaction(theaction);}
65 actionmapclass *get_actionmap_ptr () {return &actions;}
66
67 // add_protocol makes another protocol available to the receptionist
68 // without any protocols, no collections will be available. The
69 // protocols remain the property of the calling code.
70 void add_protocol (recptproto *theprotocol) {protocols.addrecptproto(theprotocol);}
71 recptprotolistclass *get_recptprotolist_ptr () {return &protocols;}
72
73 // add_converter makes another converter available to the receptionist.
74 // Converters are needed to display pages using different encodings.
75 // The converters remain the property of the calling code.
76 void add_converter (const text_t &name, inconvertclass *inconverter,
77 rzwsoutconvertclass *outconverter)
78 {converters.add_converter(name, inconverter, outconverter);}
79 convertinfoclass *get_convertinfo_ptr () {return &converters;}
80
81
82 // configure should be called for each line in the
83 // configuration files to configure the receptionist and everything
84 // it contains. The configuration should take place after everything
85 // has been added but before the initialisation.
86 void configure (const text_t &key, const text_tarray &cfgline);
87 void configure (const text_t &key, const text_t &value);
88 const recptconf &get_configinfo () {return configinfo;}
89 cgiargsinfoclass *get_cgiargsinfo_ptr () {return &argsinfo;}
90
91
92 // init should be called after all the actions, protocols, and
93 // converters have been added to the receptionist and after everything
94 // has been configured but before any pages are created.
95 // It returns true on success and false on failure. If false is
96 // returned getpage should not be called (without producing
97 // meaningless output), instead an error page should be
98 // produced by the calling code.
99 bool init (ostream &logout);
100
101 // There are two ways to produce a page. You can either call parse_cgi_args,
102 // get_cgihead_info, and produce_content or you can just call parse_cgi_args and
103 // produce_cgi_page (which will be satisfactory in most cases). You might want to call
104 // parse_cgi_args, get_cgihead_info, and produce_content when you want to
105 // interface directly with a web server for which the standard header is inappropriate.
106
107 // parse_cgi_args parses cgi arguments into an argument class.
108 // This function should be called for each page request. It returns false
109 // if there was a major problem with the cgi arguments.
110 bool parse_cgi_args (const text_t &argstr, cgiargsclass &args, ostream &logout);
111
112 // produce_cgi_page will call get_cgihead_info and
113 // produce_content in the appropriate way to output a cgi header and
114 // the page content (if needed). If a page could not be created it
115 // will return false
116 bool produce_cgi_page (cgiargsclass &args, ostream &contentout,
117 ostream &logout);
118
119 // get_cgihead_info determines the cgi header information for
120 // a set of cgi arguments. If response contains location then
121 // response_data contains the redirect address. If reponse
122 // contains content then reponse_data contains the content-type.
123 // Note that images can now be produced by the receptionist.
124 void get_cgihead_info (cgiargsclass &args, response_t &response,
125 text_t &response_data, ostream &logout);
126
127 // produce the page content
128 bool produce_content (cgiargsclass &args, ostream &contentout,
129 ostream &logout);
130
131 // returns the compressed argument ("e") corresponding to the argument
132 // list. This can be used to save preferences between sessions.
133 text_t get_compressed_arg (const cgiargsclass &args);
134
135protected:
136 // will read in all the macro files. If one is not found an
137 // error message will be written to logout and the method will
138 // return false.
139 bool read_macrofiles (ostream &logout);
140
141 // Will define the main general arguments used by the receptionist.
142 // If an error occurs a message will be written to logout and the
143 // method will return false.
144 virtual bool define_mainargs (ostream &logout);
145
146 // check_mainargs will check all the main arguments. If a major
147 // error is found it will return false and no cgi page should
148 // be created using the arguments.
149 virtual bool check_mainargs (cgiargsclass &args, ostream &logout);
150};
151
152
153#endif
Note: See TracBrowser for help on using the repository browser.