summaryrefslogtreecommitdiffstats
path: root/src/H5S.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5S.c')
-rw-r--r--src/H5S.c52
1 files changed, 19 insertions, 33 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 95c4783..45069c1 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -313,6 +313,10 @@ H5S_create(H5S_class_t type)
/* Initialize default dataspace state */
new_ds->extent.type = type;
+ if(type == H5S_NULL)
+ new_ds->extent.version = H5O_SDSPACE_VERSION_2;
+ else
+ new_ds->extent.version = H5O_SDSPACE_VERSION_1;
new_ds->extent.rank = 0;
new_ds->extent.size = new_ds->extent.max = NULL;
@@ -618,6 +622,7 @@ H5S_extent_copy(H5S_extent_t *dst, const H5S_extent_t *src)
/* Copy the regular fields */
dst->type = src->type;
+ dst->version = src->version;
dst->nelem = src->nelem;
dst->rank = src->rank;
@@ -2322,50 +2327,31 @@ H5S_extent_nelem(const H5S_extent_t *ext)
/*-------------------------------------------------------------------------
- * Function: H5S_debug
+ * Function: H5S_set_latest_version
*
- * Purpose: Prints debugging information about a data space.
+ * Purpose: Set the encoding for a dataspace to the latest version.
*
* Return: Non-negative on success/Negative on failure
*
- * Programmer: Robb Matzke
- * Tuesday, July 21, 1998
- *
- * Modifications:
+ * Programmer: Quincey Koziol
+ * Tuesday, July 24, 2007
*
*-------------------------------------------------------------------------
*/
herr_t
-H5S_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, FILE *stream, int indent, int fwidth)
+H5S_set_latest_version(H5S_t *ds)
{
- const H5S_t *mesg = (const H5S_t*)_mesg;
-
- FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5S_debug)
+ herr_t ret_value = SUCCEED; /* Return value */
- switch(H5S_GET_EXTENT_TYPE(mesg)) {
- case H5S_NULL:
- fprintf(stream, "%*s%-*s H5S_NULL\n", indent, "", fwidth,
- "Space class:");
- break;
-
- case H5S_SCALAR:
- fprintf(stream, "%*s%-*s H5S_SCALAR\n", indent, "", fwidth,
- "Space class:");
- break;
+ FUNC_ENTER_NOAPI(H5S_set_latest_version, FAIL)
- case H5S_SIMPLE:
- fprintf(stream, "%*s%-*s H5S_SIMPLE\n", indent, "", fwidth,
- "Space class:");
- H5O_debug_id(H5O_SDSPACE_ID, f, dxpl_id, &(mesg->extent), stream,
- indent + 3, MAX(0, fwidth - 3));
- break;
+ /* Sanity check */
+ HDassert(ds);
- default:
- fprintf(stream, "%*s%-*s **UNKNOWN-%ld**\n", indent, "", fwidth,
- "Space class:", (long)(H5S_GET_EXTENT_TYPE(mesg)));
- break;
- } /* end switch */
+ /* Set encoding of extent to latest version */
+ ds->extent.version = H5O_SDSPACE_VERSION_LATEST;
- FUNC_LEAVE_NOAPI(SUCCEED)
-} /* end H5S_debug() */
+done:
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5S_set_latest_version() */