summaryrefslogtreecommitdiffstats
path: root/hl/fortran/src/H5DSfc.c
blob: 8029d3471bd73f1468bd612e177c39df1503e8f2 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * 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://www.hdfgroup.org/licenses.               *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* This files contains C stubs for H5D Fortran APIs */

#include "H5DSprivate.h"
#include "H5LTf90proto.h"
#include "H5Eprivate.h"

/*-------------------------------------------------------------------------
 * Function: h5dsset_scale_c
 *
 * Purpose: Calls H5DSset_scale
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 17, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsset_scale_c(hid_t_f *dsid, _fcd dimname, size_t_f *dimnamelen)
{
    char *c_dimname = NULL;
    int_f ret_value = 0;

    /*
     * convert FORTRAN name to C name
     */

    if (*dimnamelen != 0)
        if (NULL == (c_dimname = (char *)HD5f2cstring(dimname, (size_t)*dimnamelen)))
            HGOTO_DONE(FAIL)

    /*
     * call H5DSset_scale function.
     */

    if (H5DSset_scale((hid_t)*dsid, c_dimname) < 0)
        HGOTO_DONE(FAIL)

done:
    if (c_dimname)
        free(c_dimname);

    return ret_value;

} /* end h5dsset_scale_c() */

/*-------------------------------------------------------------------------
 * Function: H5DSattach_scale_c
 *
 * Purpose: Calls H5DSattach_scale
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 17, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsattach_scale_c(hid_t_f *did, hid_t_f *dsid, int_f *idx)
{
    int_f ret_value = 0;

    /*
     * call H5DSset_scale function.
     */

    if (H5DSattach_scale((hid_t)*did, (hid_t)*dsid, (unsigned)*idx) < 0)
        HGOTO_DONE(FAIL)

done:
    return ret_value;

} /* end h5dsattach_scale_c() */

/*-------------------------------------------------------------------------
 * Function: H5DSdetach_scale_c
 *
 * Purpose: Calls H5DSdetach_scale
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 17, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsdetach_scale_c(hid_t_f *did, hid_t_f *dsid, int_f *idx)
{
    int_f ret_value = 0;

    /*
     * call H5DSset_scale function.
     */

    if (H5DSdetach_scale((hid_t)*did, (hid_t)*dsid, (unsigned)*idx) < 0)
        HGOTO_DONE(FAIL)

done:
    return ret_value;

} /* end h5dsdetach_scale_c() */

/*-------------------------------------------------------------------------
 * Function: H5DSis_attached_c
 *
 * Purpose: Calls H5DSis_attached
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 17, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsis_attached_c(hid_t_f *did, hid_t_f *dsid, int_f *idx, int_f *is_attached)
{
    int_f  ret_value = 0;
    htri_t c_is_attached;

    /*
     * call H5DSis_attached function.
     */

    if ((c_is_attached = H5DSis_attached((hid_t)*did, (hid_t)*dsid, (unsigned)*idx)) < 0)
        HGOTO_DONE(FAIL)

    *is_attached = (int_f)c_is_attached;

done:
    return ret_value;

} /* end h5dsis_attached_c() */

/*-------------------------------------------------------------------------
 * Function: H5DSis_scale_c
 *
 * Purpose: Calls H5DSis_scale
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 18, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsis_scale_c(hid_t_f *did, int_f *is_scale)
{
    int_f  ret_value = 0;
    htri_t c_is_scale;

    /*
     * call H5DSis_scale function.
     */

    if ((c_is_scale = H5DSis_scale((hid_t)*did)) < 0)
        HGOTO_DONE(FAIL)

    *is_scale = (int_f)c_is_scale;

done:
    return ret_value;

} /* end h5dsis_scale_c() */

/*-------------------------------------------------------------------------
 * Function: h5dsset_label_c
 *
 * Purpose: Calls H5DSset_label
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 18, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsset_label_c(hid_t_f *did, int_f *idx, _fcd label, size_t_f *labellen)
{
    char *c_label   = NULL;
    int_f ret_value = 0;

    /*
     * convert FORTRAN name to C name
     */

    if (NULL == (c_label = (char *)HD5f2cstring(label, (size_t)*labellen)))
        HGOTO_DONE(FAIL)

    /*
     * call H5DSset_label function.
     */

    if (H5DSset_label((hid_t)*did, (unsigned)*idx, c_label) < 0)
        HGOTO_DONE(FAIL)

done:
    if (c_label)
        free(c_label);

    return ret_value;

} /* end h5dsset_label_c() */

/*-------------------------------------------------------------------------
 * Function: h5dsget_label_c
 *
 * Purpose: Calls H5DSget_label
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 18, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsget_label_c(hid_t_f *did, int_f *idx, _fcd label, size_t_f *size)
{
    char   *c_label   = NULL;
    ssize_t size_c    = -1;
    int_f   ret_value = 0;

    /*
     * Allocate buffer to hold label
     */
    if ((c_label = (char *)malloc((size_t)*size + 1)) == NULL)
        HGOTO_DONE(FAIL);

    /*
     * call H5DSget_label function.
     */

    if ((size_c = H5DSget_label((hid_t)*did, (unsigned)*idx, c_label, (size_t)*size + 1)) < 0)
        HGOTO_DONE(FAIL)

    /*
     * Convert C name to FORTRAN and place it in the given buffer
     */

    HD5packFstring(c_label, _fcdtocp(label), (size_t)*size);

done:
    *size = (size_t_f)size_c; /* Don't subtract '1'  because H5DSget_label doesn't include the
                               * trailing NULL in the length calculation, Ref. HDFFV-7596 */
    if (c_label)
        free(c_label);
    return ret_value;

} /* end h5dsget_label_c() */

/*-------------------------------------------------------------------------
 * Function: h5dsget_scale_name_c
 *
 * Purpose: Calls H5DSget_scale_name
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 18, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsget_scale_name_c(hid_t_f *did, _fcd name, size_t_f *size)
{
    char   *c_scale_name = NULL;
    ssize_t size_c       = -1;
    int_f   ret_value    = 0;

    /*
     * Allocate buffer to hold name
     */
    if ((c_scale_name = (char *)malloc((size_t)*size + 1)) == NULL)
        HGOTO_DONE(FAIL);

    /*
     * call H5DSget_scale_name function.
     */

    if ((size_c = H5DSget_scale_name((hid_t)*did, c_scale_name, (size_t)*size + 1)) < 0)
        HGOTO_DONE(FAIL)

    /*
     * Convert C name to FORTRAN and place it in the given buffer
     */
    HD5packFstring(c_scale_name, _fcdtocp(name), (size_t)*size);
    *size = (size_t_f)size_c;

done:
    if (c_scale_name)
        free(c_scale_name);
    return ret_value;

} /* end h5dsget_scale_name_c() */

/*-------------------------------------------------------------------------
 * Function: H5DSget_num_scales_c
 *
 * Purpose: Calls H5DSget_num_scales
 *
 * Return: Success: 0, Failure: -1
 *
 * Programmer: M. Scot Breitenfeld
 *
 * Date: April 18, 2011
 *
 * Comments:
 *
 *-------------------------------------------------------------------------
 */
int_f
h5dsget_num_scales_c(hid_t_f *did, int_f *idx, int_f *num_scales)
{
    int_f ret_value = 0;

    /*
     * call H5DSset_scale function.
     */

    if ((*num_scales = (int_f)H5DSget_num_scales((hid_t)*did, (unsigned)*idx)) < 0)
        HGOTO_DONE(FAIL)

done:
    return ret_value;

} /* end h5dsget_num_scales_c() */