summaryrefslogtreecommitdiffstats
path: root/test/enc_dec_plist.c
blob: 26bfb84d7896bf9abb0c6cd1dc5754e5a280531c (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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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 files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/*
 * Serial tests for encoding/decoding plists
 */

#include "h5test.h"
#include "H5Pprivate.h"

static int
test_encode_decode(hid_t orig_pl)
{
    hid_t pl = (-1);	       	/* Decoded property list */
    void *temp_buf = NULL;      /* Pointer to encoding buffer */
    size_t temp_size = 0;       /* Size of encoding buffer */

    /* first call to encode returns only the size of the buffer needed */
    if(H5Pencode(orig_pl, NULL, &temp_size) < 0)
        STACK_ERROR

    if(NULL == (temp_buf = (void *)HDmalloc(temp_size)))
        TEST_ERROR

    if(H5Pencode(orig_pl, temp_buf, &temp_size) < 0)
        STACK_ERROR

    if((pl = H5Pdecode(temp_buf)) < 0)
        STACK_ERROR

    if(!H5Pequal(orig_pl, pl))
        PUTS_ERROR("encoding-decoding cycle failed\n")

    if((H5Pclose(pl)) < 0)
        STACK_ERROR

    HDfree(temp_buf);

    /* Success */
    return(0);

error:
    if(pl > 0)
        H5Pclose(pl);
    if(temp_buf)
        HDfree(temp_buf);

    return(-1);
} /* end test_encode_decode() */

int
main(void)
{
    hid_t dcpl;	       	/* dataset create prop. list */
    hid_t dapl;	       	/* dataset access prop. list */
    hid_t dxpl;	       	/* dataset xfer prop. list */
    hid_t gcpl;	       	/* group create prop. list */
    hid_t ocpypl;	/* object copy prop. list */
    hid_t ocpl;	        /* object create prop. list */
    hid_t lcpl;	       	/* link create prop. list */
    hid_t lapl;	       	/* link access prop. list */
    hid_t fapl;	       	/* file access prop. list */
    hid_t fcpl;	       	/* file create prop. list */
    hid_t strcpl;	/* string create prop. list */
    hid_t acpl;	       	/* attribute create prop. list */

    hsize_t chunk_size[2] = {16384, 4};	/* chunk size */ 
    double fill = 2.7f;         /* Fill value */
    hsize_t max_size[1];        /* data space maximum size */
    size_t nslots = 521 * 2;
    size_t nbytes = 1048576 * 10;
    double w0 = 0.5f;
    unsigned max_compact;
    unsigned min_dense;
    const char* c_to_f = "x+32";
    H5AC_cache_config_t my_cache_config = {
        H5AC__CURR_CACHE_CONFIG_VERSION,
        TRUE,
        FALSE,
        FALSE,
        "temp",
        TRUE,
        FALSE,
        ( 2 * 2048 * 1024),
        0.3f,
        (64 * 1024 * 1024),
        (4 * 1024 * 1024),
        60000,
        H5C_incr__threshold,
        0.8f,
        3.0f,
        TRUE,
        (8 * 1024 * 1024),
        H5C_flash_incr__add_space,
        2.0f,
        0.25f,
        H5C_decr__age_out_with_threshold,
        0.997f,
        0.8f,
        TRUE,
        (3 * 1024 * 1024),
        3,
        FALSE,
        0.2f,
        (256 * 2048),
        H5AC__DEFAULT_METADATA_WRITE_STRATEGY};

    if(VERBOSE_MED)
	printf("Encode/Decode DCPLs\n");

    /******* ENCODE/DECODE DCPLS *****/
    TESTING("DCPL Encoding/Decoding");
    if((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_chunk(dcpl, 2, &chunk_size)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_LATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_fill_value(dcpl, H5T_NATIVE_DOUBLE, &fill)) < 0)
        FAIL_STACK_ERROR

    max_size[0] = 100;
    if((H5Pset_external(dcpl, "ext1.data", (off_t)0, 
                         (hsize_t)(max_size[0] * sizeof(int)/4))) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_external(dcpl, "ext2.data", (off_t)0, 
                         (hsize_t)(max_size[0] * sizeof(int)/4))) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_external(dcpl, "ext3.data", (off_t)0, 
                         (hsize_t)(max_size[0] * sizeof(int)/4))) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_external(dcpl, "ext4.data", (off_t)0, 
                         (hsize_t)(max_size[0] * sizeof(int)/4))) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(dcpl) < 0)
        FAIL_PUTS_ERROR("DCPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(dcpl)) < 0)
         FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE DAPLS *****/
    TESTING("DAPL Encoding/Decoding");
    if((dapl = H5Pcreate(H5P_DATASET_ACCESS)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_chunk_cache(dapl, nslots, nbytes, w0)) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(dapl) < 0)
        FAIL_PUTS_ERROR("DAPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(dapl)) < 0)
         FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE OCPLS *****/
    TESTING("OCPL Encoding/Decoding");
    if((ocpl = H5Pcreate(H5P_OBJECT_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_attr_creation_order(ocpl, (H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED))) < 0)
         FAIL_STACK_ERROR

    if((H5Pset_attr_phase_change (ocpl, 110, 105)) < 0)
         FAIL_STACK_ERROR

    if((H5Pset_filter (ocpl, H5Z_FILTER_FLETCHER32, 0, (size_t)0, NULL)) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(ocpl) < 0)
        FAIL_PUTS_ERROR("OCPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(ocpl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE DXPLS *****/
    TESTING("DXPL Encoding/Decoding");
    if((dxpl = H5Pcreate(H5P_DATASET_XFER)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_btree_ratios(dxpl, 0.2f, 0.6f, 0.2f)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_hyper_vector_size(dxpl, 5)) < 0)
        FAIL_STACK_ERROR
#ifdef H5_HAVE_PARALLEL
    if((H5Pset_dxpl_mpio(dxpl, H5FD_MPIO_COLLECTIVE)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_dxpl_mpio_collective_opt(dxpl, H5FD_MPIO_INDIVIDUAL_IO)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_dxpl_mpio_chunk_opt(dxpl, H5FD_MPIO_CHUNK_MULTI_IO)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_dxpl_mpio_chunk_opt_ratio(dxpl, 30)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_dxpl_mpio_chunk_opt_num(dxpl, 40)) < 0)
        FAIL_STACK_ERROR
#endif/* H5_HAVE_PARALLEL */
    if((H5Pset_edc_check(dxpl, H5Z_DISABLE_EDC)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_data_transform(dxpl, c_to_f)) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(dxpl) < 0)
        FAIL_PUTS_ERROR("DXPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(dxpl)) < 0)
         FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE GCPLS *****/
    TESTING("GCPL Encoding/Decoding");
    if((gcpl = H5Pcreate(H5P_GROUP_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_local_heap_size_hint(gcpl, 256)) < 0)
         FAIL_STACK_ERROR

    if((H5Pset_link_phase_change(gcpl, 2, 2)) < 0)
         FAIL_STACK_ERROR

    /* Query the group creation properties */
    if((H5Pget_link_phase_change(gcpl, &max_compact, &min_dense)) < 0)
         FAIL_STACK_ERROR

    if((H5Pset_est_link_info(gcpl, 3, 9)) < 0)
         FAIL_STACK_ERROR

    if((H5Pset_link_creation_order(gcpl, (H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED))) < 0)
         FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(gcpl) < 0)
        FAIL_PUTS_ERROR("GCPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(gcpl)) < 0)
         FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE LCPLS *****/
    TESTING("LCPL Encoding/Decoding");
    if((lcpl = H5Pcreate(H5P_LINK_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_create_intermediate_group(lcpl, TRUE)) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(lcpl) < 0)
        FAIL_PUTS_ERROR("LCPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(lcpl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE LAPLS *****/
    TESTING("LAPL Encoding/Decoding");
    if((lapl = H5Pcreate(H5P_LINK_ACCESS)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_nlinks(lapl, (size_t)134)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_elink_acc_flags(lapl, H5F_ACC_RDONLY)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_elink_prefix(lapl, "/tmpasodiasod")) < 0)
        FAIL_STACK_ERROR

    /* Create FAPL for the elink FAPL */
    if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_alignment(fapl, 2, 1024)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_elink_fapl(lapl, fapl)) < 0)
        FAIL_STACK_ERROR

    /* Close the elink's FAPL */
    if((H5Pclose(fapl)) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(lapl) < 0)
        FAIL_PUTS_ERROR("LAPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(lapl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE OCPYPLS *****/
    TESTING("OCPYPL Encoding/Decoding");
    if((ocpypl = H5Pcreate(H5P_OBJECT_COPY)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_copy_object(ocpypl, H5O_COPY_EXPAND_EXT_LINK_FLAG)) < 0)
        FAIL_STACK_ERROR

    if((H5Padd_merge_committed_dtype_path(ocpypl, "foo")) < 0)
        FAIL_STACK_ERROR
    if((H5Padd_merge_committed_dtype_path(ocpypl, "bar")) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(ocpypl) < 0)
        FAIL_PUTS_ERROR("OCPYPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(ocpypl)) < 0)
         FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE FAPLS *****/
    TESTING("FAPL Encoding/Decoding");
    if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_family_offset(fapl, 1024)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_meta_block_size(fapl, 2098452)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_sieve_buf_size(fapl, 1048576)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_alignment(fapl, 2, 1024)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_cache(fapl, 1024, 128, 10485760, 0.3f)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_elink_file_cache_size(fapl, 10485760)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_gc_references(fapl, 1)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_small_data_block_size(fapl, 2048)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_fclose_degree(fapl, H5F_CLOSE_WEAK)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_multi_type(fapl, H5FD_MEM_GHEAP)) < 0)
        FAIL_STACK_ERROR
    if((H5Pset_mdc_config(fapl, &my_cache_config)) < 0)
        FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(fapl) < 0)
        FAIL_PUTS_ERROR("FAPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(fapl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE FCPLS *****/
    TESTING("FCPL Encoding/Decoding");

    if((fcpl = H5Pcreate(H5P_FILE_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_userblock(fcpl, 1024) < 0))
         FAIL_STACK_ERROR

    if((H5Pset_istore_k(fcpl, 3) < 0))
         FAIL_STACK_ERROR

    if((H5Pset_sym_k(fcpl, 4, 5) < 0))
         FAIL_STACK_ERROR

    if((H5Pset_shared_mesg_nindexes(fcpl, 8) < 0))
         FAIL_STACK_ERROR

    if((H5Pset_shared_mesg_index(fcpl, 1,  H5O_SHMESG_SDSPACE_FLAG, 32) < 0))
         FAIL_STACK_ERROR

   if((H5Pset_shared_mesg_phase_change(fcpl, 60, 20) < 0))
         FAIL_STACK_ERROR

    if((H5Pset_sizes(fcpl, 8, 4) < 0))
         FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(fcpl) < 0)
        FAIL_PUTS_ERROR("FCPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(fcpl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE STRCPLS *****/
    TESTING("STRCPL Encoding/Decoding");

    if((strcpl = H5Pcreate(H5P_STRING_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_char_encoding(strcpl, H5T_CSET_UTF8) < 0))
         FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(strcpl) < 0)
        FAIL_PUTS_ERROR("STRCPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(strcpl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    /******* ENCODE/DECODE ACPLS *****/
    TESTING("ACPL Encoding/Decoding");

    if((acpl = H5Pcreate(H5P_ATTRIBUTE_CREATE)) < 0)
        FAIL_STACK_ERROR

    if((H5Pset_char_encoding(acpl, H5T_CSET_UTF8) < 0))
         FAIL_STACK_ERROR

    /* Test encoding & decoding property list */
    if(test_encode_decode(acpl) < 0)
        FAIL_PUTS_ERROR("ACPL encoding/decoding failed\n")
        
    /* release resource */
    if((H5Pclose(acpl)) < 0)
        FAIL_STACK_ERROR

    PASSED();


    return 0;

error:
    printf("***** Plist Encode/Decode tests FAILED! *****\n");
    return 1;
}