bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
HDF5CFUInt32.cc
Go to the documentation of this file.
1// This file is part of the hdf5_handler implementing for the CF-compliant
2// Copyright (c) 2011-2023 The HDF Group, Inc. and OPeNDAP, Inc.
3//
4// This is free software; you can redistribute it and/or modify it under the
5// terms of the GNU Lesser General Public License as published by the Free
6// Software Foundation; either version 2.1 of the License, or (at your
7// option) any later version.
8//
9// This software is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12// License for more details.
13//
14// You should have received a copy of the GNU Lesser General Public
15// License along with this library; if not, write to the Free Software
16// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17//
18// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
19// You can contact The HDF Group, Inc. at 410 E University Ave,
20// Suite 200, Champaign, IL 61820
21
30
31#include "config_hdf5.h"
32
33#include <memory>
34#include <libdap/InternalErr.h>
35#include "HDF5CFUInt32.h"
36#include <BESDebug.h>
37#include "h5common.h"
38
39using namespace std;
40using namespace libdap;
41
42HDF5CFUInt32::HDF5CFUInt32(const string &n, const string &d) : UInt32(n, d)
43{
44}
45
46HDF5CFUInt32::HDF5CFUInt32(const string &n, const string &d,const string &d_f) : UInt32(n, d), filename(d_f)
47{
48}
49
50BaseType *HDF5CFUInt32::ptr_duplicate()
51{
52 auto HDF5CFUInt32_unique = make_unique<HDF5CFUInt32>(*this);
53 return HDF5CFUInt32_unique.release();
54}
55
56bool HDF5CFUInt32::read()
57{
58 BESDEBUG("h5","Coming to HDF5CFUInt32 read "<<endl);
59
60 if (read_p())
61 return true;
62
63 hid_t file_id = H5Fopen(filename.c_str(),H5F_ACC_RDONLY,H5P_DEFAULT);
64 if(file_id < 0) {
65 throw InternalErr(__FILE__,__LINE__, "Fail to obtain the HDF5 file ID .");
66 }
67
68 hid_t dset_id = -1;
69 dset_id = H5Dopen2(file_id,dataset().c_str(),H5P_DEFAULT);
70
71 if(dset_id < 0) {
72 H5Fclose(file_id);
73 throw InternalErr(__FILE__,__LINE__, "Fail to obtain the dataset .");
74 }
75
76 try {
77 dods_uint32 buf;
78 get_data(dset_id, (void *) &buf);
79
80 set_read_p(true);
81 set_value(buf);
82
83 // Release the handles.
84 if (H5Dclose(dset_id) < 0) {
85 throw InternalErr(__FILE__, __LINE__, "Unable to close the dset.");
86 }
87 H5Fclose(file_id);
88 }
89 catch(...) {
90 H5Dclose(dset_id);
91 H5Fclose(file_id);
92 throw;
93 }
94
95 return true;
96
97
98}
99
100
This class provides a way to map HDF5 unsigned 32-bit integer to DAP uint32 for the CF option.
void get_data(hid_t dset, void *buf)