summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-10-08 20:38:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-10-08 20:38:12 (GMT)
commit8b66e90352aab1c3e7e2013a76c443be296367d8 (patch)
tree0cf251ddd03130bde57041d7b0115d0d5dbc430e /src/H5P.c
parent25b702e2bed191bcba75dd715863e94f926e70ea (diff)
downloadhdf5-8b66e90352aab1c3e7e2013a76c443be296367d8.zip
hdf5-8b66e90352aab1c3e7e2013a76c443be296367d8.tar.gz
hdf5-8b66e90352aab1c3e7e2013a76c443be296367d8.tar.bz2
[svn-r114] Mostly changes to add new parameter to the H5Ainit_group call. The H5D, H5P
& H5T interfaces now share datatypes & dataspaces properly also.
Diffstat (limited to 'src/H5P.c')
-rw-r--r--src/H5P.c111
1 files changed, 93 insertions, 18 deletions
diff --git a/src/H5P.c b/src/H5P.c
index d91b5b8..b6f8563 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -63,7 +63,7 @@ static herr_t H5P_init_interface(void)
FUNC_ENTER (H5P_init_interface, NULL, FAIL);
/* Initialize the atom group for the file IDs */
- if((ret_value=H5Ainit_group(H5_DATASPACE,H5A_DATASPACEID_HASHSIZE,H5P_RESERVED_ATOMS))!=FAIL)
+ if((ret_value=H5Ainit_group(H5_DATASPACE,H5A_DATASPACEID_HASHSIZE,H5P_RESERVED_ATOMS,H5P_destroy))!=FAIL)
ret_value=H5_add_exit(&H5P_term_interface);
FUNC_LEAVE(ret_value);
@@ -198,7 +198,7 @@ hbool_t H5P_is_simple(H5P_dim_t *sdim)
{
hbool_t ret_value = BFAIL;
- FUNC_ENTER(H5P_get_lrank, H5P_init_interface, UFAIL);
+ FUNC_ENTER(H5P_is_simple, H5P_init_interface, UFAIL);
/* Clear errors and check args and all the boring stuff. */
H5ECLEAR;
@@ -224,6 +224,46 @@ done:
/*--------------------------------------------------------------------------
NAME
+ H5Pis_simple
+ PURPOSE
+ Check if a dataspace is simple
+ USAGE
+ hbool_t H5Pis_simple(sid)
+ hid_t sid; IN: ID of dataspace object to query
+ RETURNS
+ BTRUE/BFALSE/BFAIL
+ DESCRIPTION
+ This function determines the if a dataspace is "simple". ie. if it
+ has orthogonal, evenly spaced dimensions.
+--------------------------------------------------------------------------*/
+hbool_t H5Pis_simple(hid_t sid)
+{
+ H5P_dim_t *space=NULL; /* dataspace to modify */
+ hbool_t ret_value = BFAIL;
+
+ FUNC_ENTER(H5Pis_simple, H5P_init_interface, BFAIL);
+
+ /* Clear errors and check args and all the boring stuff. */
+ H5ECLEAR;
+
+ if((space=H5Aatom_object(sid))==NULL)
+ HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL);
+
+ ret_value=H5P_is_simple(space);
+
+done:
+ if(ret_value == BFAIL)
+ { /* Error condition cleanup */
+
+ } /* end if */
+
+ /* Normal function cleanup */
+
+ FUNC_LEAVE(ret_value);
+} /* end H5Pis_simple() */
+
+/*--------------------------------------------------------------------------
+ NAME
H5Pset_space
PURPOSE
Determine the size of a dataspace
@@ -437,30 +477,26 @@ done:
/*--------------------------------------------------------------------------
NAME
- H5P_release
+ H5P_destroy
PURPOSE
- Release access to an HDF5 dimensionality object.
+ Private function to destroy dataspace objects.
USAGE
- herr_t H5P_release(oid)
- hid_t oid; IN: Object to release access to
+ void H5P_destroy(dataspace)
+ void *dataspace; IN: Pointer to dataspace object to destroy
RETURNS
- SUCCEED/FAIL
+ none
DESCRIPTION
- This function releases a dimensionality from active use by a user.
+ This function releases whatever memory is used by a dataspace object.
+ It should only be called from the atom manager when the reference count
+ for a dataspace drops to zero.
--------------------------------------------------------------------------*/
-herr_t H5P_release(hid_t oid)
+void H5P_destroy(void *dataspace)
{
- H5P_dim_t *dim; /* dimensionality object to release */
- herr_t ret_value = SUCCEED;
+ H5P_dim_t *dim=(H5P_dim_t *)dataspace; /* dimensionality object to release */
- FUNC_ENTER(H5P_release, H5P_init_interface, FAIL);
+ /* Don't call standard init/leave code, this is a private void function */
+ /* FUNC_ENTER(H5T_destroy, H5T_init_interface, FAIL); */
- /* Clear errors and check args and all the boring stuff. */
- H5ECLEAR;
-
- /* Chuck the object! :-) */
- if((dim=H5Aremove_atom(oid))==NULL)
- HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL);
if(dim->type==H5P_TYPE_SIMPLE)
{
if(dim->s!=NULL)
@@ -476,6 +512,45 @@ herr_t H5P_release(hid_t oid)
} /* end if */
HDfree(dim);
+#ifdef LATER
+done:
+ if(ret_value == FAIL)
+ { /* Error condition cleanup */
+
+ } /* end if */
+
+ /* Normal function cleanup */
+ FUNC_LEAVE(ret_value);
+#endif /* LATER */
+
+} /* H5P_destroy */
+
+/*--------------------------------------------------------------------------
+ NAME
+ H5P_release
+ PURPOSE
+ Release access to an HDF5 dimensionality object.
+ USAGE
+ herr_t H5P_release(oid)
+ hid_t oid; IN: Object to release access to
+ RETURNS
+ SUCCEED/FAIL
+ DESCRIPTION
+ This function releases a dimensionality from active use by a user.
+--------------------------------------------------------------------------*/
+herr_t H5P_release(hid_t oid)
+{
+ herr_t ret_value = SUCCEED;
+
+ FUNC_ENTER(H5P_release, H5P_init_interface, FAIL);
+
+ /* Clear errors and check args and all the boring stuff. */
+ H5ECLEAR;
+
+ /* Chuck the object! :-) */
+ if(H5Adec_ref(oid)==FAIL)
+ HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL);
+
done:
if(ret_value == FAIL)
{ /* Error condition cleanup */