bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
BESInterface.h
1// BESInterface.h
2
3// This file is part of bes, A C++ back-end server implementation framework
4// for the OPeNDAP Data Access Protocol.
5
6// Copyright (c) 2004-2009 University Corporation for Atmospheric Research
7// Author: Patrick West <pwest@ucar.edu> and Jose Garcia <jgarcia@ucar.edu>
8//
9// This library is free software; you can redistribute it and/or
10// modify it under the terms of the GNU Lesser General Public
11// License as published by the Free Software Foundation; either
12// version 2.1 of the License, or (at your option) any later version.
13//
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17// Lesser General Public License for more details.
18//
19// You should have received a copy of the GNU Lesser General Public
20// License along with this library; if not, write to the Free Software
21// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22//
23// You can contact University Corporation for Atmospheric Research at
24// 3080 Center Green Drive, Boulder, CO 80301
25
26// (c) COPYRIGHT University Corporation for Atmospheric Research 2004-2005
27// Please read the full copyright statement in the file COPYRIGHT_UCAR.
28//
29// Authors:
30// pwest Patrick West <pwest@ucar.edu>
31// jgarcia Jose Garcia <jgarcia@ucar.edu>
32
33#ifndef BESInterface_h_
34#define BESInterface_h_ 1
35
36#include <string>
37#include <ostream>
38
39#include "BESObj.h"
40
41class BESError;
42class BESTransmitter;
44
118class BESInterface: public BESObj {
119private:
120 std::ostream *d_strm {nullptr};
121 int d_bes_timeout {0};
122
123protected:
126
127 virtual void end_request();
128
129 virtual void build_data_request_plan() = 0;
130
131 virtual void execute_data_request_plan() = 0;
132
133 virtual void transmit_data() = 0;
134
135 virtual void log_status() = 0;
136
137 virtual void clean() = 0;
138
139 explicit BESInterface(std::ostream *strm);
140
141 ~BESInterface() override = default;
142
143 static int handleException(const BESError &e, BESDataHandlerInterface &dhi);
144
145 void set_bes_timeout();
146 void clear_bes_timeout();
147
148public:
149 // This is the point where BESServerHandler::execute(Connection *c) passes control
150 // to the 'run the command' part of the server. jhrg 11/7/17
151 virtual int execute_request(const std::string &from);
152
153 virtual int finish(int status);
154
155 void dump(std::ostream &strm) const override;
156};
157
158#endif // BESInterface_h_
159
Structure storing information used by the BES to handle the request.
Base exception class for the BES with basic string message.
Definition BESError.h:66
Entry point into BES, building responses to given requests.
static int handleException(const BESError &e, BESDataHandlerInterface &dhi)
Make a BESXMLInfo object to hold the error information.
virtual int finish(int status)
virtual int execute_request(const std::string &from)
The entry point for command execution; called by BESServerHandler::execute()
virtual void end_request()
End the BES request.
BESDataHandlerInterface * d_dhi_ptr
Allocated by the child class.
BESTransmitter * d_transmitter
The Transmitter to use for the result.
void clear_bes_timeout()
Clear the bes timeout.
void dump(std::ostream &strm) const override
dumps information about this object
void set_bes_timeout()
Set the int 'd_bes_timeout' Use either the value of a 'bes_timeout' context or the value set in the B...
top level BES object to house generic methods
Definition BESObj.h:54