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
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* 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://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
#include "h5test.h"
#include "h5repack.h"
/*-------------------------------------------------------------------------
* Function: layout_this
*
* Purpose: find the object name NAME (got from the traverse list)
* in the repack options list; assign the layout information OBJ
*
* Return: 0 not found, 1 found
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: December 30, 2003
*
*-------------------------------------------------------------------------
*/
int layout_this(const char* name, /* object name from traverse list */
pack_opt_t *options, /* repack options */
pack_info_t *pack /*OUT*/) /* object to apply layout */
{
char *pdest;
int result;
int i;
/* if we are applying to all objects just return true */
if (options->all_layout)
{
/* assign the global layout info to the OBJ info */
pack->layout=options->layout_g;
if (H5D_CHUNKED==options->layout_g) { /* set up chunk */
pack->chunk.rank=options->chunk_g.rank;
for ( i=0; i<pack->chunk.rank; i++)
pack->chunk.chunk_lengths[i]=options->chunk_g.chunk_lengths[i];
}
return 1;
}
for ( i=0; i<options->op_tbl->nelems; i++)
{
if (options->op_tbl->objs[i].layout != -1 )
{
if (strcmp(options->op_tbl->objs[i].path,name)==0)
{
*pack=options->op_tbl->objs[i];
return 1;
}
pdest = strstr(name,options->op_tbl->objs[i].path);
result = (int)(pdest - name);
/* found at position 1, meaning without '/' */
if( pdest != NULL && result==1 )
{
*pack=options->op_tbl->objs[i];
return 1;
}
}
}
return 0;
}
/*-------------------------------------------------------------------------
* Function: apply_layout
*
* Purpose: apply a layout to the property list. Valid values for layout are:
*
* H5D_COMPACT
* Store raw data in the dataset object header in file.
* This should only be used for very small amounts of raw data.
* H5D_CONTIGUOUS
* Store raw data separately from the object header in one large chunk
* in the file.
* H5D_CHUNKED
* Store raw data separately from the object header as chunks of data in
* separate locations in the file.
*
* Return: 0, ok, -1 no
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: December 30, 2003
*
*-------------------------------------------------------------------------
*/
int apply_layout(hid_t dcpl_id,
pack_opt_t *options, /* repack options */
pack_info_t *obj) /* info about object */
{
if (H5Pset_layout(dcpl_id, obj->layout)<0)
return -1;
if (H5D_CHUNKED==obj->layout) { /* set up chunk */
if(H5Pset_chunk(dcpl_id, obj->chunk.rank, obj->chunk.chunk_lengths)<0)
return -1;
}
return 0;
}
|