summaryrefslogtreecommitdiffstats
path: root/tools/test/h5import/h5importtest.c
blob: 003c34372c55ccbc284cf9a7b344a79b0951ff2f (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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#include "H5private.h"

#ifdef H5_HAVE_WIN32_API
#define OPEN_FLAGS "wb"
#else
#define OPEN_FLAGS "w"
#endif

/*
 * Name:
 *      h5importtest
 *
 * Description:
 *      This program creates files that can be
 *      used to test the h5import program.
 *
 */

int
main(void)
{
    int   nrow = 3, ncol = 4, npln = 5;
    int   i, j, k;
    FILE *sp;
    char  machine_order[3] = {0, 0, 0};

    float row4[3], col4[4], pln4[5];
    float rowo4 = 11.0F, colo4 = 21.0F, plno4 = 51.0F;
    float rowi4 = 1.0F, coli4 = 2.0F, plni4 = 5.0F;

    int b32i3[5][3][4];
    int row4i[3], col4i[4], pln4i[5];
    int rowo4i = 11, colo4i = 21, plno4i = 51;
    int rowi4i = 1, coli4i = 2, plni4i = 5;

    long long row4i64[3], col4i64[4], pln4i64[5];
    long long rowo4i64 = (long long)11, colo4i64 = (long long)21, plno4i64 = (long long)51;
    long long rowi4i64 = (long long)1, coli4i64 = (long long)2, plni4i64 = (long long)5;

    short b16i3[5][3][4];
    short row4i16[3], col4i16[4], pln4i16[5];
    short rowo4i16 = (short)11, colo4i16 = (short)21, plno4i16 = (short)51;
    short rowi4i16 = (short)1, coli4i16 = (short)2, plni4i16 = (short)5;

    char b8i3[5][3][4];
    char row4i8[3], col4i8[4], pln4i8[5];
    char rowo4i8 = (char)11, colo4i8 = (char)21, plno4i8 = (char)51;
    char rowi4i8 = (char)1, coli4i8 = (char)2, plni4i8 = (char)5;

    double b64r3[5][3][4];
    double row8[3], col8[4], pln8[5];
    double rowo8 = 11.0, colo8 = 21.0, plno8 = 51.0;
    double rowi8 = 1.0, coli8 = 2.0, plni8 = 5.0;

    /* Initialize machine endian */
    volatile uint32_t ibyte = 0x01234567;
    /* 0 for big endian, 1 for little endian. */
    if ((*((volatile uint8_t *)(&ibyte))) == 0x67)
        HDstrcpy(machine_order, "LE");
    else
        HDstrcpy(machine_order, "BE");

    /*
     * initialize the row, column, and plane vectors
     *
     * row values start at 11 and increment by 1 => 11, 12, 13
     * column values start at 21 and increment by 2 => 21, 23, 25, 27
     * plane values start at 51 and increment by 5 => 51, 56, 61, 66, 71
     */

    /*
     * build array elements - rank 2
     *
     * element value = sum of row value and col values
     */

    row4[0] = rowo4;
    col4[0] = colo4;
    pln4[0] = plno4;

    row8[0] = rowo8;
    col8[0] = colo8;
    pln8[0] = plno8;

    row4i[0] = rowo4i;
    col4i[0] = colo4i;
    pln4i[0] = plno4i;

    row4i64[0] = rowo4i64;
    col4i64[0] = colo4i64;
    pln4i64[0] = plno4i64;

    row4i16[0] = rowo4i16;
    col4i16[0] = colo4i16;
    pln4i16[0] = plno4i16;

    row4i8[0] = rowo4i8;
    col4i8[0] = colo4i8;
    pln4i8[0] = plno4i8;

    for (i = 1; i < nrow; i++) {
        row4[i]    = row4[i - 1] + rowi4;
        row8[i]    = row8[i - 1] + rowi8;
        row4i[i]   = row4i[i - 1] + rowi4i;
        row4i64[i] = row4i64[i - 1] + rowi4i64;
        row4i16[i] = (short)(row4i16[i - 1] + rowi4i16);
        row4i8[i]  = (char)(row4i8[i - 1] + rowi4i8);
    }

    for (j = 1; j < ncol; j++) {
        col4[j]    = col4[j - 1] + coli4;
        col8[j]    = col8[j - 1] + coli8;
        col4i[j]   = col4i[j - 1] + coli4i;
        col4i64[j] = col4i64[j - 1] + coli4i64;
        col4i16[j] = (short)(col4i16[j - 1] + coli4i16);
        col4i8[j]  = (char)(col4i8[j - 1] + coli4i8);
    }
    for (k = 1; k < npln; k++) {
        pln4[k]    = pln4[k - 1] + plni4;
        pln8[k]    = pln8[k - 1] + plni8;
        pln4i[k]   = pln4i[k - 1] + plni4i;
        pln4i64[k] = pln4i64[k - 1] + plni4i64;
        pln4i16[k] = (short)(pln4i16[k - 1] + plni4i16);
        pln4i8[k]  = (char)(pln4i8[k - 1] + plni4i8);
    }

    /*
     * build array elements - rank 3
     *
     * element value = sum of row value, col, and plane values
     */

    for (i = 0; i < nrow; i++)
        for (j = 0; j < ncol; j++)
            for (k = 0; k < npln; k++) {
                b64r3[k][i][j] = row8[i] + col8[j] + pln8[k];
                b32i3[k][i][j] = row4i[i] + col4i[j] + pln4i[k];
                b16i3[k][i][j] = (short)(row4i16[i] + col4i16[j] + pln4i16[k]);
                b8i3[k][i][j]  = (char)(row4i8[i] + col4i8[j] + pln4i8[k]);
            }

#ifndef UNICOS

#ifdef REBUILDTEXTFILES
    /*-------------------------------------------------------------------------
     * TOOLTEST txtin8.txt -c $srcdir/testfiles/txtin8.conf -o txtin8.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("txtin8.txt", "w");
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++)
                (void)fprintf(sp, "%10u", b8i3[k][i][j]);
            (void)fprintf(sp, "\n");
        }
    }
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST txtin16.txt -c $srcdir/testfiles/txtin16.conf -o txtin16.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("txtin16.txt", "w");
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++)
                (void)fprintf(sp, "%10u", b16i3[k][i][j]);
            (void)fprintf(sp, "\n");
        }
    }
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST txtin32.txt -c $srcdir/testfiles/textin32.conf -o textin32.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("txtin32.txt", "w");
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++)
                (void)fprintf(sp, "%10d", b32i3[k][i][j]);
            (void)fprintf(sp, "\n");
        }
    }
    (void)fclose(sp);
#endif

    /*-------------------------------------------------------------------------
     * TOOLTEST binin32.bin -c binin32.conf -o binin32.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("binin32.bin", OPEN_FLAGS);
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++) {
                (void)fwrite((char *)&b32i3[k][i][j], sizeof(int), 1, sp);
            }
        }
    }
    (void)fclose(sp);

    sp = fopen("binin32.conf", "w");
    (void)fprintf(sp, "PATH /int/bin/32-bit\n");
    (void)fprintf(sp, "INPUT-CLASS IN\n");
    (void)fprintf(sp, "INPUT-SIZE    32\n");
    (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
    (void)fprintf(sp, "RANK 3\n");
    (void)fprintf(sp, "OUTPUT-ARCHITECTURE STD\n");
    (void)fprintf(sp, "OUTPUT-BYTE-ORDER BE\n");
    (void)fprintf(sp, "DIMENSION-SIZES 5 3 4\n");
    (void)fprintf(sp, "CHUNKED-DIMENSION-SIZES 1 2 1\n");
    (void)fprintf(sp, "\n");
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST binuin32.bin -c binuin32.conf -o binuin32.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("binuin32.bin", OPEN_FLAGS);
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++) {
                (void)fwrite((char *)&b32i3[k][i][j], sizeof(unsigned int), 1, sp);
            }
        }
    }
    (void)fclose(sp);

    sp = fopen("binuin32.conf", "w");
    (void)fprintf(sp, "PATH /int/buin/32-bit\n");
    (void)fprintf(sp, "INPUT-CLASS UIN\n");
    (void)fprintf(sp, "INPUT-SIZE    32\n");
    (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
    (void)fprintf(sp, "RANK 3\n");
    (void)fprintf(sp, "OUTPUT-ARCHITECTURE STD\n");
    (void)fprintf(sp, "OUTPUT-BYTE-ORDER LE\n");
    (void)fprintf(sp, "DIMENSION-SIZES 5 3 4\n");
    (void)fprintf(sp, "\n");
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST binin16.bin -c binin16.conf -o binin16.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("binin16.bin", OPEN_FLAGS);
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++) {
                (void)fwrite((char *)&b16i3[k][i][j], sizeof(short), 1, sp);
            }
        }
    }
    (void)fclose(sp);

    sp = fopen("binin16.conf", "w");
    (void)fprintf(sp, "PATH /int/bin/16-bit\n");
    (void)fprintf(sp, "INPUT-CLASS IN\n");
    (void)fprintf(sp, "INPUT-SIZE    16\n");
    (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
    (void)fprintf(sp, "RANK 3\n");
    (void)fprintf(sp, "OUTPUT-ARCHITECTURE STD\n");
    (void)fprintf(sp, "OUTPUT-BYTE-ORDER LE\n");
    (void)fprintf(sp, "DIMENSION-SIZES 2 3 4\n");
    (void)fprintf(sp, "CHUNKED-DIMENSION-SIZES 2 2 2\n");
    (void)fprintf(sp, "MAXIMUM-DIMENSIONS -1 -1 8\n");
    (void)fprintf(sp, "\n");
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST binuin16.bin -c binuin16.conf -o binuin16.h5
     *-------------------------------------------------------------------------
     */
    sp = fopen("binuin16.bin", OPEN_FLAGS);
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++) {
                (void)fwrite((char *)&b16i3[k][i][j], sizeof(unsigned short), 1, sp);
            }
        }
    }
    (void)fclose(sp);

    sp = fopen("binuin16.conf", "w");
    (void)fprintf(sp, "PATH /int/buin/16-bit\n");
    (void)fprintf(sp, "INPUT-CLASS UIN\n");
    (void)fprintf(sp, "INPUT-SIZE    16\n");
    (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
    (void)fprintf(sp, "RANK 3\n");
    (void)fprintf(sp, "OUTPUT-ARCHITECTURE STD\n");
    (void)fprintf(sp, "OUTPUT-BYTE-ORDER BE\n");
    (void)fprintf(sp, "DIMENSION-SIZES 2 3 4\n");
    (void)fprintf(sp, "CHUNKED-DIMENSION-SIZES 2 2 2\n");
    (void)fprintf(sp, "MAXIMUM-DIMENSIONS -1 -1 8\n");
    (void)fprintf(sp, "\n");
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST binin8.bin -c binin8.conf  -o binin8.h5
     *-------------------------------------------------------------------------
     */

    sp = fopen("binin8.bin", OPEN_FLAGS);
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++) {
                (void)fwrite((char *)&b8i3[k][i][j], sizeof(char), 1, sp);
            }
        }
    }
    (void)fclose(sp);

    sp = fopen("binin8.conf", "w");
    (void)fprintf(sp, "PATH /int/bin/8-bit\n");
    (void)fprintf(sp, "INPUT-CLASS IN\n");
    (void)fprintf(sp, "INPUT-SIZE    8\n");
    (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
    (void)fprintf(sp, "RANK 3\n");
    (void)fprintf(sp, "OUTPUT-CLASS IN\n");
    (void)fprintf(sp, "OUTPUT-SIZE    16\n");
    (void)fprintf(sp, "OUTPUT-ARCHITECTURE STD\n");
    (void)fprintf(sp, "OUTPUT-BYTE-ORDER LE\n");
    (void)fprintf(sp, "DIMENSION-SIZES 5 3 4\n");
    (void)fprintf(sp, "CHUNKED-DIMENSION-SIZES 2 2 2\n");
    (void)fprintf(sp, "MAXIMUM-DIMENSIONS -1 -1 -1\n");
    (void)fprintf(sp, "COMPRESSION-PARAM 3\n");
    (void)fprintf(sp, "\n");
    (void)fclose(sp);

#endif /* UNICOS */

    /*-------------------------------------------------------------------------
     * TOOLTEST binfp64.bin -c binfp64.conf -o binfp64.h5
     *-------------------------------------------------------------------------
     */

    /*
     * binary 64-bit file - rank 2 & 3
     */

    sp = fopen("binfp64.bin", OPEN_FLAGS);
    for (k = 0; k < npln; k++) {
        for (i = 0; i < nrow; i++) {
            for (j = 0; j < ncol; j++) {
                (void)fwrite((char *)&b64r3[k][i][j], sizeof(double), 1, sp);
            }
        }
    }
    (void)fclose(sp);

    sp = fopen("binfp64.conf", "w");
    (void)fprintf(sp, "PATH /fp/bin/64-bit\n");
    (void)fprintf(sp, "INPUT-CLASS FP\n");
    (void)fprintf(sp, "INPUT-SIZE    64\n");
    (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
    (void)fprintf(sp, "RANK 3\n");
    (void)fprintf(sp, "OUTPUT-ARCHITECTURE IEEE\n");
    (void)fprintf(sp, "OUTPUT-BYTE-ORDER LE\n");
    (void)fprintf(sp, "DIMENSION-SIZES 5 3 4\n");
    (void)fprintf(sp, "CHUNKED-DIMENSION-SIZES 2 2 2\n");
    (void)fprintf(sp, "MAXIMUM-DIMENSIONS -1 6 7\n");
    (void)fprintf(sp, "COMPRESSION-PARAM 8\n");
    (void)fprintf(sp, "\n");
    (void)fclose(sp);

    /*-------------------------------------------------------------------------
     * TOOLTEST binin8w.bin -c binin8w.conf -o binin8w.h5
     *-------------------------------------------------------------------------
     */

    {
        /* test CR+LF (13,10) and EOF (26) in windows */
        char bin8w[4] = {13, 10, 26, 0};

        sp = fopen("binin8w.bin", OPEN_FLAGS);
        for (i = 0; i < 4; i++) {
            char c = bin8w[i];
            if (fwrite(&c, sizeof(char), 1, sp) != 1)
                printf("error writing file\n");
        }
        fclose(sp);

        sp = fopen("binin8w.conf", "w");
        (void)fprintf(sp, "INPUT-CLASS IN\n");
        (void)fprintf(sp, "INPUT-SIZE    8\n");
        (void)fprintf(sp, "INPUT-BYTE-ORDER %s\n", machine_order);
        (void)fprintf(sp, "RANK 1\n");
        (void)fprintf(sp, "OUTPUT-CLASS IN\n");
        (void)fprintf(sp, "OUTPUT-SIZE    8\n");
        (void)fprintf(sp, "OUTPUT-ARCHITECTURE STD\n");
        (void)fprintf(sp, "OUTPUT-BYTE-ORDER LE\n");
        (void)fprintf(sp, "DIMENSION-SIZES 4\n");
        (void)fprintf(sp, "\n");
        (void)fclose(sp);
    }
    return (EXIT_SUCCESS);
}