bes  Updated for version 3.20.6
HDF5Str.h
Go to the documentation of this file.
1 // This file is part of hdf5_handler a HDF5 file handler for the OPeNDAP
2 // data server.
3 
4 // Author: Hyo-Kyung Lee <hyoklee@hdfgroup.org> and Muqun Yang
5 // <myang6@hdfgroup.org>
6 
7 // Copyright (c) 2009-2016 The HDF Group, Inc. and OPeNDAP, Inc.
8 //
9 // This is free software; you can redistribute it and/or modify it under the
10 // terms of the GNU Lesser General Public License as published by the Free
11 // Software Foundation; either version 2.1 of the License, or (at your
12 // option) any later version.
13 //
14 // This software is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 // 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 OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
24 // You can contact The HDF Group, Inc. at 1800 South Oak Street,
25 // Suite 203, Champaign, IL 61820
26 
27 #ifndef _hdf5str_h
28 #define _hdf5str_h
29 
30 #include <string>
31 #include <H5Ipublic.h>
32 
33 #include <limits.h>
34 
35 #if 0
36 #ifndef STR_FLAG
37 #define STR_FLAG 1
38 #endif
39 
40 #ifndef STR_NOFLAG
41 #define STR_NOFLAG 0
42 #endif
43 #endif
44 
45 #include "Str.h"
46 #include "h5get.h"
47 
48 
62 class HDF5Str:public libdap::Str {
63  private:
64  std::string var_path;
65 
66  public:
67 
69  HDF5Str(const std::string &n, const std::string &vpath, const std::string &d);
70  virtual ~ HDF5Str() { }
71 
77  virtual libdap::BaseType *ptr_duplicate();
78 
80  virtual bool read();
81 
83  friend std::string return_type(hid_t datatype);
84 
85 
86 };
87 
88 #endif
HDF5Str::return_type
friend std::string return_type(hid_t datatype)
See return_type function defined in h5dds.cc.
HDF5Str
Definition: HDF5Str.h:62
HDF5Str::HDF5Str
HDF5Str(const std::string &n, const std::string &vpath, const std::string &d)
Constructor.
Definition: HDF5Str.cc:57
h5get.h
HDF5Str::read
virtual bool read()
Reads HDF5 string data into local buffer
Definition: HDF5Str.cc:67
HDF5Str::ptr_duplicate
virtual libdap::BaseType * ptr_duplicate()
Definition: HDF5Str.cc:62