hdf5/c++/examples/h5tutr_crtgrpar.cpp

82 lines
2.4 KiB
C++
Raw Normal View History

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2019-09-19 01:11:12 +08:00
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* This example illustrates the creation of groups using absolute and
* relative names. It is used in the HDF5 Tutorial.
*/
#include <iostream>
using std::cout;
using std::endl;
#include <string>
#include "H5Cpp.h"
using namespace H5;
const H5std_string FILE_NAME("h5tutr_groups.h5");
2020-09-30 22:27:10 +08:00
int
main(void)
{
// Try block to detect exceptions raised by any of the calls inside it
2020-09-30 22:27:10 +08:00
try {
2020-04-21 07:12:00 +08:00
2019-09-19 01:11:12 +08:00
// Turn off the auto-printing when failure occurs so that we can
// handle the errors appropriately.
2019-09-19 01:11:12 +08:00
Exception::dontPrint();
2019-09-19 01:11:12 +08:00
// Create a new file using default properties.
2019-09-19 01:11:12 +08:00
H5File file(FILE_NAME, H5F_ACC_TRUNC);
2019-09-19 01:11:12 +08:00
// Create group "MyGroup" in the root group using an absolute name.
2020-04-21 07:12:00 +08:00
2020-09-30 22:27:10 +08:00
Group group1(file.createGroup("/MyGroup"));
2020-04-21 07:12:00 +08:00
2019-09-19 01:11:12 +08:00
// Create group "Group_A" in group "MyGroup" using an
// absolute name.
2020-04-21 07:12:00 +08:00
Group group2(file.createGroup("/MyGroup/Group_A"));
2019-09-19 01:11:12 +08:00
// Create group "Group_B" in group "MyGroup" using a
// relative name.
2020-04-21 07:12:00 +08:00
2020-09-30 22:27:10 +08:00
Group group3(group1.createGroup("Group_B"));
2020-04-21 07:12:00 +08:00
2019-09-19 01:11:12 +08:00
// Close the groups and file.
2019-09-19 01:11:12 +08:00
group1.close();
group2.close();
group3.close();
file.close();
2020-04-21 07:12:00 +08:00
} // end of try block
// catch failure caused by the File operations
2020-09-30 22:27:10 +08:00
catch (FileIException error) {
2019-09-19 01:11:12 +08:00
error.printErrorStack();
return -1;
}
// catch failure caused by the Group operations
2020-09-30 22:27:10 +08:00
catch (GroupIException error) {
2019-09-19 01:11:12 +08:00
error.printErrorStack();
return -1;
}
return 0;
}