bes  Updated for version 3.20.6
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 // CDFRequestHandler.h
28 
29 #ifndef I_GDALRequestHandler_H
30 #define I_GDALRequestHandler_H 1
31 
32 #include <BESRequestHandler.h>
33 
35 private:
36 public:
37  GDALRequestHandler(const std::string &name);
38  virtual ~GDALRequestHandler(void);
39 
40  static bool gdal_build_das(BESDataHandlerInterface &dhi);
41  static bool gdal_build_dds(BESDataHandlerInterface &dhi);
42  static bool gdal_build_data(BESDataHandlerInterface &dhi);
44  static bool gdal_build_dmr(BESDataHandlerInterface &dhi);
45  static bool gdal_build_help(BESDataHandlerInterface &dhi);
46  static bool gdal_build_version(BESDataHandlerInterface &dhi);
47 
48  // This handler supports the "not including attributes" in
49  // the data access feature. Attributes are generated only
50  // if necessary. KY 10/30/19
51  void add_attributes(BESDataHandlerInterface &dhi);
52 };
53 
54 #endif
55 
BESRequestHandler
Represents a specific data type request handler.
Definition: BESRequestHandler.h:74
GDALRequestHandler::gdal_build_dmr_using_dds
static bool gdal_build_dmr_using_dds(BESDataHandlerInterface &dhi)
Unused.
Definition: GDALRequestHandler.cc:242
GDALRequestHandler
Definition: GDALRequestHandler.h:34
BESDataHandlerInterface
Structure storing information used by the BES to handle the request.
Definition: BESDataHandlerInterface.h:56