bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
GDALRequestHandler.h
1// -*- mode: c++; c-basic-offset:4 -*-
2
3// This file is part of nc_handler, a data handler for the OPeNDAP data
4// server.
5
6// This file is part of the GDAL OPeNDAP Adapter
7
8// Copyright (c) 2004 OPeNDAP, Inc.
9// Author: Frank Warmerdam <warmerdam@pobox.com>
10//
11// This library is free software; you can redistribute it and/or
12// modify it under the terms of the GNU Lesser General Public
13// License as published by the Free Software Foundation; either
14// version 2.1 of the License, or (at your option) any later version.
15//
16// This library is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19// Lesser General Public License for more details.
20//
21// You should have received a copy of the GNU Lesser General Public
22// License along with this library; if not, write to the Free Software
23// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24//
25// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
26
27#ifndef I_GDALRequestHandler_H
28#define I_GDALRequestHandler_H 1
29
30#include <dispatch/BESRequestHandler.h>
31
32class GDALRequestHandler: public BESRequestHandler {
33public:
34 GDALRequestHandler(const std::string &name);
35 virtual ~GDALRequestHandler(void);
36
37 static bool gdal_build_das(BESDataHandlerInterface &dhi);
38 static bool gdal_build_dds(BESDataHandlerInterface &dhi);
39 static bool gdal_build_data(BESDataHandlerInterface &dhi);
41 static bool gdal_build_dmr(BESDataHandlerInterface &dhi);
42 static bool gdal_build_help(BESDataHandlerInterface &dhi);
43 static bool gdal_build_version(BESDataHandlerInterface &dhi);
44
45 // This handler supports the "not including attributes" in
46 // the data access feature. Attributes are generated only
47 // if necessary. KY 10/30/19
48 void add_attributes(BESDataHandlerInterface &dhi);
49};
50
51#endif
52
Structure storing information used by the BES to handle the request.
static bool gdal_build_dmr_using_dds(BESDataHandlerInterface &dhi)
Unused.