diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-27 22:22:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-27 22:22:39 (GMT) |
commit | 902de51188364990fa0eddc1ba82f05cbbd60a20 (patch) | |
tree | 58dbb1958c57a44088fdb7e1adf0b45cab92f557 /src/H5Dcompact.c | |
parent | 0fb5c9b678f60af761556c5ca3337109d352145c (diff) | |
download | hdf5-902de51188364990fa0eddc1ba82f05cbbd60a20.zip hdf5-902de51188364990fa0eddc1ba82f05cbbd60a20.tar.gz hdf5-902de51188364990fa0eddc1ba82f05cbbd60a20.tar.bz2 |
[svn-r17244] Description:
Bring r17243 from trunk to 1.8 branch:
Refactor how the layout message is created/written/read in the
dataset's object header.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
(change h5committested on trunk)
Diffstat (limited to 'src/H5Dcompact.c')
-rw-r--r-- | src/H5Dcompact.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/H5Dcompact.c b/src/H5Dcompact.c index 09abee0..a1f5044 100644 --- a/src/H5Dcompact.c +++ b/src/H5Dcompact.c @@ -68,6 +68,7 @@ static ssize_t H5D_compact_readvv(const H5D_io_info_t *io_info, static ssize_t H5D_compact_writevv(const H5D_io_info_t *io_info, size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[], size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[]); +static herr_t H5D_compact_flush(H5D_t *dset, hid_t dxpl_id, unsigned flags); /*********************/ @@ -88,6 +89,7 @@ const H5D_layout_ops_t H5D_LOPS_COMPACT[1] = {{ #endif /* H5_HAVE_PARALLEL */ H5D_compact_readvv, H5D_compact_writevv, + H5D_compact_flush, NULL }}; @@ -332,6 +334,40 @@ done: /*------------------------------------------------------------------------- + * Function: H5D_compact_flush + * + * Purpose: Writes dirty compact data to object header + * + * Return: Non-negative on success/Negative on failure + * + * Programmer: Quincey Koziol + * Monday, July 27, 2009 + * + *------------------------------------------------------------------------- + */ +static herr_t +H5D_compact_flush(H5D_t *dset, hid_t dxpl_id, unsigned UNUSED flags) +{ + herr_t ret_value = SUCCEED; /* Return value */ + + FUNC_ENTER_NOAPI_NOINIT(H5D_compact_flush) + + /* Sanity check */ + HDassert(dset); + + /* Check if the buffered compact information is dirty */ + if(dset->shared->layout.u.compact.dirty) { + if(H5O_msg_write(&(dset->oloc), H5O_LAYOUT_ID, 0, H5O_UPDATE_TIME, &(dset->shared->layout), dxpl_id) < 0) + HGOTO_ERROR(H5E_FILE, H5E_CANTINIT, FAIL, "unable to update layout message") + dset->shared->layout.u.compact.dirty = FALSE; + } /* end if */ + +done: + FUNC_LEAVE_NOAPI(ret_value) +} /* end H5D_compact_flush() */ + + +/*------------------------------------------------------------------------- * Function: H5D_compact_copy * * Purpose: Copy compact storage raw data from SRC file to DST file. |