bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
h5das.h
Go to the documentation of this file.
1
2// This file is part of hdf5_handler a HDF5 file handler for the OPeNDAP
3// data server.
4
5// Copyright (c) 2007-2023 The HDF Group, Inc. and OPeNDAP, Inc.
6//
7// This is free software; you can redistribute it and/or modify it under the
8// terms of the GNU Lesser General Public License as published by the Free
9// Software Foundation; either version 2.1 of the License, or (at your
10// option) any later version.
11//
12// This software is distributed in the hope that it will be useful, but
13// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15// License for more details.
16//
17// You should have received a copy of the GNU Lesser General Public
18// License along with this library; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20//
21// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
22// You can contact The HDF Group, Inc. at 410 E University Ave,
23// Suite 200, Champaign, IL 61820
24
38#ifndef _h5das_H
39#define _h5das_H
40
41#include <hdf5.h>
42#include <libdap/DAS.h>
43#include <libdap/Str.h>
44
45void add_group_structure_info(libdap::DAS & das, const char *gname, const char *oname,
46 bool is_group);
47void depth_first(hid_t, const char *, libdap::DAS &);
48void find_gloattr(hid_t file, libdap::DAS & das);
49string get_hardlink(hid_t, const std::string &);
50void get_softlink(libdap::DAS &, hid_t, const char*, const std::string &, int,size_t);
51void read_comments(libdap::DAS & das, const std::string & varname, hid_t oid);
52void read_objects(libdap::DAS & das, const std::string & varname, hid_t dset,
53 int num_attr);
54#endif
void read_objects(DAS &das, const string &varname, hid_t oid, int num_attr)
Definition h5das.cc:299
void depth_first(hid_t pid, const char *gname, DAS &das)
Definition h5das.cc:64
void read_comments(DAS &das, const string &varname, hid_t oid)
Definition h5das.cc:625
void find_gloattr(hid_t file, DAS &das)
Definition h5das.cc:444
string get_hardlink(hid_t, const std::string &)
Definition h5das.cc:569