summaryrefslogtreecommitdiffstats
path: root/src/H5Olayout.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-02 17:14:54 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-02 17:14:54 (GMT)
commit13fde5a0b17cc4194d7b7123e2eebdc5e98722dd (patch)
tree69f4d4577530ccefbf203db0f44f4f305b7a8c5e /src/H5Olayout.c
parented7658df795092d7bd50705cae4319adb5985289 (diff)
downloadhdf5-13fde5a0b17cc4194d7b7123e2eebdc5e98722dd.zip
hdf5-13fde5a0b17cc4194d7b7123e2eebdc5e98722dd.tar.gz
hdf5-13fde5a0b17cc4194d7b7123e2eebdc5e98722dd.tar.bz2
[svn-r17141] Description:
Change name of public 'H5D_CHUNK_BTREE' symbol (indicating the type of index used for locating chunks) to 'H5D_CHUNK_IDX_BTREE', putting old name in "deprecated symbols" section. This will make adding new indices (like extensible and fixed arrays) more nicely named. Tested on: FreeBSD/32 6.3 (duty) (h5commitest not required on branch)
Diffstat (limited to 'src/H5Olayout.c')
-rw-r--r--src/H5Olayout.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5Olayout.c b/src/H5Olayout.c
index dae37b0..9611680 100644
--- a/src/H5Olayout.c
+++ b/src/H5Olayout.c
@@ -145,7 +145,7 @@ H5O_layout_decode(H5F_t *f, hid_t UNUSED dxpl_id, H5O_t UNUSED *open_oh,
/* Set the chunk operations */
/* (Only "btree" indexing type currently supported in this version) */
- mesg->u.chunk.idx_type = H5D_CHUNK_BTREE;
+ mesg->u.chunk.idx_type = H5D_CHUNK_IDX_BTREE;
mesg->u.chunk.ops = H5D_COPS_BTREE;
} /* end if */
else {
@@ -233,7 +233,7 @@ H5O_layout_decode(H5F_t *f, hid_t UNUSED dxpl_id, H5O_t UNUSED *open_oh,
/* Set the chunk operations */
/* (Only "btree" indexing type supported with v3 of message format) */
- mesg->u.chunk.idx_type = H5D_CHUNK_BTREE;
+ mesg->u.chunk.idx_type = H5D_CHUNK_IDX_BTREE;
mesg->u.chunk.ops = H5D_COPS_BTREE;
} /* end if */
else {
@@ -257,11 +257,11 @@ H5O_layout_decode(H5F_t *f, hid_t UNUSED dxpl_id, H5O_t UNUSED *open_oh,
/* Chunk index type */
mesg->u.chunk.idx_type = *p++;
- if(mesg->u.chunk.idx_type > H5D_CHUNK_EARRAY)
+ if(mesg->u.chunk.idx_type > H5D_CHUNK_IDX_EARRAY)
HGOTO_ERROR(H5E_OHDR, H5E_CANTLOAD, NULL, "unknown chunk index type")
switch(mesg->u.chunk.idx_type) {
- case H5D_CHUNK_BTREE:
+ case H5D_CHUNK_IDX_BTREE:
/* B-tree address */
H5F_addr_decode(f, &p, &(mesg->u.chunk.u.btree.addr));
@@ -269,7 +269,7 @@ H5O_layout_decode(H5F_t *f, hid_t UNUSED dxpl_id, H5O_t UNUSED *open_oh,
mesg->u.chunk.ops = H5D_COPS_BTREE;
break;
- case H5D_CHUNK_EARRAY:
+ case H5D_CHUNK_IDX_EARRAY:
/* Extensible array address */
H5F_addr_decode(f, &p, &(mesg->u.chunk.u.earray.addr));
@@ -409,12 +409,12 @@ H5O_layout_encode(H5F_t *f, hbool_t UNUSED disable_shared, uint8_t *p, const voi
*p++ = (uint8_t)mesg->u.chunk.idx_type;
switch(mesg->u.chunk.idx_type) {
- case H5D_CHUNK_BTREE:
+ case H5D_CHUNK_IDX_BTREE:
/* B-tree address */
H5F_addr_encode(f, &p, mesg->u.chunk.u.btree.addr);
break;
- case H5D_CHUNK_EARRAY:
+ case H5D_CHUNK_IDX_EARRAY:
/* Extensible array address */
H5F_addr_encode(f, &p, mesg->u.chunk.u.earray.addr);
break;
@@ -802,14 +802,14 @@ H5O_layout_debug(H5F_t UNUSED *f, hid_t UNUSED dxpl_id, const void *_mesg,
/* Index information */
switch(mesg->u.chunk.idx_type) {
- case H5D_CHUNK_BTREE:
+ case H5D_CHUNK_IDX_BTREE:
HDfprintf(stream, "%*s%-*s %s\n", indent, "", fwidth,
"Index Type:", "v1 B-tree");
HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth,
"B-tree address:", mesg->u.chunk.u.btree.addr);
break;
- case H5D_CHUNK_EARRAY:
+ case H5D_CHUNK_IDX_EARRAY:
HDfprintf(stream, "%*s%-*s %s\n", indent, "", fwidth,
"Index Type:", "Extensible Array");
HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth,
@@ -919,12 +919,12 @@ H5O_layout_meta_size(const H5F_t *f, const void *_mesg)
ret_value++;
switch(mesg->u.chunk.idx_type) {
- case H5D_CHUNK_BTREE:
+ case H5D_CHUNK_IDX_BTREE:
/* B-tree address */
ret_value += H5F_SIZEOF_ADDR(f); /* Address of data */
break;
- case H5D_CHUNK_EARRAY:
+ case H5D_CHUNK_IDX_EARRAY:
/* Extensible Array address */
ret_value += H5F_SIZEOF_ADDR(f); /* Address of data */
break;
@@ -997,7 +997,7 @@ H5O_layout_set_latest_version(H5O_layout_t *layout, const H5S_t *space)
/* Check for rank == 1 (>1 unsupported currently) */
if(1 == ndims) {
/* Set the chunk index type */
- layout->u.chunk.idx_type = H5D_CHUNK_EARRAY;
+ layout->u.chunk.idx_type = H5D_CHUNK_IDX_EARRAY;
} /* end if */
} /* end if */
} /* end if */