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