summaryrefslogtreecommitdiffstats
path: root/examples/h5dsm_group_open.c
blob: 6dc414415d29d5b46e2dd00c0d8fa398ce04ba7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "h5dsm_example.h"

int main(int argc, char *argv[]) {
    uuid_t pool_uuid;
    char *pool_grp = "daos_tier0";
    hid_t file = -1, grp = -1, trans = -1, fapl = -1;
    hsize_t dims[1] = {1};
    uint64_t trans_num;

    (void)MPI_Init(&argc, &argv);
    (void)daos_init();

    if(argc < 4 || argc > 5)
        PRINTF_ERROR("argc must be 4 or 5\n");

    /* Parse UUID */
    if(0 != uuid_parse(argv[1], pool_uuid))
        ERROR;

    /* Set up FAPL */
    if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
        ERROR;
    if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL, pool_uuid, pool_grp) < 0)
        ERROR;

    /* Open file */
    if((file = H5Fopen_ff(argv[2], H5F_ACC_RDONLY, fapl, argc == 4 ? &trans : NULL)) < 0)
        ERROR;

    /* Create transaction if specified */
    if(argc == 5) {
        trans_num = (uint64_t)atoi(argv[4]);
        if((trans = H5TRcreate(file, trans_num)) < 0)
            ERROR;
    }
    else
        if(H5TRget_trans_num(trans, &trans_num) < 0)
        ERROR;

    printf("Opening group - transaction number = %llu\n", (long long unsigned)trans_num);

    /* Open group */
    if((grp = H5Gopen_ff(file, argv[3], H5P_DEFAULT, trans)) < 0)
        ERROR;

    /* Close */
    if(H5Gclose_ff(grp, -1) < 0)
        ERROR;
    if(H5TRclose(trans) < 0)
        ERROR;
    if(H5Fclose_ff(file, -1) < 0)
        ERROR;
    if(H5Pclose(fapl) < 0)
        ERROR;

    printf("Success\n");

    (void)daos_fini();
    (void)MPI_Finalize();
    return 0;

error:
    H5E_BEGIN_TRY {
        H5Gclose_ff(grp, -1);
        H5TRclose(trans);
        H5Fclose_ff(file, -1);
        H5Pclose(fapl);
    } H5E_END_TRY;

    (void)daos_fini();
    (void)MPI_Finalize();
    return 1;
}