mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Merge branch 'develop' of ssh://bitbucket.hdfgroup.org:7999/~nfortne2/hdf5_naf into develop
This commit is contained in:
commit
04bb800f7c
13
MANIFEST
13
MANIFEST
@ -810,6 +810,7 @@
|
||||
./src/H5PLextern.h
|
||||
./src/H5R.c
|
||||
./src/H5Rdeprec.c
|
||||
./src/H5Rint.c
|
||||
./src/H5Rmodule.h
|
||||
./src/H5Rpkg.h
|
||||
./src/H5Rprivate.h
|
||||
@ -936,10 +937,6 @@
|
||||
./test/dt_arith.c
|
||||
./test/dtypes.c
|
||||
./test/dtransform.c
|
||||
./test/dynlib1.c
|
||||
./test/dynlib2.c
|
||||
./test/dynlib3.c
|
||||
./test/dynlib4.c
|
||||
./test/earray.c
|
||||
./test/efc.c
|
||||
./test/enc_dec_plist.c
|
||||
@ -967,6 +964,11 @@
|
||||
./test/fill_old.h5
|
||||
./test/fillval.c
|
||||
./test/filter_fail.c
|
||||
./test/filter_plugin.c
|
||||
./test/filter_plugin1_dsets.c
|
||||
./test/filter_plugin2_dsets.c
|
||||
./test/filter_plugin3_dsets.c
|
||||
./test/filter_plugin4_groups.c
|
||||
./test/flush1.c
|
||||
./test/flush2.c
|
||||
./test/flushrefresh.c
|
||||
@ -1030,7 +1032,6 @@
|
||||
./test/page_buffer.c
|
||||
./test/paged_nopersist.h5
|
||||
./test/paged_persist.h5
|
||||
./test/plugin.c
|
||||
./test/reserved.c
|
||||
./test/pool.c
|
||||
./test/set_extent.c
|
||||
@ -1065,12 +1066,12 @@
|
||||
./test/testerror.sh.in
|
||||
./test/testlinks_env.sh.in
|
||||
./test/test_filenotclosed.sh.in
|
||||
./test/test_filter_plugin.sh.in
|
||||
./test/testflushrefresh.sh.in
|
||||
./test/testframe.c
|
||||
./test/testhdf5.c
|
||||
./test/testhdf5.h
|
||||
./test/testlibinfo.sh.in
|
||||
./test/test_plugin.sh.in
|
||||
./test/test_usecases.sh.in
|
||||
./test/testmeta.c
|
||||
./test/testswmr.sh.in
|
||||
|
@ -3369,17 +3369,17 @@ AC_CONFIG_FILES([src/libhdf5.settings
|
||||
Makefile
|
||||
src/Makefile
|
||||
test/Makefile
|
||||
test/H5srcdir_str.h
|
||||
test/testcheck_version.sh
|
||||
test/testerror.sh
|
||||
test/testflushrefresh.sh
|
||||
test/H5srcdir_str.h
|
||||
test/testlibinfo.sh
|
||||
test/testlinks_env.sh
|
||||
test/test_filenotclosed.sh
|
||||
test/testswmr.sh
|
||||
test/test_plugin.sh
|
||||
test/test_usecases.sh
|
||||
test/testvdsswmr.sh
|
||||
test/test_filenotclosed.sh
|
||||
test/test_filter_plugin.sh
|
||||
test/test_usecases.sh
|
||||
testpar/Makefile
|
||||
tools/Makefile
|
||||
tools/lib/Makefile
|
||||
|
@ -197,7 +197,8 @@ Bug Fixes since HDF5-1.10.1 release
|
||||
|
||||
Fortran
|
||||
--------
|
||||
-
|
||||
- Fixed compilation errors when using Intel 18 Fortran compilers
|
||||
(MSB - 2017/11/3, HDFFV-10322)
|
||||
|
||||
Tools
|
||||
-----
|
||||
@ -224,7 +225,7 @@ Bug Fixes since HDF5-1.10.1 release
|
||||
Added another parameter to the 'UD=' option to set the flag by default
|
||||
to '0' or H5Z_FLAG_MANDATORY, the other choice is '1' or H5Z_FLAG_OPTIONAL.
|
||||
|
||||
(ADB - 2017/08/31, HDFFV-10276)
|
||||
(ADB - 2017/08/31, HDFFV-10269)
|
||||
|
||||
- h5ls
|
||||
|
||||
|
@ -532,6 +532,7 @@ IDE_GENERATED_PROPERTIES ("H5PL" "${H5PL_HDRS}" "${H5PL_SOURCES}" )
|
||||
set (H5R_SOURCES
|
||||
${HDF5_SRC_DIR}/H5R.c
|
||||
${HDF5_SRC_DIR}/H5Rdeprec.c
|
||||
${HDF5_SRC_DIR}/H5Rint.c
|
||||
)
|
||||
set (H5R_HDRS
|
||||
${HDF5_SRC_DIR}/H5Rpkg.h
|
||||
|
@ -5720,7 +5720,7 @@ H5D__chunk_copy_cb(const H5D_chunk_rec_t *chunk_rec, void *_udata)
|
||||
H5D_rdcc_ent_t *ent = NULL; /* Cache entry */
|
||||
unsigned idx; /* Index of chunk in cache, if present */
|
||||
unsigned u; /* Counter */
|
||||
H5D_shared_t *shared_fo = udata->cpy_info->shared_fo;
|
||||
H5D_shared_t *shared_fo = (H5D_shared_t *)udata->cpy_info->shared_fo;
|
||||
|
||||
/* See if the written chunk is in the chunk cache */
|
||||
if(shared_fo && shared_fo->cache.chunk.nslots > 0) {
|
||||
|
@ -431,7 +431,7 @@ H5D__compact_copy(H5F_t *f_src, H5O_storage_compact_t *_storage_src, H5F_t *f_ds
|
||||
void *bkg = NULL; /* Temporary buffer for copying data */
|
||||
void *reclaim_buf = NULL; /* Buffer for reclaiming data */
|
||||
hid_t buf_sid = -1; /* ID for buffer dataspace */
|
||||
H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */
|
||||
H5D_shared_t *shared_fo = (H5D_shared_t *)cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */
|
||||
H5O_storage_compact_t *storage_src = _storage_src; /* Pointer to storage_src */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
|
@ -1363,7 +1363,7 @@ H5D__contig_copy(H5F_t *f_src, const H5O_storage_contig_t *storage_src,
|
||||
hsize_t buf_dim[1] = {0}; /* Dimension for buffer */
|
||||
hbool_t is_vlen = FALSE; /* Flag to indicate that VL type conversion should occur */
|
||||
hbool_t fix_ref = FALSE; /* Flag to indicate that ref values should be fixed */
|
||||
H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */
|
||||
H5D_shared_t *shared_fo = (H5D_shared_t *)cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */
|
||||
hbool_t try_sieve = FALSE; /* Try to get data from the sieve buffer */
|
||||
haddr_t sieve_start = HADDR_UNDEF; /* Start location of sieve buffer */
|
||||
haddr_t sieve_end = HADDR_UNDEF; /* End locations of sieve buffer */
|
||||
|
846
src/H5Dint.c
846
src/H5Dint.c
File diff suppressed because it is too large
Load Diff
136
src/H5Dpkg.h
136
src/H5Dpkg.h
@ -12,12 +12,12 @@
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu>
|
||||
* Monday, April 14, 2003
|
||||
* Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu>
|
||||
* Monday, April 14, 2003
|
||||
*
|
||||
* Purpose: This file contains declarations which are visible only within
|
||||
* the H5D package. Source files outside the H5D package should
|
||||
* include H5Dprivate.h instead.
|
||||
* Purpose: This file contains declarations which are visible only within
|
||||
* the H5D package. Source files outside the H5D package should
|
||||
* include H5Dprivate.h instead.
|
||||
*/
|
||||
#if !(defined H5D_FRIEND || defined H5D_MODULE)
|
||||
#error "Do not include this file outside the H5D package!"
|
||||
@ -30,12 +30,12 @@
|
||||
#include "H5Dprivate.h"
|
||||
|
||||
/* Other private headers needed by this file */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5B2private.h" /* v2 B-trees */
|
||||
#include "H5Fprivate.h" /* File access */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5SLprivate.h" /* Skip lists */
|
||||
#include "H5Tprivate.h" /* Datatypes */
|
||||
#include "H5Fprivate.h" /* File access */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5SLprivate.h" /* Skip lists */
|
||||
#include "H5Tprivate.h" /* Datatypes */
|
||||
|
||||
/**************************/
|
||||
/* Package Private Macros */
|
||||
@ -70,22 +70,22 @@
|
||||
/* See H5O_layout_chunk_t */
|
||||
|
||||
/* Fixed array creation values */
|
||||
#define H5D_FARRAY_CREATE_PARAM_SIZE 1 /* Size of the creation parameters in bytes */
|
||||
#define H5D_FARRAY_MAX_DBLK_PAGE_NELMTS_BITS 10 /* i.e. 1024 elements per data block page */
|
||||
#define H5D_FARRAY_CREATE_PARAM_SIZE 1 /* Size of the creation parameters in bytes */
|
||||
#define H5D_FARRAY_MAX_DBLK_PAGE_NELMTS_BITS 10 /* i.e. 1024 elements per data block page */
|
||||
|
||||
/* Extensible array creation values */
|
||||
#define H5D_EARRAY_CREATE_PARAM_SIZE 5 /* Size of the creation parameters in bytes */
|
||||
#define H5D_EARRAY_MAX_NELMTS_BITS 32 /* i.e. 4 giga-elements */
|
||||
#define H5D_EARRAY_IDX_BLK_ELMTS 4
|
||||
#define H5D_EARRAY_SUP_BLK_MIN_DATA_PTRS 4
|
||||
#define H5D_EARRAY_DATA_BLK_MIN_ELMTS 16
|
||||
#define H5D_EARRAY_MAX_DBLOCK_PAGE_NELMTS_BITS 10 /* i.e. 1024 elements per data block page */
|
||||
#define H5D_EARRAY_CREATE_PARAM_SIZE 5 /* Size of the creation parameters in bytes */
|
||||
#define H5D_EARRAY_MAX_NELMTS_BITS 32 /* i.e. 4 giga-elements */
|
||||
#define H5D_EARRAY_IDX_BLK_ELMTS 4
|
||||
#define H5D_EARRAY_SUP_BLK_MIN_DATA_PTRS 4
|
||||
#define H5D_EARRAY_DATA_BLK_MIN_ELMTS 16
|
||||
#define H5D_EARRAY_MAX_DBLOCK_PAGE_NELMTS_BITS 10 /* i.e. 1024 elements per data block page */
|
||||
|
||||
/* v2 B-tree creation values for raw meta_size */
|
||||
#define H5D_BT2_CREATE_PARAM_SIZE 6 /* Size of the creation parameters in bytes */
|
||||
#define H5D_BT2_NODE_SIZE 2048
|
||||
#define H5D_BT2_SPLIT_PERC 100
|
||||
#define H5D_BT2_MERGE_PERC 40
|
||||
#define H5D_BT2_CREATE_PARAM_SIZE 6 /* Size of the creation parameters in bytes */
|
||||
#define H5D_BT2_NODE_SIZE 2048
|
||||
#define H5D_BT2_SPLIT_PERC 100
|
||||
#define H5D_BT2_MERGE_PERC 40
|
||||
|
||||
|
||||
/****************************/
|
||||
@ -97,23 +97,23 @@ typedef struct H5D_type_info_t {
|
||||
/* Initial values */
|
||||
const H5T_t *mem_type; /* Pointer to memory datatype */
|
||||
const H5T_t *dset_type; /* Pointer to dataset datatype */
|
||||
H5T_path_t *tpath; /* Datatype conversion path */
|
||||
H5T_path_t *tpath; /* Datatype conversion path */
|
||||
hid_t src_type_id; /* Source datatype ID */
|
||||
hid_t dst_type_id; /* Destination datatype ID */
|
||||
|
||||
/* Computed/derived values */
|
||||
size_t src_type_size; /* Size of source type */
|
||||
size_t dst_type_size; /* Size of destination type */
|
||||
size_t max_type_size; /* Size of largest source/destination type */
|
||||
hbool_t is_conv_noop; /* Whether the type conversion is a NOOP */
|
||||
hbool_t is_xform_noop; /* Whether the data transform is a NOOP */
|
||||
size_t src_type_size; /* Size of source type */
|
||||
size_t dst_type_size; /* Size of destination type */
|
||||
size_t max_type_size; /* Size of largest source/destination type */
|
||||
hbool_t is_conv_noop; /* Whether the type conversion is a NOOP */
|
||||
hbool_t is_xform_noop; /* Whether the data transform is a NOOP */
|
||||
const H5T_subset_info_t *cmpd_subset; /* Info related to the compound subset conversion functions */
|
||||
H5T_bkg_t need_bkg; /* Type of background buf needed */
|
||||
size_t request_nelmts; /* Requested strip mine */
|
||||
uint8_t *tconv_buf; /* Datatype conv buffer */
|
||||
hbool_t tconv_buf_allocated; /* Whether the type conversion buffer was allocated */
|
||||
uint8_t *bkg_buf; /* Background buffer */
|
||||
hbool_t bkg_buf_allocated; /* Whether the background buffer was allocated */
|
||||
H5T_bkg_t need_bkg; /* Type of background buf needed */
|
||||
size_t request_nelmts; /* Requested strip mine */
|
||||
uint8_t *tconv_buf; /* Datatype conv buffer */
|
||||
hbool_t tconv_buf_allocated; /* Whether the type conversion buffer was allocated */
|
||||
uint8_t *bkg_buf; /* Background buffer */
|
||||
hbool_t bkg_buf_allocated; /* Whether the background buffer was allocated */
|
||||
} H5D_type_info_t;
|
||||
|
||||
/* Forward declaration of structs used below */
|
||||
@ -191,13 +191,13 @@ typedef struct {
|
||||
} H5D_chunk_storage_t;
|
||||
|
||||
typedef struct {
|
||||
void *buf; /* Buffer for compact dataset */
|
||||
void *buf; /* Buffer for compact dataset */
|
||||
hbool_t *dirty; /* Pointer to dirty flag to mark */
|
||||
} H5D_compact_storage_t;
|
||||
|
||||
typedef union H5D_storage_t {
|
||||
H5D_contig_storage_t contig; /* Contiguous information for dataset */
|
||||
H5D_chunk_storage_t chunk; /* Chunk information for dataset */
|
||||
H5D_chunk_storage_t chunk; /* Chunk information for dataset */
|
||||
H5D_compact_storage_t compact; /* Compact information for dataset */
|
||||
H5O_efl_t efl; /* External file list information for dataset */
|
||||
} H5D_storage_t;
|
||||
@ -261,10 +261,10 @@ typedef struct H5D_chk_idx_info_t {
|
||||
* The chunk's file address, filter mask and size on disk are not key values.
|
||||
*/
|
||||
typedef struct H5D_chunk_rec_t {
|
||||
hsize_t scaled[H5O_LAYOUT_NDIMS]; /* Logical offset to start */
|
||||
uint32_t nbytes; /* Size of stored data */
|
||||
uint32_t filter_mask; /* Excluded filters */
|
||||
haddr_t chunk_addr; /* Address of chunk in file */
|
||||
hsize_t scaled[H5O_LAYOUT_NDIMS]; /* Logical offset to start */
|
||||
uint32_t nbytes; /* Size of stored data */
|
||||
uint32_t filter_mask; /* Excluded filters */
|
||||
haddr_t chunk_addr; /* Address of chunk in file */
|
||||
} H5D_chunk_rec_t;
|
||||
|
||||
/*
|
||||
@ -273,9 +273,9 @@ typedef struct H5D_chunk_rec_t {
|
||||
* to which the index points.
|
||||
*/
|
||||
typedef struct H5D_chunk_common_ud_t {
|
||||
const H5O_layout_chunk_t *layout; /* Chunk layout description */
|
||||
const H5O_storage_chunk_t *storage; /* Chunk storage description */
|
||||
const hsize_t *scaled; /* Scaled coordinates for a chunk */
|
||||
const H5O_layout_chunk_t *layout; /* Chunk layout description */
|
||||
const H5O_storage_chunk_t *storage; /* Chunk storage description */
|
||||
const hsize_t *scaled; /* Scaled coordinates for a chunk */
|
||||
} H5D_chunk_common_ud_t;
|
||||
|
||||
/* B-tree callback info for various operations */
|
||||
@ -286,7 +286,7 @@ typedef struct H5D_chunk_ud_t {
|
||||
/* Upward */
|
||||
unsigned idx_hint; /* Index of chunk in cache, if present */
|
||||
H5F_block_t chunk_block; /* Offset/length of chunk in file */
|
||||
unsigned filter_mask; /* Excluded filters */
|
||||
unsigned filter_mask; /* Excluded filters */
|
||||
hbool_t new_unfilt_chunk; /* Whether the chunk just became unfiltered */
|
||||
hsize_t chunk_idx; /* Chunk index for EA, FA indexing */
|
||||
} H5D_chunk_ud_t;
|
||||
@ -386,11 +386,11 @@ typedef struct H5D_chunk_map_t {
|
||||
/* Cached information about a particular chunk */
|
||||
typedef struct H5D_chunk_cached_t {
|
||||
hbool_t valid; /*whether cache info is valid*/
|
||||
hsize_t scaled[H5O_LAYOUT_NDIMS]; /*scaled offset of chunk*/
|
||||
haddr_t addr; /*file address of chunk */
|
||||
uint32_t nbytes; /*size of stored data */
|
||||
hsize_t chunk_idx; /*index of chunk in dataset */
|
||||
unsigned filter_mask; /*excluded filters */
|
||||
hsize_t scaled[H5O_LAYOUT_NDIMS]; /*scaled offset of chunk*/
|
||||
haddr_t addr; /*file address of chunk */
|
||||
uint32_t nbytes; /*size of stored data */
|
||||
hsize_t chunk_idx; /*index of chunk in dataset */
|
||||
unsigned filter_mask; /*excluded filters */
|
||||
} H5D_chunk_cached_t;
|
||||
|
||||
/****************************/
|
||||
@ -407,23 +407,23 @@ typedef struct H5D_virtual_held_file_t {
|
||||
struct H5D_rdcc_ent_t; /* Forward declaration of struct used below */
|
||||
typedef struct H5D_rdcc_t {
|
||||
struct {
|
||||
unsigned ninits; /* Number of chunk creations */
|
||||
unsigned nhits; /* Number of cache hits */
|
||||
unsigned nmisses;/* Number of cache misses */
|
||||
unsigned nflushes;/* Number of cache flushes */
|
||||
unsigned ninits; /* Number of chunk creations */
|
||||
unsigned nhits; /* Number of cache hits */
|
||||
unsigned nmisses; /* Number of cache misses */
|
||||
unsigned nflushes; /* Number of cache flushes */
|
||||
} stats;
|
||||
size_t nbytes_max; /* Maximum cached raw data in bytes */
|
||||
size_t nslots; /* Number of chunk slots allocated */
|
||||
double w0; /* Chunk preemption policy */
|
||||
struct H5D_rdcc_ent_t *head; /* Head of doubly linked list */
|
||||
struct H5D_rdcc_ent_t *tail; /* Tail of doubly linked list */
|
||||
size_t nbytes_max; /* Maximum cached raw data in bytes */
|
||||
size_t nslots; /* Number of chunk slots allocated */
|
||||
double w0; /* Chunk preemption policy */
|
||||
struct H5D_rdcc_ent_t *head; /* Head of doubly linked list */
|
||||
struct H5D_rdcc_ent_t *tail; /* Tail of doubly linked list */
|
||||
struct H5D_rdcc_ent_t *tmp_head; /* Head of temporary doubly linked list. Chunks on this list are not in the hash table (slot). The head entry is a sentinel (does not refer to an actual chunk). */
|
||||
size_t nbytes_used; /* Current cached raw data in bytes */
|
||||
int nused; /* Number of chunk slots in use */
|
||||
size_t nbytes_used; /* Current cached raw data in bytes */
|
||||
int nused; /* Number of chunk slots in use */
|
||||
H5D_chunk_cached_t last; /* Cached copy of last chunk information */
|
||||
struct H5D_rdcc_ent_t **slot; /* Chunk slots, each points to a chunk*/
|
||||
H5SL_t *sel_chunks; /* Skip list containing information for each chunk selected */
|
||||
H5S_t *single_space; /* Dataspace for single element I/O on chunks */
|
||||
H5SL_t *sel_chunks; /* Skip list containing information for each chunk selected */
|
||||
H5S_t *single_space; /* Dataspace for single element I/O on chunks */
|
||||
H5D_chunk_info_t *single_chunk_info; /* Pointer to single chunk's info */
|
||||
|
||||
/* Cached information about scaled dataspace dimensions */
|
||||
@ -459,10 +459,10 @@ typedef struct H5D_shared_t {
|
||||
hbool_t checked_filters;/* TRUE if dataset passes can_apply check */
|
||||
|
||||
/* Cached dataspace info */
|
||||
unsigned ndims; /* The dataset's dataspace rank */
|
||||
hsize_t curr_dims[H5S_MAX_RANK]; /* The curr. size of dataset dimensions */
|
||||
hsize_t curr_power2up[H5S_MAX_RANK]; /* The curr. dim sizes, rounded up to next power of 2 */
|
||||
hsize_t max_dims[H5S_MAX_RANK]; /* The max. size of dataset dimensions */
|
||||
unsigned ndims; /* The dataset's dataspace rank */
|
||||
hsize_t curr_dims[H5S_MAX_RANK]; /* The curr. size of dataset dimensions */
|
||||
hsize_t curr_power2up[H5S_MAX_RANK]; /* The curr. dim sizes, rounded up to next power of 2 */
|
||||
hsize_t max_dims[H5S_MAX_RANK]; /* The max. size of dataset dimensions */
|
||||
|
||||
/* Buffered/cached information for types of raw data storage*/
|
||||
struct {
|
||||
@ -474,7 +474,7 @@ typedef struct H5D_shared_t {
|
||||
H5D_rdcc_t chunk; /* Information about chunked data */
|
||||
} cache;
|
||||
|
||||
H5D_append_flush_t append_flush; /* Append flush property information */
|
||||
H5D_append_flush_t append_flush; /* Append flush property information */
|
||||
char *extfile_prefix; /* expanded external file prefix */
|
||||
} H5D_shared_t;
|
||||
|
||||
@ -689,7 +689,7 @@ H5_DLL herr_t H5D__chunk_bh_info(const H5O_loc_t *loc, hid_t dxpl_id, H5O_t *oh,
|
||||
H5_DLL herr_t H5D__chunk_dump_index(H5D_t *dset, hid_t dxpl_id, FILE *stream);
|
||||
H5_DLL herr_t H5D__chunk_delete(H5F_t *f, hid_t dxpl_id, H5O_t *oh,
|
||||
H5O_storage_t *store);
|
||||
H5_DLL herr_t H5D__chunk_direct_write(const H5D_t *dset, hid_t dxpl_id, uint32_t filters,
|
||||
H5_DLL herr_t H5D__chunk_direct_write(const H5D_t *dset, hid_t dxpl_id, uint32_t filters,
|
||||
hsize_t *offset, uint32_t data_size, const void *buf);
|
||||
H5_DLL herr_t H5D__chunk_direct_read(const H5D_t *dset, hid_t dxpl_id, hsize_t *offset,
|
||||
uint32_t *filters, void *buf);
|
||||
|
@ -21,10 +21,10 @@
|
||||
#include "H5Dpublic.h"
|
||||
|
||||
/* Private headers needed by this file */
|
||||
#include "H5FDprivate.h" /* File drivers */
|
||||
#include "H5Oprivate.h" /* Object headers */
|
||||
#include "H5Sprivate.h" /* Dataspaces */
|
||||
#include "H5Zprivate.h" /* Data filters */
|
||||
#include "H5FDprivate.h" /* File drivers */
|
||||
#include "H5Oprivate.h" /* Object headers */
|
||||
#include "H5Sprivate.h" /* Dataspaces */
|
||||
#include "H5Zprivate.h" /* Data filters */
|
||||
|
||||
|
||||
/**************************/
|
||||
@ -33,18 +33,18 @@
|
||||
|
||||
/*
|
||||
* Feature: Define H5D_DEBUG on the compiler command line if you want to
|
||||
* debug dataset I/O. NDEBUG must not be defined in order for this
|
||||
* to have any effect.
|
||||
* debug dataset I/O. NDEBUG must not be defined in order for this
|
||||
* to have any effect.
|
||||
*/
|
||||
#ifdef NDEBUG
|
||||
# undef H5D_DEBUG
|
||||
#endif
|
||||
|
||||
/* ======== Dataset creation property names ======== */
|
||||
#define H5D_CRT_LAYOUT_NAME "layout" /* Storage layout */
|
||||
#define H5D_CRT_FILL_VALUE_NAME "fill_value" /* Fill value */
|
||||
#define H5D_CRT_LAYOUT_NAME "layout" /* Storage layout */
|
||||
#define H5D_CRT_FILL_VALUE_NAME "fill_value" /* Fill value */
|
||||
#define H5D_CRT_ALLOC_TIME_STATE_NAME "alloc_time_state" /* Space allocation time state */
|
||||
#define H5D_CRT_EXT_FILE_LIST_NAME "efl" /* External file list */
|
||||
#define H5D_CRT_EXT_FILE_LIST_NAME "efl" /* External file list */
|
||||
|
||||
/* ======== Dataset access property names ======== */
|
||||
#define H5D_ACS_DATA_CACHE_NUM_SLOTS_NAME "rdcc_nslots" /* Size of raw data chunk cache(slots) */
|
||||
@ -75,11 +75,11 @@
|
||||
#define H5D_XFER_MPIO_CHUNK_OPT_RATIO_NAME "mpio_chunk_opt_ratio"
|
||||
#define H5D_MPIO_ACTUAL_CHUNK_OPT_MODE_NAME "actual_chunk_opt_mode"
|
||||
#define H5D_MPIO_ACTUAL_IO_MODE_NAME "actual_io_mode"
|
||||
#define H5D_MPIO_LOCAL_NO_COLLECTIVE_CAUSE_NAME "local_no_collective_cause" /* cause of broken collective I/O in each process */
|
||||
#define H5D_MPIO_LOCAL_NO_COLLECTIVE_CAUSE_NAME "local_no_collective_cause" /* cause of broken collective I/O in each process */
|
||||
#define H5D_MPIO_GLOBAL_NO_COLLECTIVE_CAUSE_NAME "global_no_collective_cause" /* cause of broken collective I/O in all processes */
|
||||
#define H5D_XFER_EDC_NAME "err_detect" /* EDC */
|
||||
#define H5D_XFER_FILTER_CB_NAME "filter_cb" /* Filter callback function */
|
||||
#define H5D_XFER_CONV_CB_NAME "type_conv_cb" /* Type conversion callback function */
|
||||
#define H5D_XFER_EDC_NAME "err_detect" /* EDC */
|
||||
#define H5D_XFER_FILTER_CB_NAME "filter_cb" /* Filter callback function */
|
||||
#define H5D_XFER_CONV_CB_NAME "type_conv_cb" /* Type conversion callback function */
|
||||
#define H5D_XFER_XFORM_NAME "data_transform" /* Data transform */
|
||||
#ifdef H5_HAVE_INSTRUMENTED_LIBRARY
|
||||
/* Collective chunk instrumentation properties */
|
||||
@ -152,10 +152,10 @@ typedef struct H5D_copy_file_ud_t {
|
||||
|
||||
/* Structure for dataset append flush property (H5Pset_append_flush) */
|
||||
typedef struct H5D_append_flush_t {
|
||||
unsigned ndims; /* The # of dimensions for "boundary" */
|
||||
hsize_t boundary[H5S_MAX_RANK]; /* The dimension sizes for determining boundary */
|
||||
H5D_append_cb_t func; /* The callback function */
|
||||
void *udata; /* User data */
|
||||
unsigned ndims; /* The # of dimensions for "boundary" */
|
||||
hsize_t boundary[H5S_MAX_RANK]; /* The dimension sizes for determining boundary */
|
||||
H5D_append_cb_t func; /* The callback function */
|
||||
void *udata; /* User data */
|
||||
} H5D_append_flush_t;
|
||||
|
||||
|
||||
|
@ -96,10 +96,9 @@ H5FS_init(void)
|
||||
{
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI(FAIL)
|
||||
FUNC_ENTER_NOAPI_NOERR
|
||||
/* FUNC_ENTER() does all the work */
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5FS_init() */
|
||||
|
||||
|
773
src/H5Fint.c
773
src/H5Fint.c
File diff suppressed because it is too large
Load Diff
625
src/H5Fquery.c
625
src/H5Fquery.c
File diff suppressed because it is too large
Load Diff
@ -640,7 +640,7 @@ H5G_node_insert(H5F_t *f, hid_t dxpl_id, haddr_t addr,
|
||||
while(lt < rt) {
|
||||
idx = (int)((lt + rt) / 2);
|
||||
if((s = (const char *)H5HL_offset_into(udata->common.heap, sn->entry[idx].name_off)) == NULL)
|
||||
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "unable to get symbol table name")
|
||||
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, H5B_INS_ERROR, "unable to get symbol table name")
|
||||
|
||||
/* Check if symbol is already present */
|
||||
if(0 == (cmp = HDstrcmp(udata->common.name, s)))
|
||||
@ -802,8 +802,8 @@ H5G_node_remove(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_lt_key/*in,out*/,
|
||||
const char *s; /* Pointer to string in local heap */
|
||||
|
||||
idx = (lt + rt) / 2;
|
||||
if((s = H5HL_offset_into(udata->common.heap, sn->entry[idx].name_off)) == NULL)
|
||||
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "unable to get symbol table name")
|
||||
if((s = (const char *)H5HL_offset_into(udata->common.heap, sn->entry[idx].name_off)) == NULL)
|
||||
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, H5B_INS_ERROR, "unable to get symbol table name")
|
||||
cmp = HDstrcmp(udata->common.name, s);
|
||||
if(cmp < 0)
|
||||
rt = idx;
|
||||
|
@ -24,6 +24,9 @@
|
||||
#ifndef _H5Oprivate_H
|
||||
#define _H5Oprivate_H
|
||||
|
||||
/* Early typedefs to avoid circular dependencies */
|
||||
typedef struct H5O_t H5O_t;
|
||||
|
||||
/* Include the public header file for this API */
|
||||
#include "H5Opublic.h" /* Object header functions */
|
||||
|
||||
@ -44,7 +47,6 @@
|
||||
/* Forward references of package typedefs */
|
||||
typedef struct H5O_msg_class_t H5O_msg_class_t;
|
||||
typedef struct H5O_mesg_t H5O_mesg_t;
|
||||
typedef struct H5O_t H5O_t;
|
||||
|
||||
/* Values used to create the shared message & attribute heaps */
|
||||
/* (Note that these parameters have been tuned so that the resulting heap ID
|
||||
|
266
src/H5Pdapl.c
266
src/H5Pdapl.c
@ -13,11 +13,11 @@
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* Created: H5Pdapl.c
|
||||
* Created: H5Pdapl.c
|
||||
* October 27, 2008
|
||||
* Neil Fortner <nfortne2@hdfgroup.org>
|
||||
*
|
||||
* Purpose: Dataset access property list class routines
|
||||
* Purpose: Dataset access property list class routines
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -32,13 +32,13 @@
|
||||
/***********/
|
||||
/* Headers */
|
||||
/***********/
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5Dprivate.h" /* Datasets */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Fprivate.h" /* Files */
|
||||
#include "H5Iprivate.h" /* IDs */
|
||||
#include "H5Ppkg.h" /* Property lists */
|
||||
#include "H5MMprivate.h" /* Memory management */
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5Dprivate.h" /* Datasets */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Fprivate.h" /* Files */
|
||||
#include "H5Iprivate.h" /* IDs */
|
||||
#include "H5Ppkg.h" /* Property lists */
|
||||
#include "H5MMprivate.h" /* Memory management */
|
||||
|
||||
|
||||
/****************/
|
||||
@ -72,8 +72,8 @@
|
||||
#define H5D_ACS_VDS_PRINTF_GAP_ENC H5P__encode_hsize_t
|
||||
#define H5D_ACS_VDS_PRINTF_GAP_DEC H5P__decode_hsize_t
|
||||
/* Definition for append flush */
|
||||
#define H5D_ACS_APPEND_FLUSH_SIZE sizeof(H5D_append_flush_t)
|
||||
#define H5D_ACS_APPEND_FLUSH_DEF {0,{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},NULL,NULL}
|
||||
#define H5D_ACS_APPEND_FLUSH_SIZE sizeof(H5D_append_flush_t)
|
||||
#define H5D_ACS_APPEND_FLUSH_DEF {0,{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},NULL,NULL}
|
||||
/* Definitions for external file prefix */
|
||||
#define H5D_ACS_EFILE_PREFIX_SIZE sizeof(char *)
|
||||
#define H5D_ACS_EFILE_PREFIX_DEF NULL /*default is no prefix */
|
||||
@ -130,21 +130,21 @@ static herr_t H5P__dapl_efile_pref_close(const char* name, size_t size, void* va
|
||||
|
||||
/* Dataset access property list class library initialization object */
|
||||
const H5P_libclass_t H5P_CLS_DACC[1] = {{
|
||||
"dataset access", /* Class name for debugging */
|
||||
"dataset access", /* Class name for debugging */
|
||||
H5P_TYPE_DATASET_ACCESS, /* Class type */
|
||||
|
||||
&H5P_CLS_LINK_ACCESS_g, /* Parent class */
|
||||
&H5P_CLS_DATASET_ACCESS_g, /* Pointer to class */
|
||||
&H5P_CLS_DATASET_ACCESS_ID_g, /* Pointer to class ID */
|
||||
&H5P_LST_DATASET_ACCESS_ID_g, /* Pointer to default property list ID */
|
||||
H5P__dacc_reg_prop, /* Default property registration routine */
|
||||
&H5P_CLS_LINK_ACCESS_g, /* Parent class */
|
||||
&H5P_CLS_DATASET_ACCESS_g, /* Pointer to class */
|
||||
&H5P_CLS_DATASET_ACCESS_ID_g, /* Pointer to class ID */
|
||||
&H5P_LST_DATASET_ACCESS_ID_g, /* Pointer to default property list ID */
|
||||
H5P__dacc_reg_prop, /* Default property registration routine */
|
||||
|
||||
NULL, /* Class creation callback */
|
||||
NULL, /* Class creation callback info */
|
||||
NULL, /* Class copy callback */
|
||||
NULL, /* Class copy callback info */
|
||||
NULL, /* Class close callback */
|
||||
NULL /* Class close callback info */
|
||||
NULL, /* Class creation callback */
|
||||
NULL, /* Class creation callback info */
|
||||
NULL, /* Class copy callback */
|
||||
NULL, /* Class copy callback info */
|
||||
NULL, /* Class close callback */
|
||||
NULL /* Class close callback info */
|
||||
}};
|
||||
|
||||
|
||||
@ -158,8 +158,8 @@ const H5P_libclass_t H5P_CLS_DACC[1] = {{
|
||||
/*******************/
|
||||
|
||||
/* Property value defaults */
|
||||
static const H5D_append_flush_t H5D_def_append_flush_g = H5D_ACS_APPEND_FLUSH_DEF; /* Default setting for append flush */
|
||||
static const char *H5D_def_efile_prefix_g = H5D_ACS_EFILE_PREFIX_DEF; /* Default external file prefix string */
|
||||
static const H5D_append_flush_t H5D_def_append_flush_g = H5D_ACS_APPEND_FLUSH_DEF; /* Default setting for append flush */
|
||||
static const char *H5D_def_efile_prefix_g = H5D_ACS_EFILE_PREFIX_DEF; /* Default external file prefix string */
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
@ -169,9 +169,6 @@ static const char *H5D_def_efile_prefix_g = H5D_ACS_EFILE_PREFIX_DEF; /* Default
|
||||
* properties
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* October 27, 2008
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -187,17 +184,17 @@ H5P__dacc_reg_prop(H5P_genclass_t *pclass)
|
||||
FUNC_ENTER_STATIC
|
||||
|
||||
/* Register the size of raw data chunk cache (elements) */
|
||||
if(H5P_register_real(pclass, H5D_ACS_DATA_CACHE_NUM_SLOTS_NAME, H5D_ACS_DATA_CACHE_NUM_SLOTS_SIZE, &rdcc_nslots,
|
||||
if(H5P_register_real(pclass, H5D_ACS_DATA_CACHE_NUM_SLOTS_NAME, H5D_ACS_DATA_CACHE_NUM_SLOTS_SIZE, &rdcc_nslots,
|
||||
NULL, NULL, NULL, H5D_ACS_DATA_CACHE_NUM_SLOTS_ENC, H5D_ACS_DATA_CACHE_NUM_SLOTS_DEC, NULL, NULL, NULL, NULL) < 0)
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class")
|
||||
|
||||
/* Register the size of raw data chunk cache(bytes) */
|
||||
if(H5P_register_real(pclass, H5D_ACS_DATA_CACHE_BYTE_SIZE_NAME, H5D_ACS_DATA_CACHE_BYTE_SIZE_SIZE, &rdcc_nbytes,
|
||||
if(H5P_register_real(pclass, H5D_ACS_DATA_CACHE_BYTE_SIZE_NAME, H5D_ACS_DATA_CACHE_BYTE_SIZE_SIZE, &rdcc_nbytes,
|
||||
NULL, NULL, NULL, H5D_ACS_DATA_CACHE_BYTE_SIZE_ENC, H5D_ACS_DATA_CACHE_BYTE_SIZE_DEC, NULL, NULL, NULL, NULL) < 0)
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class")
|
||||
|
||||
/* Register the preemption for reading chunks */
|
||||
if(H5P_register_real(pclass, H5D_ACS_PREEMPT_READ_CHUNKS_NAME, H5D_ACS_PREEMPT_READ_CHUNKS_SIZE, &rdcc_w0,
|
||||
if(H5P_register_real(pclass, H5D_ACS_PREEMPT_READ_CHUNKS_NAME, H5D_ACS_PREEMPT_READ_CHUNKS_SIZE, &rdcc_w0,
|
||||
NULL, NULL, NULL, H5D_ACS_PREEMPT_READ_CHUNKS_ENC, H5D_ACS_PREEMPT_READ_CHUNKS_DEC, NULL, NULL, NULL, NULL) < 0)
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class")
|
||||
|
||||
@ -215,12 +212,12 @@ H5P__dacc_reg_prop(H5P_genclass_t *pclass)
|
||||
|
||||
/* Register info for append flush */
|
||||
/* (Note: this property should not have an encode/decode callback -QAK) */
|
||||
if(H5P_register_real(pclass, H5D_ACS_APPEND_FLUSH_NAME, H5D_ACS_APPEND_FLUSH_SIZE, &H5D_def_append_flush_g,
|
||||
if(H5P_register_real(pclass, H5D_ACS_APPEND_FLUSH_NAME, H5D_ACS_APPEND_FLUSH_SIZE, &H5D_def_append_flush_g,
|
||||
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) < 0)
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class")
|
||||
|
||||
/* Register property for external file prefix */
|
||||
if(H5P_register_real(pclass, H5D_ACS_EFILE_PREFIX_NAME, H5D_ACS_EFILE_PREFIX_SIZE, &H5D_def_efile_prefix_g,
|
||||
if(H5P_register_real(pclass, H5D_ACS_EFILE_PREFIX_NAME, H5D_ACS_EFILE_PREFIX_SIZE, &H5D_def_efile_prefix_g,
|
||||
NULL, H5D_ACS_EFILE_PREFIX_SET, H5D_ACS_EFILE_PREFIX_GET, H5D_ACS_EFILE_PREFIX_ENC, H5D_ACS_EFILE_PREFIX_DEC,
|
||||
H5D_ACS_EFILE_PREFIX_DEL, H5D_ACS_EFILE_PREFIX_COPY, H5D_ACS_EFILE_PREFIX_CMP, H5D_ACS_EFILE_PREFIX_CLOSE) < 0)
|
||||
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class")
|
||||
@ -237,7 +234,6 @@ done:
|
||||
* for a property list
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -263,7 +259,6 @@ H5P__dapl_efile_pref_set(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNUSED
|
||||
* from a property list
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -290,7 +285,6 @@ H5P__dapl_efile_pref_get(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNUSED
|
||||
* encoded.
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -341,8 +335,7 @@ H5P__dapl_efile_pref_enc(const void *value, void **_pp, size_t *size)
|
||||
* property in the dataset access property list is
|
||||
* decoded.
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -393,7 +386,6 @@ done:
|
||||
* Purpose: Frees memory used to store the external file prefix string
|
||||
*
|
||||
* Return: SUCCEED (Can't fail)
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -416,7 +408,6 @@ H5P__dapl_efile_pref_del(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNUSED
|
||||
* Purpose: Creates a copy of the external file prefix string
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -440,7 +431,6 @@ H5P__dapl_efile_pref_copy(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UNUSED
|
||||
* compared.
|
||||
*
|
||||
* Return: zero if VALUE1 and VALUE2 are equal, non zero otherwise.
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static int
|
||||
@ -470,7 +460,6 @@ done:
|
||||
* Purpose: Frees memory used to store the external file prefix string
|
||||
*
|
||||
* Return: SUCCEED/FAIL
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -487,33 +476,27 @@ H5P__dapl_efile_pref_close(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UNUSE
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Pset_chunk_cache
|
||||
* Function: H5Pset_chunk_cache
|
||||
*
|
||||
* Purpose: Set the number of objects in the meta data cache and the
|
||||
* maximum number of chunks and bytes in the raw data chunk cache.
|
||||
* Once set, these values will override the values in the file access
|
||||
* property list. Each of thhese values can be individually unset
|
||||
* (or not set at all) by passing the macros:
|
||||
* H5D_CHUNK_CACHE_NCHUNKS_DEFAULT,
|
||||
* H5D_CHUNK_CACHE_NSLOTS_DEFAULT, and/or
|
||||
* H5D_CHUNK_CACHE_W0_DEFAULT
|
||||
* as appropriate.
|
||||
* Purpose: Set the number of objects in the meta data cache and the
|
||||
* maximum number of chunks and bytes in the raw data chunk cache.
|
||||
* Once set, these values will override the values in the file access
|
||||
* property list. Each of thhese values can be individually unset
|
||||
* (or not set at all) by passing the macros:
|
||||
* H5D_CHUNK_CACHE_NCHUNKS_DEFAULT,
|
||||
* H5D_CHUNK_CACHE_NSLOTS_DEFAULT, and/or
|
||||
* H5D_CHUNK_CACHE_W0_DEFAULT
|
||||
* as appropriate.
|
||||
*
|
||||
* The RDCC_W0 value should be between 0 and 1 inclusive and
|
||||
* indicates how much chunks that have been fully read or fully
|
||||
* written are favored for preemption. A value of zero means
|
||||
* fully read or written chunks are treated no differently than
|
||||
* other chunks (the preemption is strictly LRU) while a value
|
||||
* of one means fully read chunks are always preempted before
|
||||
* other chunks.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Monday, October 27, 2008
|
||||
*
|
||||
* Modifications:
|
||||
* The RDCC_W0 value should be between 0 and 1 inclusive and
|
||||
* indicates how much chunks that have been fully read or fully
|
||||
* written are favored for preemption. A value of zero means
|
||||
* fully read or written chunks are treated no differently than
|
||||
* other chunks (the preemption is strictly LRU) while a value
|
||||
* of one means fully read chunks are always preempted before
|
||||
* other chunks.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -548,23 +531,17 @@ done:
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Pget_chunk_cache
|
||||
* Function: H5Pget_chunk_cache
|
||||
*
|
||||
* Purpose: Retrieves the maximum possible number of elements in the meta
|
||||
* data cache and the maximum possible number of elements and
|
||||
* bytes and the RDCC_W0 value in the raw data chunk cache. Any
|
||||
* (or all) arguments may be null pointers in which case the
|
||||
* corresponding datum is not returned. If these properties have
|
||||
* not been set on this property list, the default values for a
|
||||
* file access property list are returned.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Monday, October 27, 2008
|
||||
*
|
||||
* Modifications:
|
||||
* Purpose: Retrieves the maximum possible number of elements in the meta
|
||||
* data cache and the maximum possible number of elements and
|
||||
* bytes and the RDCC_W0 value in the raw data chunk cache. Any
|
||||
* (or all) arguments may be null pointers in which case the
|
||||
* corresponding datum is not returned. If these properties have
|
||||
* not been set on this property list, the default values for a
|
||||
* file access property list are returned.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -625,10 +602,6 @@ done:
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Wednesday, January 23, 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -684,10 +657,6 @@ H5P__encode_chunk_cache_nslots(const void *value, void **_pp, size_t *size)
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Wednesday, January 23, 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -735,10 +704,6 @@ H5P__decode_chunk_cache_nslots(const void **_pp, void *_value)
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Wednesday, January 23, 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -794,10 +759,6 @@ H5P__encode_chunk_cache_nbytes(const void *value, void **_pp, size_t *size)
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Wednesday, January 23, 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -849,10 +810,6 @@ H5P__decode_chunk_cache_nbytes(const void **_pp, void *_value)
|
||||
* view defines the extent.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* May 4, 2015
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -887,13 +844,9 @@ done:
|
||||
* Purpose: Takes the access property list for the virtual dataset,
|
||||
* dapl_id, and gets the flag, view, set by the
|
||||
* H5Pset_virtual_view call. The possible values of view are
|
||||
* H5D_VDS_FIRST_MISSING or H5D_VDS_LAST_AVAIALBLE.
|
||||
* H5D_VDS_FIRST_MISSING or H5D_VDS_LAST_AVAIALBLE.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* May 4, 2015
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -927,10 +880,6 @@ done:
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Tuesday, May 5, 2015
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -964,10 +913,6 @@ H5P__dacc_vds_view_enc(const void *value, void **_pp, size_t *size)
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* Tuesday, May 5, 2015
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
@ -1011,10 +956,6 @@ H5P__dacc_vds_view_dec(const void **_pp, void *_value)
|
||||
* the VDS fill value setting.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* May 21, 2015
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -1053,10 +994,6 @@ done:
|
||||
* value for gap_size is 0.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Neil Fortner
|
||||
* May 21, 2015
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -1083,30 +1020,27 @@ done:
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Pset_append_flush
|
||||
* Function: H5Pset_append_flush
|
||||
*
|
||||
* Purpose: Sets the boundary, callback function, and user data in the
|
||||
* property list.
|
||||
* "ndims": number of array elements for boundary
|
||||
* "boundary": used to determine whether the current dimension hits
|
||||
* a boundary; if so, invoke the callback function and
|
||||
* flush the dataset.
|
||||
* "func": the callback function to invoke when the boundary is hit
|
||||
* "udata": the user data to pass as parameter with the callback function
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Vailin Choi; Dec 2013
|
||||
* Purpose: Sets the boundary, callback function, and user data in the
|
||||
* property list.
|
||||
* "ndims": number of array elements for boundary
|
||||
* "boundary": used to determine whether the current dimension hits
|
||||
* a boundary; if so, invoke the callback function and
|
||||
* flush the dataset.
|
||||
* "func": the callback function to invoke when the boundary is hit
|
||||
* "udata": the user data to pass as parameter with the callback function
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5Pset_append_flush(hid_t plist_id, unsigned ndims, const hsize_t *boundary, H5D_append_cb_t func, void *udata)
|
||||
{
|
||||
H5P_genplist_t *plist; /* Property list pointer */
|
||||
H5D_append_flush_t info; /* Property for append flush parameters */
|
||||
unsigned u; /* Local index variable */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
H5P_genplist_t *plist; /* Property list pointer */
|
||||
H5D_append_flush_t info; /* Property for append flush parameters */
|
||||
unsigned u; /* Local index variable */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_API(FAIL)
|
||||
H5TRACE5("e", "iIu*hx*x", plist_id, ndims, boundary, func, udata);
|
||||
@ -1123,7 +1057,7 @@ H5Pset_append_flush(hid_t plist_id, unsigned ndims, const hsize_t *boundary, H5D
|
||||
* This is almost certainly an error as the user data will not be used. */
|
||||
if(!func && udata)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "callback is NULL while user data is not")
|
||||
|
||||
|
||||
/* Get the plist structure */
|
||||
if(NULL == (plist = H5P_object_verify(plist_id, H5P_DATASET_ACCESS)))
|
||||
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID")
|
||||
@ -1151,18 +1085,15 @@ done:
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Pget_append_flush()
|
||||
* Function: H5Pget_append_flush()
|
||||
*
|
||||
* Purpose: Retrieves the boundary, callback function and user data set in
|
||||
* property list.
|
||||
* Note that the # of boundary sizes to retrieve will not exceed
|
||||
* the parameter "ndims" and the ndims set previously via
|
||||
* H5Pset_append_flush().
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Vailin Choi; Dec 2013
|
||||
* Purpose: Retrieves the boundary, callback function and user data set in
|
||||
* property list.
|
||||
* Note that the # of boundary sizes to retrieve will not exceed
|
||||
* the parameter "ndims" and the ndims set previously via
|
||||
* H5Pset_append_flush().
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -1170,7 +1101,7 @@ H5Pget_append_flush(hid_t plist_id, unsigned ndims, hsize_t boundary[], H5D_appe
|
||||
{
|
||||
H5P_genplist_t *plist; /* property list pointer */
|
||||
H5D_append_flush_t info;
|
||||
unsigned u; /* local index variable */
|
||||
unsigned u; /* local index variable */
|
||||
herr_t ret_value = SUCCEED; /* return value */
|
||||
|
||||
FUNC_ENTER_API(FAIL)
|
||||
@ -1186,15 +1117,15 @@ H5Pget_append_flush(hid_t plist_id, unsigned ndims, hsize_t boundary[], H5D_appe
|
||||
|
||||
/* Assign return values */
|
||||
if(boundary) {
|
||||
HDmemset(boundary, 0, ndims * sizeof(hsize_t));
|
||||
if(info.ndims > 0)
|
||||
for(u = 0; u < info.ndims && u < ndims; u++)
|
||||
boundary[u] = info.boundary[u];
|
||||
HDmemset(boundary, 0, ndims * sizeof(hsize_t));
|
||||
if(info.ndims > 0)
|
||||
for(u = 0; u < info.ndims && u < ndims; u++)
|
||||
boundary[u] = info.boundary[u];
|
||||
} /* end if */
|
||||
if(func)
|
||||
*func = info.func;
|
||||
*func = info.func;
|
||||
if(udata)
|
||||
*udata = info.udata;
|
||||
*udata = info.udata;
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
@ -1215,8 +1146,7 @@ done:
|
||||
* This property can be overwritten by the environment variable
|
||||
* HDF5_EXTFILE_PREFIX.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
@ -1242,24 +1172,22 @@ done:
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Pget_efile_prefix
|
||||
* Function: H5Pget_efile_prefix
|
||||
*
|
||||
* Purpose: Gets the prefix to be used for any external files.
|
||||
*
|
||||
* If the pointer is not NULL, it points to a user-allocated
|
||||
* buffer.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
* Purpose: Gets the prefix to be used for any external files.
|
||||
* If the pointer is not NULL, it points to a user-allocated
|
||||
* buffer.
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
ssize_t
|
||||
H5Pget_efile_prefix(hid_t plist_id, char *prefix, size_t size)
|
||||
{
|
||||
H5P_genplist_t *plist; /* Property list pointer */
|
||||
char *my_prefix; /* Library's copy of the prefix */
|
||||
size_t len; /* Length of prefix string */
|
||||
ssize_t ret_value; /* Return value */
|
||||
char *my_prefix; /* Library's copy of the prefix */
|
||||
size_t len; /* Length of prefix string */
|
||||
ssize_t ret_value; /* Return value */
|
||||
|
||||
FUNC_ENTER_API(FAIL)
|
||||
H5TRACE3("Zs", "i*sz", plist_id, prefix, size);
|
||||
|
@ -50,43 +50,43 @@
|
||||
* The library's property list classes
|
||||
*/
|
||||
|
||||
#define H5P_ROOT (H5OPEN H5P_CLS_ROOT_ID_g)
|
||||
#define H5P_OBJECT_CREATE (H5OPEN H5P_CLS_OBJECT_CREATE_ID_g)
|
||||
#define H5P_FILE_CREATE (H5OPEN H5P_CLS_FILE_CREATE_ID_g)
|
||||
#define H5P_FILE_ACCESS (H5OPEN H5P_CLS_FILE_ACCESS_ID_g)
|
||||
#define H5P_DATASET_CREATE (H5OPEN H5P_CLS_DATASET_CREATE_ID_g)
|
||||
#define H5P_DATASET_ACCESS (H5OPEN H5P_CLS_DATASET_ACCESS_ID_g)
|
||||
#define H5P_DATASET_XFER (H5OPEN H5P_CLS_DATASET_XFER_ID_g)
|
||||
#define H5P_FILE_MOUNT (H5OPEN H5P_CLS_FILE_MOUNT_ID_g)
|
||||
#define H5P_GROUP_CREATE (H5OPEN H5P_CLS_GROUP_CREATE_ID_g)
|
||||
#define H5P_GROUP_ACCESS (H5OPEN H5P_CLS_GROUP_ACCESS_ID_g)
|
||||
#define H5P_DATATYPE_CREATE (H5OPEN H5P_CLS_DATATYPE_CREATE_ID_g)
|
||||
#define H5P_DATATYPE_ACCESS (H5OPEN H5P_CLS_DATATYPE_ACCESS_ID_g)
|
||||
#define H5P_STRING_CREATE (H5OPEN H5P_CLS_STRING_CREATE_ID_g)
|
||||
#define H5P_ATTRIBUTE_CREATE (H5OPEN H5P_CLS_ATTRIBUTE_CREATE_ID_g)
|
||||
#define H5P_ATTRIBUTE_ACCESS (H5OPEN H5P_CLS_ATTRIBUTE_ACCESS_ID_g)
|
||||
#define H5P_OBJECT_COPY (H5OPEN H5P_CLS_OBJECT_COPY_ID_g)
|
||||
#define H5P_LINK_CREATE (H5OPEN H5P_CLS_LINK_CREATE_ID_g)
|
||||
#define H5P_LINK_ACCESS (H5OPEN H5P_CLS_LINK_ACCESS_ID_g)
|
||||
#define H5P_ROOT (H5OPEN H5P_CLS_ROOT_ID_g)
|
||||
#define H5P_OBJECT_CREATE (H5OPEN H5P_CLS_OBJECT_CREATE_ID_g)
|
||||
#define H5P_FILE_CREATE (H5OPEN H5P_CLS_FILE_CREATE_ID_g)
|
||||
#define H5P_FILE_ACCESS (H5OPEN H5P_CLS_FILE_ACCESS_ID_g)
|
||||
#define H5P_DATASET_CREATE (H5OPEN H5P_CLS_DATASET_CREATE_ID_g)
|
||||
#define H5P_DATASET_ACCESS (H5OPEN H5P_CLS_DATASET_ACCESS_ID_g)
|
||||
#define H5P_DATASET_XFER (H5OPEN H5P_CLS_DATASET_XFER_ID_g)
|
||||
#define H5P_FILE_MOUNT (H5OPEN H5P_CLS_FILE_MOUNT_ID_g)
|
||||
#define H5P_GROUP_CREATE (H5OPEN H5P_CLS_GROUP_CREATE_ID_g)
|
||||
#define H5P_GROUP_ACCESS (H5OPEN H5P_CLS_GROUP_ACCESS_ID_g)
|
||||
#define H5P_DATATYPE_CREATE (H5OPEN H5P_CLS_DATATYPE_CREATE_ID_g)
|
||||
#define H5P_DATATYPE_ACCESS (H5OPEN H5P_CLS_DATATYPE_ACCESS_ID_g)
|
||||
#define H5P_STRING_CREATE (H5OPEN H5P_CLS_STRING_CREATE_ID_g)
|
||||
#define H5P_ATTRIBUTE_CREATE (H5OPEN H5P_CLS_ATTRIBUTE_CREATE_ID_g)
|
||||
#define H5P_ATTRIBUTE_ACCESS (H5OPEN H5P_CLS_ATTRIBUTE_ACCESS_ID_g)
|
||||
#define H5P_OBJECT_COPY (H5OPEN H5P_CLS_OBJECT_COPY_ID_g)
|
||||
#define H5P_LINK_CREATE (H5OPEN H5P_CLS_LINK_CREATE_ID_g)
|
||||
#define H5P_LINK_ACCESS (H5OPEN H5P_CLS_LINK_ACCESS_ID_g)
|
||||
|
||||
/*
|
||||
* The library's default property lists
|
||||
*/
|
||||
#define H5P_FILE_CREATE_DEFAULT (H5OPEN H5P_LST_FILE_CREATE_ID_g)
|
||||
#define H5P_FILE_ACCESS_DEFAULT (H5OPEN H5P_LST_FILE_ACCESS_ID_g)
|
||||
#define H5P_DATASET_CREATE_DEFAULT (H5OPEN H5P_LST_DATASET_CREATE_ID_g)
|
||||
#define H5P_DATASET_ACCESS_DEFAULT (H5OPEN H5P_LST_DATASET_ACCESS_ID_g)
|
||||
#define H5P_DATASET_XFER_DEFAULT (H5OPEN H5P_LST_DATASET_XFER_ID_g)
|
||||
#define H5P_FILE_MOUNT_DEFAULT (H5OPEN H5P_LST_FILE_MOUNT_ID_g)
|
||||
#define H5P_GROUP_CREATE_DEFAULT (H5OPEN H5P_LST_GROUP_CREATE_ID_g)
|
||||
#define H5P_GROUP_ACCESS_DEFAULT (H5OPEN H5P_LST_GROUP_ACCESS_ID_g)
|
||||
#define H5P_DATATYPE_CREATE_DEFAULT (H5OPEN H5P_LST_DATATYPE_CREATE_ID_g)
|
||||
#define H5P_DATATYPE_ACCESS_DEFAULT (H5OPEN H5P_LST_DATATYPE_ACCESS_ID_g)
|
||||
#define H5P_ATTRIBUTE_CREATE_DEFAULT (H5OPEN H5P_LST_ATTRIBUTE_CREATE_ID_g)
|
||||
#define H5P_ATTRIBUTE_ACCESS_DEFAULT (H5OPEN H5P_LST_ATTRIBUTE_ACCESS_ID_g)
|
||||
#define H5P_OBJECT_COPY_DEFAULT (H5OPEN H5P_LST_OBJECT_COPY_ID_g)
|
||||
#define H5P_LINK_CREATE_DEFAULT (H5OPEN H5P_LST_LINK_CREATE_ID_g)
|
||||
#define H5P_LINK_ACCESS_DEFAULT (H5OPEN H5P_LST_LINK_ACCESS_ID_g)
|
||||
#define H5P_FILE_CREATE_DEFAULT (H5OPEN H5P_LST_FILE_CREATE_ID_g)
|
||||
#define H5P_FILE_ACCESS_DEFAULT (H5OPEN H5P_LST_FILE_ACCESS_ID_g)
|
||||
#define H5P_DATASET_CREATE_DEFAULT (H5OPEN H5P_LST_DATASET_CREATE_ID_g)
|
||||
#define H5P_DATASET_ACCESS_DEFAULT (H5OPEN H5P_LST_DATASET_ACCESS_ID_g)
|
||||
#define H5P_DATASET_XFER_DEFAULT (H5OPEN H5P_LST_DATASET_XFER_ID_g)
|
||||
#define H5P_FILE_MOUNT_DEFAULT (H5OPEN H5P_LST_FILE_MOUNT_ID_g)
|
||||
#define H5P_GROUP_CREATE_DEFAULT (H5OPEN H5P_LST_GROUP_CREATE_ID_g)
|
||||
#define H5P_GROUP_ACCESS_DEFAULT (H5OPEN H5P_LST_GROUP_ACCESS_ID_g)
|
||||
#define H5P_DATATYPE_CREATE_DEFAULT (H5OPEN H5P_LST_DATATYPE_CREATE_ID_g)
|
||||
#define H5P_DATATYPE_ACCESS_DEFAULT (H5OPEN H5P_LST_DATATYPE_ACCESS_ID_g)
|
||||
#define H5P_ATTRIBUTE_CREATE_DEFAULT (H5OPEN H5P_LST_ATTRIBUTE_CREATE_ID_g)
|
||||
#define H5P_ATTRIBUTE_ACCESS_DEFAULT (H5OPEN H5P_LST_ATTRIBUTE_ACCESS_ID_g)
|
||||
#define H5P_OBJECT_COPY_DEFAULT (H5OPEN H5P_LST_OBJECT_COPY_ID_g)
|
||||
#define H5P_LINK_CREATE_DEFAULT (H5OPEN H5P_LST_LINK_CREATE_ID_g)
|
||||
#define H5P_LINK_ACCESS_DEFAULT (H5OPEN H5P_LST_LINK_ACCESS_ID_g)
|
||||
|
||||
/* Common creation order flags (for links in groups and attributes on objects) */
|
||||
#define H5P_CRT_ORDER_TRACKED 0x0001
|
||||
@ -140,9 +140,9 @@ typedef enum H5D_mpio_actual_chunk_opt_mode_t {
|
||||
typedef enum H5D_mpio_actual_io_mode_t {
|
||||
/* The following four values are conveniently defined as a bit field so that
|
||||
* we can switch from the default to indpendent or collective and then to
|
||||
* mixed without having to check the original value.
|
||||
*
|
||||
* NO_COLLECTIVE means that either collective I/O wasn't requested or that
|
||||
* mixed without having to check the original value.
|
||||
*
|
||||
* NO_COLLECTIVE means that either collective I/O wasn't requested or that
|
||||
* no I/O took place.
|
||||
*
|
||||
* CHUNK_INDEPENDENT means that collective I/O was requested, but the
|
||||
@ -155,7 +155,7 @@ typedef enum H5D_mpio_actual_io_mode_t {
|
||||
|
||||
/* The contiguous case is separate from the bit field. */
|
||||
H5D_MPIO_CONTIGUOUS_COLLECTIVE = 0x4
|
||||
} H5D_mpio_actual_io_mode_t;
|
||||
} H5D_mpio_actual_io_mode_t;
|
||||
|
||||
/* Broken collective IO property */
|
||||
typedef enum H5D_mpio_no_collective_cause_t {
|
||||
@ -326,7 +326,7 @@ H5_DLL herr_t H5Pget_cache(hid_t plist_id,
|
||||
H5_DLL herr_t H5Pset_mdc_config(hid_t plist_id,
|
||||
H5AC_cache_config_t * config_ptr);
|
||||
H5_DLL herr_t H5Pget_mdc_config(hid_t plist_id,
|
||||
H5AC_cache_config_t * config_ptr); /* out */
|
||||
H5AC_cache_config_t * config_ptr); /* out */
|
||||
H5_DLL herr_t H5Pset_gc_references(hid_t fapl_id, unsigned gc_ref);
|
||||
H5_DLL herr_t H5Pget_gc_references(hid_t fapl_id, unsigned *gc_ref/*out*/);
|
||||
H5_DLL herr_t H5Pset_fclose_degree(hid_t fapl_id, H5F_close_degree_t degree);
|
||||
@ -402,12 +402,12 @@ H5_DLL herr_t H5Pget_fill_value(hid_t plist_id, hid_t type_id,
|
||||
void *value/*out*/);
|
||||
H5_DLL herr_t H5Pfill_value_defined(hid_t plist, H5D_fill_value_t *status);
|
||||
H5_DLL herr_t H5Pset_alloc_time(hid_t plist_id, H5D_alloc_time_t
|
||||
alloc_time);
|
||||
alloc_time);
|
||||
H5_DLL herr_t H5Pget_alloc_time(hid_t plist_id, H5D_alloc_time_t
|
||||
*alloc_time/*out*/);
|
||||
*alloc_time/*out*/);
|
||||
H5_DLL herr_t H5Pset_fill_time(hid_t plist_id, H5D_fill_time_t fill_time);
|
||||
H5_DLL herr_t H5Pget_fill_time(hid_t plist_id, H5D_fill_time_t
|
||||
*fill_time/*out*/);
|
||||
*fill_time/*out*/);
|
||||
|
||||
/* Dataset access property list (DAPL) routines */
|
||||
H5_DLL herr_t H5Pset_chunk_cache(hid_t dapl_id, size_t rdcc_nslots,
|
||||
|
765
src/H5R.c
765
src/H5R.c
@ -21,16 +21,13 @@
|
||||
/***********/
|
||||
/* Headers */
|
||||
/***********/
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5Dprivate.h" /* Datasets */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5HGprivate.h" /* Global Heaps */
|
||||
#include "H5Iprivate.h" /* IDs */
|
||||
#include "H5MMprivate.h" /* Memory management */
|
||||
#include "H5Rpkg.h" /* References */
|
||||
#include "H5Sprivate.h" /* Dataspaces */
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5Iprivate.h" /* IDs */
|
||||
#include "H5Rpkg.h" /* References */
|
||||
#include "H5Sprivate.h" /* Dataspaces */
|
||||
|
||||
|
||||
/****************/
|
||||
@ -47,20 +44,11 @@
|
||||
/* Local Prototypes */
|
||||
/********************/
|
||||
|
||||
static herr_t H5R_create(void *ref, H5G_loc_t *loc, const char *name,
|
||||
H5R_type_t ref_type, H5S_t *space, hid_t dxpl_id);
|
||||
static H5S_t * H5R_get_region(H5F_t *file, hid_t dxpl_id, const void *_ref);
|
||||
static ssize_t H5R_get_name(H5F_t *file, hid_t lapl_id, hid_t dxpl_id, hid_t id,
|
||||
H5R_type_t ref_type, const void *_ref, char *name, size_t size);
|
||||
|
||||
|
||||
/*********************/
|
||||
/* Package Variables */
|
||||
/*********************/
|
||||
|
||||
/* Package initialization variable */
|
||||
hbool_t H5_PKG_INIT_VAR = FALSE;
|
||||
|
||||
|
||||
/*****************************/
|
||||
/* Library Private Variables */
|
||||
@ -71,274 +59,6 @@ hbool_t H5_PKG_INIT_VAR = FALSE;
|
||||
/* Local Variables */
|
||||
/*******************/
|
||||
|
||||
/* Reference ID class */
|
||||
static const H5I_class_t H5I_REFERENCE_CLS[1] = {{
|
||||
H5I_REFERENCE, /* ID class value */
|
||||
0, /* Class flags */
|
||||
0, /* # of reserved IDs for class */
|
||||
NULL /* Callback routine for closing objects of this class */
|
||||
}};
|
||||
|
||||
/* Flag indicating "top" of interface has been initialized */
|
||||
static hbool_t H5R_top_package_initialize_s = FALSE;
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R__init_package -- Initialize interface-specific information
|
||||
USAGE
|
||||
herr_t H5R__init_package()
|
||||
|
||||
RETURNS
|
||||
Non-negative on success/Negative on failure
|
||||
DESCRIPTION
|
||||
Initializes any interface-specific data or routines.
|
||||
|
||||
--------------------------------------------------------------------------*/
|
||||
herr_t
|
||||
H5R__init_package(void)
|
||||
{
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
/* Initialize the atom group for the file IDs */
|
||||
if(H5I_register_type(H5I_REFERENCE_CLS) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to initialize interface")
|
||||
|
||||
/* Mark "top" of interface as initialized, too */
|
||||
H5R_top_package_initialize_s = TRUE;
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R__init_package() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_top_term_package
|
||||
PURPOSE
|
||||
Terminate various H5R objects
|
||||
USAGE
|
||||
void H5R_top_term_package()
|
||||
RETURNS
|
||||
void
|
||||
DESCRIPTION
|
||||
Release IDs for the atom group, deferring full interface shutdown
|
||||
until later (in H5R_term_package).
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
Can't report errors...
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
int
|
||||
H5R_top_term_package(void)
|
||||
{
|
||||
int n = 0;
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT_NOERR
|
||||
|
||||
if(H5R_top_package_initialize_s) {
|
||||
if(H5I_nmembers(H5I_REFERENCE) > 0) {
|
||||
(void)H5I_clear_type(H5I_REFERENCE, FALSE, FALSE);
|
||||
n++; /*H5I*/
|
||||
} /* end if */
|
||||
|
||||
/* Mark closed */
|
||||
if(0 == n)
|
||||
H5R_top_package_initialize_s = FALSE;
|
||||
} /* end if */
|
||||
|
||||
FUNC_LEAVE_NOAPI(n)
|
||||
} /* end H5R_top_term_package() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_term_package
|
||||
PURPOSE
|
||||
Terminate various H5R objects
|
||||
USAGE
|
||||
void H5R_term_package()
|
||||
RETURNS
|
||||
void
|
||||
DESCRIPTION
|
||||
Release the atom group and any other resources allocated.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
Can't report errors...
|
||||
|
||||
Finishes shutting down the interface, after H5R_top_term_package()
|
||||
is called
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
int
|
||||
H5R_term_package(void)
|
||||
{
|
||||
int n = 0;
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT_NOERR
|
||||
|
||||
if(H5_PKG_INIT_VAR) {
|
||||
/* Sanity checks */
|
||||
HDassert(0 == H5I_nmembers(H5I_REFERENCE));
|
||||
HDassert(FALSE == H5R_top_package_initialize_s);
|
||||
|
||||
/* Destroy the reference id group */
|
||||
n += (H5I_dec_type_ref(H5I_REFERENCE) > 0);
|
||||
|
||||
/* Mark closed */
|
||||
if(0 == n)
|
||||
H5_PKG_INIT_VAR = FALSE;
|
||||
} /* end if */
|
||||
|
||||
FUNC_LEAVE_NOAPI(n)
|
||||
} /* end H5R_term_package() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_create
|
||||
PURPOSE
|
||||
Creates a particular kind of reference for the user
|
||||
USAGE
|
||||
herr_t H5R_create(ref, loc, name, ref_type, space)
|
||||
void *ref; OUT: Reference created
|
||||
H5G_loc_t *loc; IN: File location used to locate object pointed to
|
||||
const char *name; IN: Name of object at location LOC_ID of object
|
||||
pointed to
|
||||
H5R_type_t ref_type; IN: Type of reference to create
|
||||
H5S_t *space; IN: Dataspace ID with selection, used for Dataset
|
||||
Region references.
|
||||
|
||||
RETURNS
|
||||
Non-negative on success/Negative on failure
|
||||
DESCRIPTION
|
||||
Creates a particular type of reference specified with REF_TYPE, in the
|
||||
space pointed to by REF. The LOC_ID and NAME are used to locate the object
|
||||
pointed to and the SPACE_ID is used to choose the region pointed to (for
|
||||
Dataset Region references).
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
static herr_t
|
||||
H5R_create(void *_ref, H5G_loc_t *loc, const char *name, H5R_type_t ref_type, H5S_t *space, hid_t dxpl_id)
|
||||
{
|
||||
H5G_loc_t obj_loc; /* Group hier. location of object */
|
||||
H5G_name_t path; /* Object group hier. path */
|
||||
H5O_loc_t oloc; /* Object object location */
|
||||
hbool_t obj_found = FALSE; /* Object location found */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(_ref);
|
||||
HDassert(loc);
|
||||
HDassert(name);
|
||||
HDassert(ref_type > H5R_BADTYPE && ref_type < H5R_MAXTYPE);
|
||||
|
||||
/* Set up object location to fill in */
|
||||
obj_loc.oloc = &oloc;
|
||||
obj_loc.path = &path;
|
||||
H5G_loc_reset(&obj_loc);
|
||||
|
||||
/* Find the object */
|
||||
if(H5G_loc_find(loc, name, &obj_loc, H5P_DEFAULT, dxpl_id) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_NOTFOUND, FAIL, "object not found")
|
||||
obj_found = TRUE;
|
||||
|
||||
switch(ref_type) {
|
||||
case H5R_OBJECT:
|
||||
{
|
||||
hobj_ref_t *ref = (hobj_ref_t *)_ref; /* Get pointer to correct type of reference struct */
|
||||
|
||||
*ref = obj_loc.oloc->addr;
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
hdset_reg_ref_t *ref = (hdset_reg_ref_t *)_ref; /* Get pointer to correct type of reference struct */
|
||||
hssize_t buf_size; /* Size of buffer needed to serialize selection */
|
||||
uint8_t *p; /* Pointer to OID to store */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
unsigned heapid_found; /* Flag for non-zero heap ID found */
|
||||
unsigned u; /* local index */
|
||||
|
||||
/* Set up information for dataset region */
|
||||
|
||||
/* Return any previous heap block to the free list if we are garbage collecting */
|
||||
if(H5F_GC_REF(loc->oloc->file)) {
|
||||
/* Check for an existing heap ID in the reference */
|
||||
for(u = 0, heapid_found = 0, p = (uint8_t *)ref; u < H5R_DSET_REG_REF_BUF_SIZE; u++)
|
||||
if(p[u] != 0) {
|
||||
heapid_found = 1;
|
||||
break;
|
||||
} /* end if */
|
||||
|
||||
if(heapid_found != 0) {
|
||||
/* Return heap block to free list */
|
||||
} /* end if */
|
||||
} /* end if */
|
||||
|
||||
/* Zero the heap ID out, may leak heap space if user is re-using reference and doesn't have garbage collection on */
|
||||
HDmemset(ref, 0, H5R_DSET_REG_REF_BUF_SIZE);
|
||||
|
||||
/* Get the amount of space required to serialize the selection */
|
||||
if((buf_size = H5S_SELECT_SERIAL_SIZE(space)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "Invalid amount of space for serializing selection")
|
||||
|
||||
/* Increase buffer size to allow for the dataset OID */
|
||||
buf_size += (hssize_t)sizeof(haddr_t);
|
||||
|
||||
/* Allocate the space to store the serialized information */
|
||||
H5_CHECK_OVERFLOW(buf_size, hssize_t, size_t);
|
||||
if(NULL == (buf = (uint8_t *)H5MM_malloc((size_t)buf_size)))
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
|
||||
|
||||
/* Serialize information for dataset OID into heap buffer */
|
||||
p = (uint8_t *)buf;
|
||||
H5F_addr_encode(loc->oloc->file, &p, obj_loc.oloc->addr);
|
||||
|
||||
/* Serialize the selection into heap buffer */
|
||||
if(H5S_SELECT_SERIALIZE(space, &p) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTCOPY, FAIL, "Unable to serialize selection")
|
||||
|
||||
/* Save the serialized buffer for later */
|
||||
H5_CHECK_OVERFLOW(buf_size, hssize_t, size_t);
|
||||
if(H5HG_insert(loc->oloc->file, dxpl_id, (size_t)buf_size, buf, &hobjid) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_WRITEERROR, FAIL, "Unable to serialize selection")
|
||||
|
||||
/* Serialize the heap ID and index for storage in the file */
|
||||
p = (uint8_t *)ref;
|
||||
H5F_addr_encode(loc->oloc->file, &p, hobjid.addr);
|
||||
UINT32ENCODE(p, hobjid.idx);
|
||||
|
||||
/* Free the buffer we serialized data in */
|
||||
H5MM_xfree(buf);
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
done:
|
||||
if(obj_found)
|
||||
H5G_loc_free(&obj_loc);
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_create() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
@ -378,189 +98,29 @@ H5Rcreate(void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t
|
||||
H5TRACE5("e", "*xi*sRti", ref, loc_id, name, ref_type, space_id);
|
||||
|
||||
/* Check args */
|
||||
if(ref == NULL)
|
||||
if (ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
|
||||
if(H5G_loc(loc_id, &loc) < 0)
|
||||
if (H5G_loc(loc_id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
||||
if(!name || !*name)
|
||||
if (!name || !*name)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name given")
|
||||
if(ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
if (ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference type")
|
||||
if(ref_type != H5R_OBJECT && ref_type != H5R_DATASET_REGION)
|
||||
if (ref_type != H5R_OBJECT && ref_type != H5R_DATASET_REGION)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_UNSUPPORTED, FAIL, "reference type not supported")
|
||||
if(space_id == (-1) && ref_type == H5R_DATASET_REGION)
|
||||
if (space_id == (-1) && ref_type == H5R_DATASET_REGION)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "reference region dataspace id must be valid")
|
||||
if(space_id != (-1) && (NULL == (space = (H5S_t *)H5I_object_verify(space_id, H5I_DATASPACE))))
|
||||
if (space_id != (-1) && (NULL == (space = (H5S_t *)H5I_object_verify(space_id, H5I_DATASPACE))))
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataspace")
|
||||
|
||||
/* Create reference */
|
||||
if((ret_value = H5R_create(ref, &loc, name, ref_type, space, H5AC_ind_read_dxpl_id)) < 0)
|
||||
if ((ret_value = H5R_create(ref, &loc, name, ref_type, space, H5AC_ind_read_dxpl_id)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to create reference")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Rcreate() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_dereference
|
||||
PURPOSE
|
||||
Opens the HDF5 object referenced.
|
||||
USAGE
|
||||
hid_t H5R_dereference(ref)
|
||||
H5F_t *file; IN: File the object being dereferenced is within
|
||||
H5R_type_t ref_type; IN: Type of reference
|
||||
void *ref; IN: Reference to open.
|
||||
|
||||
RETURNS
|
||||
Valid ID on success, Negative on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, open that object and return an ID for
|
||||
that object.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
Currently only set up to work with references to datasets
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
Raymond Lu
|
||||
13 July 2011
|
||||
I added the OAPL_ID parameter for the object being referenced. It only
|
||||
supports dataset access property list currently.
|
||||
|
||||
M. Scot Breitenfeld
|
||||
3 March 2015
|
||||
Added a check for undefined reference pointer.
|
||||
--------------------------------------------------------------------------*/
|
||||
hid_t
|
||||
H5R_dereference(H5F_t *file, hid_t oapl_id, hid_t dxpl_id, H5R_type_t ref_type, const void *_ref, hbool_t app_ref)
|
||||
{
|
||||
H5O_loc_t oloc; /* Object location */
|
||||
H5G_name_t path; /* Path of object */
|
||||
H5G_loc_t loc; /* Group location */
|
||||
unsigned rc; /* Reference count of object */
|
||||
H5O_type_t obj_type; /* Type of object */
|
||||
hid_t ret_value = H5I_INVALID_HID; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(_ref);
|
||||
HDassert(ref_type > H5R_BADTYPE && ref_type < H5R_MAXTYPE);
|
||||
HDassert(file);
|
||||
|
||||
/* Initialize the object location */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = file;
|
||||
|
||||
switch(ref_type) {
|
||||
case H5R_OBJECT:
|
||||
oloc.addr = *(const hobj_ref_t *)_ref; /* Only object references currently supported */
|
||||
if(!H5F_addr_defined(oloc.addr) || oloc.addr == 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Undefined reference pointer")
|
||||
break;
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
const uint8_t *p; /* Pointer to OID to store */
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
if(!H5F_addr_defined(hobjid.addr) || hobjid.addr == 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Undefined reference pointer")
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if(NULL == (buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)))
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, FAIL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
H5MM_xfree(buf);
|
||||
} /* end case */
|
||||
break;
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
/* Get the # of links for object, and its type */
|
||||
/* (To check to make certain that this object hasn't been deleted since the reference was created) */
|
||||
if(H5O_get_rc_and_type(&oloc, dxpl_id, &rc, &obj_type) < 0 || 0 == rc)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_LINKCOUNT, FAIL, "dereferencing deleted object")
|
||||
|
||||
/* Construct a group location for opening the object */
|
||||
H5G_name_reset(&path);
|
||||
loc.oloc = &oloc;
|
||||
loc.path = &path;
|
||||
|
||||
/* Open the object */
|
||||
switch(obj_type) {
|
||||
case H5O_TYPE_GROUP:
|
||||
{
|
||||
H5G_t *group; /* Pointer to group to open */
|
||||
|
||||
if(NULL == (group = H5G_open(&loc, dxpl_id)))
|
||||
HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "not found")
|
||||
|
||||
/* Create an atom for the group */
|
||||
if((ret_value = H5I_register(H5I_GROUP, group, app_ref)) < 0) {
|
||||
H5G_close(group);
|
||||
HGOTO_ERROR(H5E_SYM, H5E_CANTREGISTER, FAIL, "can't register group")
|
||||
} /* end if */
|
||||
} /* end case */
|
||||
break;
|
||||
|
||||
case H5O_TYPE_NAMED_DATATYPE:
|
||||
{
|
||||
H5T_t *type; /* Pointer to datatype to open */
|
||||
|
||||
if(NULL == (type = H5T_open(&loc, dxpl_id)))
|
||||
HGOTO_ERROR(H5E_DATATYPE, H5E_NOTFOUND, FAIL, "not found")
|
||||
|
||||
/* Create an atom for the datatype */
|
||||
if((ret_value = H5I_register(H5I_DATATYPE, type, app_ref)) < 0) {
|
||||
H5T_close(type);
|
||||
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTREGISTER, FAIL, "can't register datatype")
|
||||
} /* end if */
|
||||
} /* end case */
|
||||
break;
|
||||
|
||||
case H5O_TYPE_DATASET:
|
||||
{
|
||||
H5D_t *dset; /* Pointer to dataset to open */
|
||||
|
||||
/* Open the dataset */
|
||||
if(NULL == (dset = H5D_open(&loc, oapl_id, dxpl_id)))
|
||||
HGOTO_ERROR(H5E_DATASET, H5E_NOTFOUND, FAIL, "not found")
|
||||
|
||||
/* Create an atom for the dataset */
|
||||
if((ret_value = H5I_register(H5I_DATASET, dset, app_ref)) < 0) {
|
||||
H5D_close(dset);
|
||||
HGOTO_ERROR(H5E_DATASET, H5E_CANTREGISTER, FAIL, "can't register dataset")
|
||||
} /* end if */
|
||||
} /* end case */
|
||||
break;
|
||||
|
||||
case H5O_TYPE_UNKNOWN:
|
||||
case H5O_TYPE_NTYPES:
|
||||
default:
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_BADTYPE, FAIL, "can't identify type of object referenced")
|
||||
} /* end switch */
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_dereference() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
@ -601,99 +161,30 @@ H5Rdereference2(hid_t obj_id, hid_t oapl_id, H5R_type_t ref_type, const void *_r
|
||||
H5TRACE4("i", "iiRt*x", obj_id, oapl_id, ref_type, _ref);
|
||||
|
||||
/* Check args */
|
||||
if(H5G_loc(obj_id, &loc) < 0)
|
||||
if (H5G_loc(obj_id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
||||
if(oapl_id < 0)
|
||||
if (oapl_id < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a property list")
|
||||
if(ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
if (ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference type")
|
||||
if(_ref == NULL)
|
||||
if (_ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
|
||||
|
||||
/* Verify access property list and get correct dxpl */
|
||||
if(H5P_verify_apl_and_dxpl(&oapl_id, H5P_CLS_DACC, &dxpl_id, obj_id, FALSE) < 0)
|
||||
if (H5P_verify_apl_and_dxpl(&oapl_id, H5P_CLS_DACC, &dxpl_id, obj_id, FALSE) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTSET, FAIL, "can't set access and transfer property lists")
|
||||
|
||||
/* Get the file pointer from the entry */
|
||||
file = loc.oloc->file;
|
||||
|
||||
/* Create reference */
|
||||
if((ret_value = H5R_dereference(file, oapl_id, dxpl_id, ref_type, _ref, TRUE)) < 0)
|
||||
if ((ret_value = H5R_dereference(file, oapl_id, dxpl_id, ref_type, _ref, TRUE)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to dereference object")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Rdereference2() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_get_region
|
||||
PURPOSE
|
||||
Retrieves a dataspace with the region pointed to selected.
|
||||
USAGE
|
||||
H5S_t *H5R_get_region(file, ref_type, ref)
|
||||
H5F_t *file; IN: File the object being dereferenced is within
|
||||
void *ref; IN: Reference to open.
|
||||
|
||||
RETURNS
|
||||
Pointer to the dataspace on success, NULL on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, creates a copy of the dataset pointed
|
||||
to's dataspace and defines a selection in the copy which is the region
|
||||
pointed to.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
static H5S_t *
|
||||
H5R_get_region(H5F_t *file, hid_t dxpl_id, const void *_ref)
|
||||
{
|
||||
H5O_loc_t oloc; /* Object location */
|
||||
const uint8_t *p; /* Pointer to OID to store */
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
uint8_t *buf = NULL; /* Buffer to store serialized selection in */
|
||||
H5S_t *ret_value;
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(_ref);
|
||||
HDassert(file);
|
||||
|
||||
/* Initialize the object location */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = file;
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if((buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, NULL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Open and copy the dataset's dataspace */
|
||||
if((ret_value = H5S_read(&oloc, dxpl_id)) == NULL)
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_NOTFOUND, NULL, "not found")
|
||||
|
||||
/* Unserialize the selection */
|
||||
if(H5S_SELECT_DESERIALIZE(&ret_value, &p) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTDECODE, NULL, "can't deserialize selection")
|
||||
|
||||
done:
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
if(buf)
|
||||
H5MM_xfree(buf);
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_get_region() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
@ -729,111 +220,25 @@ H5Rget_region(hid_t id, H5R_type_t ref_type, const void *ref)
|
||||
H5TRACE3("i", "iRt*x", id, ref_type, ref);
|
||||
|
||||
/* Check args */
|
||||
if(H5G_loc(id, &loc) < 0)
|
||||
if (H5G_loc(id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
||||
if(ref_type != H5R_DATASET_REGION)
|
||||
if (ref_type != H5R_DATASET_REGION)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference type")
|
||||
if(ref == NULL)
|
||||
if (ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
|
||||
|
||||
/* Get the dataspace with the correct region selected */
|
||||
if((space = H5R_get_region(loc.oloc->file, H5AC_ind_read_dxpl_id, ref)) == NULL)
|
||||
if ((space = H5R_get_region(loc.oloc->file, H5AC_ind_read_dxpl_id, ref)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTCREATE, FAIL, "unable to create dataspace")
|
||||
|
||||
/* Atomize */
|
||||
if((ret_value = H5I_register(H5I_DATASPACE, space, TRUE)) < 0)
|
||||
if ((ret_value = H5I_register(H5I_DATASPACE, space, TRUE)) < 0)
|
||||
HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace atom")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Rget_region() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_get_obj_type
|
||||
PURPOSE
|
||||
Retrieves the type of object that an object reference points to
|
||||
USAGE
|
||||
H5O_type_t H5R_get_obj_type(file, ref_type, ref)
|
||||
H5F_t *file; IN: File the object being dereferenced is within
|
||||
H5R_type_t ref_type; IN: Type of reference to query
|
||||
void *ref; IN: Reference to query.
|
||||
|
||||
RETURNS
|
||||
Success: An object type defined in H5Gpublic.h
|
||||
Failure: H5G_UNKNOWN
|
||||
DESCRIPTION
|
||||
Given a reference to some object, this function returns the type of object
|
||||
pointed to.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
herr_t
|
||||
H5R_get_obj_type(H5F_t *file, hid_t dxpl_id, H5R_type_t ref_type,
|
||||
const void *_ref, H5O_type_t *obj_type)
|
||||
{
|
||||
H5O_loc_t oloc; /* Object location */
|
||||
unsigned rc; /* Reference count of object */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(file);
|
||||
HDassert(_ref);
|
||||
|
||||
/* Initialize the symbol table entry */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = file;
|
||||
|
||||
switch(ref_type) {
|
||||
case H5R_OBJECT:
|
||||
/* Get the object oid */
|
||||
oloc.addr = *(const hobj_ref_t *)_ref; /* Only object references currently supported */
|
||||
break;
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
const uint8_t *p; /* Pointer to reference to decode */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if((buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, FAIL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
H5MM_xfree(buf);
|
||||
} /* end case */
|
||||
break;
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
/* Get the # of links for object, and its type */
|
||||
/* (To check to make certain that this object hasn't been deleted since the reference was created) */
|
||||
if(H5O_get_rc_and_type(&oloc, dxpl_id, &rc, obj_type) < 0 || 0 == rc)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_LINKCOUNT, FAIL, "dereferencing deleted object")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_get_obj_type() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
@ -869,121 +274,21 @@ H5Rget_obj_type2(hid_t id, H5R_type_t ref_type, const void *ref,
|
||||
H5TRACE4("e", "iRt*x*Ot", id, ref_type, ref, obj_type);
|
||||
|
||||
/* Check args */
|
||||
if(H5G_loc(id, &loc) < 0)
|
||||
if (H5G_loc(id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
||||
if(ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
if (ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference type")
|
||||
if(ref == NULL)
|
||||
if (ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
|
||||
|
||||
/* Get the object information */
|
||||
if(H5R_get_obj_type(loc.oloc->file, H5AC_ind_read_dxpl_id, ref_type, ref, obj_type) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to determine object type")
|
||||
if (H5R_get_obj_type(loc.oloc->file, H5AC_ind_read_dxpl_id, ref_type, ref, obj_type) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to determine object type")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Rget_obj_type2() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_get_name
|
||||
PURPOSE
|
||||
Internal routine to determine a name for the object referenced
|
||||
USAGE
|
||||
ssize_t H5R_get_name(f, dxpl_id, ref_type, ref, name, size)
|
||||
H5F_t *f; IN: Pointer to the file that the reference is pointing
|
||||
into
|
||||
hid_t lapl_id; IN: LAPL to use for operation
|
||||
hid_t dxpl_id; IN: DXPL to use for operation
|
||||
hid_t id; IN: Location ID given for reference
|
||||
H5R_type_t ref_type; IN: Type of reference
|
||||
void *ref; IN: Reference to query.
|
||||
char *name; OUT: Buffer to place name of object referenced
|
||||
size_t size; IN: Size of name buffer
|
||||
|
||||
RETURNS
|
||||
Non-negative length of the path on success, Negative on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, determine a path to the object
|
||||
referenced in the file.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
This may not be the only path to that object.
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
static ssize_t
|
||||
H5R_get_name(H5F_t *f, hid_t lapl_id, hid_t dxpl_id, hid_t id, H5R_type_t ref_type,
|
||||
const void *_ref, char *name, size_t size)
|
||||
{
|
||||
hid_t file_id = H5I_INVALID_HID; /* ID for file that the reference is in */
|
||||
H5O_loc_t oloc; /* Object location describing object for reference */
|
||||
ssize_t ret_value = -1; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
/* Check args */
|
||||
HDassert(f);
|
||||
HDassert(_ref);
|
||||
|
||||
/* Initialize the object location */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = f;
|
||||
|
||||
/* Get address for reference */
|
||||
switch(ref_type) {
|
||||
case H5R_OBJECT:
|
||||
oloc.addr = *(const hobj_ref_t *)_ref;
|
||||
break;
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
const uint8_t *p; /* Pointer to OID to store */
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if((buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, FAIL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
H5MM_xfree(buf);
|
||||
} /* end case */
|
||||
break;
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
/* Retrieve file ID for name search */
|
||||
if((file_id = H5I_get_file_id(id, FALSE)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTGET, FAIL, "can't retrieve file ID")
|
||||
|
||||
/* Get name, length, etc. */
|
||||
if((ret_value = H5G_get_name_by_addr(file_id, lapl_id, dxpl_id, &oloc, name, size)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTGET, FAIL, "can't determine name")
|
||||
|
||||
done:
|
||||
/* Close file ID used for search */
|
||||
if(file_id > 0 && H5I_dec_ref(file_id) < 0)
|
||||
HDONE_ERROR(H5E_REFERENCE, H5E_CANTDEC, FAIL, "can't decrement ref count of temp ID")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_get_name() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
@ -1030,18 +335,18 @@ H5Rget_name(hid_t id, H5R_type_t ref_type, const void *_ref, char *name,
|
||||
H5TRACE5("Zs", "iRt*x*sz", id, ref_type, _ref, name, size);
|
||||
|
||||
/* Check args */
|
||||
if(H5G_loc(id, &loc) < 0)
|
||||
if (H5G_loc(id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
||||
if(ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
if (ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference type")
|
||||
if(_ref == NULL)
|
||||
if (_ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
|
||||
|
||||
/* Get the file pointer from the entry */
|
||||
file = loc.oloc->file;
|
||||
|
||||
/* Get name */
|
||||
if((ret_value = H5R_get_name(file, H5P_DEFAULT, H5AC_ind_read_dxpl_id, id, ref_type, _ref, name, size)) < 0)
|
||||
if ((ret_value = H5R_get_name(file, H5P_DEFAULT, H5AC_ind_read_dxpl_id, id, ref_type, _ref, name, size)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to determine object path")
|
||||
|
||||
done:
|
||||
|
118
src/H5Rdeprec.c
118
src/H5Rdeprec.c
@ -13,11 +13,9 @@
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* Created: H5Rdeprec.c
|
||||
* September 13 2007
|
||||
* Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Created: H5Rdeprec.c
|
||||
*
|
||||
* Purpose: Deprecated functions from the H5R interface. These
|
||||
* Purpose: Deprecated functions from the H5R interface. These
|
||||
* functions are here for compatibility purposes and may be
|
||||
* removed in the future. Applications should switch to the
|
||||
* newer APIs.
|
||||
@ -35,13 +33,16 @@
|
||||
/***********/
|
||||
/* Headers */
|
||||
/***********/
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5Oprivate.h" /* Object headers */
|
||||
#include "H5Rpkg.h" /* References */
|
||||
#include "H5Ppublic.h" /* for using H5P_DATASET_ACCESS_DEFAULT */
|
||||
/* Public headers needed by this file */
|
||||
#include "H5Ppublic.h" /* Property lists */
|
||||
|
||||
/* Private headers needed by this file */
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5Oprivate.h" /* Object headers */
|
||||
#include "H5Rpkg.h" /* References */
|
||||
|
||||
|
||||
/****************/
|
||||
@ -81,29 +82,22 @@
|
||||
|
||||
#ifndef H5_NO_DEPRECATED_SYMBOLS
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5Rget_obj_type1
|
||||
PURPOSE
|
||||
Retrieves the type of object that an object reference points to
|
||||
USAGE
|
||||
H5G_obj_t H5Rget_obj_type1(id, ref_type, ref)
|
||||
hid_t id; IN: Dataset reference object is in or location ID of
|
||||
object that the dataset is located within.
|
||||
H5R_type_t ref_type; IN: Type of reference to query
|
||||
void *ref; IN: Reference to query.
|
||||
|
||||
RETURNS
|
||||
Success: An object type defined in H5Gpublic.h
|
||||
Failure: H5G_UNKNOWN
|
||||
DESCRIPTION
|
||||
Given a reference to some object, this function returns the type of object
|
||||
pointed to.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Rget_obj_type1
|
||||
*
|
||||
* Purpose: Retrieves the type of the object that an object points to.
|
||||
*
|
||||
* Parameters:
|
||||
* id IN: Dataset reference object is in or location ID of
|
||||
* object that the dataset is located within
|
||||
* ref_type IN: Type of reference to query
|
||||
* ref IN: Reference to query
|
||||
*
|
||||
* Return: Success: An object type (as defined in H5Gpublic.h)
|
||||
* Failure: H5G_UNKNOWN
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
H5G_obj_t
|
||||
H5Rget_obj_type1(hid_t id, H5R_type_t ref_type, const void *ref)
|
||||
{
|
||||
@ -115,16 +109,16 @@ H5Rget_obj_type1(hid_t id, H5R_type_t ref_type, const void *ref)
|
||||
H5TRACE3("Go", "iRt*x", id, ref_type, ref);
|
||||
|
||||
/* Check args */
|
||||
if(H5G_loc(id, &loc) < 0)
|
||||
if (H5G_loc(id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, H5G_UNKNOWN, "not a location")
|
||||
if(ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
if (ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, H5G_UNKNOWN, "invalid reference type")
|
||||
if(ref == NULL)
|
||||
if (ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, H5G_UNKNOWN, "invalid reference pointer")
|
||||
|
||||
/* Get the object information */
|
||||
if(H5R_get_obj_type(loc.oloc->file, H5AC_ind_read_dxpl_id, ref_type, ref, &obj_type) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, H5G_UNKNOWN, "unable to determine object type")
|
||||
if (H5R_get_obj_type(loc.oloc->file, H5AC_ind_read_dxpl_id, ref_type, ref, &obj_type) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, H5G_UNKNOWN, "unable to determine object type")
|
||||
|
||||
/* Set return value */
|
||||
ret_value = H5G_map_obj_type(obj_type);
|
||||
@ -134,28 +128,22 @@ done:
|
||||
} /* end H5Rget_obj_type1() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5Rdereference1
|
||||
PURPOSE
|
||||
Opens the HDF5 object referenced.
|
||||
USAGE
|
||||
hid_t H5Rdereference1(ref)
|
||||
hid_t id; IN: Dataset reference object is in or location ID of
|
||||
object that the dataset is located within.
|
||||
H5R_type_t ref_type; IN: Type of reference to create
|
||||
void *ref; IN: Reference to open.
|
||||
|
||||
RETURNS
|
||||
Valid ID on success, Negative on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, open that object and return an ID for
|
||||
that object.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Rdereference1
|
||||
*
|
||||
* Purpose: Opens the HDF5 object referenced.
|
||||
*
|
||||
* Parameters:
|
||||
* id IN: Dataset reference object is in or location ID of
|
||||
* object that the dataset is located within
|
||||
* ref_type IN: Type of reference to create
|
||||
* ref IN: Reference to open
|
||||
*
|
||||
* Return: Success: Valid HDF5 ID
|
||||
* Failure: Negative
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
hid_t
|
||||
H5Rdereference1(hid_t obj_id, H5R_type_t ref_type, const void *_ref)
|
||||
{
|
||||
@ -167,18 +155,18 @@ H5Rdereference1(hid_t obj_id, H5R_type_t ref_type, const void *_ref)
|
||||
H5TRACE3("i", "iRt*x", obj_id, ref_type, _ref);
|
||||
|
||||
/* Check args */
|
||||
if(H5G_loc(obj_id, &loc) < 0)
|
||||
if (H5G_loc(obj_id, &loc) < 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
||||
if(ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
if (ref_type <= H5R_BADTYPE || ref_type >= H5R_MAXTYPE)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference type")
|
||||
if(_ref == NULL)
|
||||
if (_ref == NULL)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
|
||||
|
||||
/* Get the file pointer from the entry */
|
||||
file = loc.oloc->file;
|
||||
|
||||
/* Create reference */
|
||||
if((ret_value = H5R_dereference(file, H5P_DATASET_ACCESS_DEFAULT, H5AC_ind_read_dxpl_id, ref_type, _ref, TRUE)) < 0)
|
||||
if ((ret_value = H5R_dereference(file, H5P_DATASET_ACCESS_DEFAULT, H5AC_ind_read_dxpl_id, ref_type, _ref, TRUE)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable dereference object")
|
||||
|
||||
done:
|
||||
|
767
src/H5Rint.c
Normal file
767
src/H5Rint.c
Normal file
@ -0,0 +1,767 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/****************/
|
||||
/* Module Setup */
|
||||
/****************/
|
||||
|
||||
#include "H5Rmodule.h" /* This source code file is part of the H5R module */
|
||||
|
||||
|
||||
/***********/
|
||||
/* Headers */
|
||||
/***********/
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5Dprivate.h" /* Datasets */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5HGprivate.h" /* Global Heaps */
|
||||
#include "H5Iprivate.h" /* IDs */
|
||||
#include "H5MMprivate.h" /* Memory management */
|
||||
#include "H5Oprivate.h" /* Object headers */
|
||||
#include "H5Rpkg.h" /* References */
|
||||
#include "H5Sprivate.h" /* Dataspaces */
|
||||
#include "H5Tprivate.h" /* Datatypes */
|
||||
|
||||
|
||||
/****************/
|
||||
/* Local Macros */
|
||||
/****************/
|
||||
|
||||
/******************/
|
||||
/* Local Typedefs */
|
||||
/******************/
|
||||
|
||||
/********************/
|
||||
/* Local Prototypes */
|
||||
/********************/
|
||||
|
||||
/*********************/
|
||||
/* Package Variables */
|
||||
/*********************/
|
||||
|
||||
/* Package initialization variable */
|
||||
hbool_t H5_PKG_INIT_VAR = FALSE;
|
||||
|
||||
/*****************************/
|
||||
/* Library Private Variables */
|
||||
/*****************************/
|
||||
|
||||
/*******************/
|
||||
/* Local Variables */
|
||||
/*******************/
|
||||
|
||||
/* Reference ID class
|
||||
*
|
||||
* NOTE: H5I_REFERENCE is not used by the library and has been deprecated
|
||||
* with a tentative removal version of 1.12.0. (DER, July 2017)
|
||||
*/
|
||||
static const H5I_class_t H5I_REFERENCE_CLS[1] = {{
|
||||
H5I_REFERENCE, /* ID class value */
|
||||
0, /* Class flags */
|
||||
0, /* # of reserved IDs for class */
|
||||
NULL /* Callback routine for closing objects of this class */
|
||||
}};
|
||||
|
||||
/* Flag indicating "top" of interface has been initialized */
|
||||
static hbool_t H5R_top_package_initialize_s = FALSE;
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R__init_package -- Initialize interface-specific information
|
||||
USAGE
|
||||
herr_t H5R__init_package()
|
||||
|
||||
RETURNS
|
||||
Non-negative on success/Negative on failure
|
||||
DESCRIPTION
|
||||
Initializes any interface-specific data or routines.
|
||||
|
||||
--------------------------------------------------------------------------*/
|
||||
herr_t
|
||||
H5R__init_package(void)
|
||||
{
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
/* Initialize the atom group for the file IDs */
|
||||
if (H5I_register_type(H5I_REFERENCE_CLS) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to initialize interface")
|
||||
|
||||
/* Mark "top" of interface as initialized, too */
|
||||
H5R_top_package_initialize_s = TRUE;
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R__init_package() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_top_term_package
|
||||
PURPOSE
|
||||
Terminate various H5R objects
|
||||
USAGE
|
||||
void H5R_top_term_package()
|
||||
RETURNS
|
||||
void
|
||||
DESCRIPTION
|
||||
Release IDs for the atom group, deferring full interface shutdown
|
||||
until later (in H5R_term_package).
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
Can't report errors...
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
int
|
||||
H5R_top_term_package(void)
|
||||
{
|
||||
int n = 0;
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT_NOERR
|
||||
|
||||
if (H5R_top_package_initialize_s) {
|
||||
if (H5I_nmembers(H5I_REFERENCE) > 0) {
|
||||
(void)H5I_clear_type(H5I_REFERENCE, FALSE, FALSE);
|
||||
n++;
|
||||
}
|
||||
|
||||
/* Mark closed */
|
||||
if (0 == n)
|
||||
H5R_top_package_initialize_s = FALSE;
|
||||
}
|
||||
|
||||
FUNC_LEAVE_NOAPI(n)
|
||||
} /* end H5R_top_term_package() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_term_package
|
||||
PURPOSE
|
||||
Terminate various H5R objects
|
||||
USAGE
|
||||
void H5R_term_package()
|
||||
RETURNS
|
||||
void
|
||||
DESCRIPTION
|
||||
Release the atom group and any other resources allocated.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
Can't report errors...
|
||||
|
||||
Finishes shutting down the interface, after H5R_top_term_package()
|
||||
is called
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
int
|
||||
H5R_term_package(void)
|
||||
{
|
||||
int n = 0;
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT_NOERR
|
||||
|
||||
if (H5_PKG_INIT_VAR) {
|
||||
/* Sanity checks */
|
||||
HDassert(0 == H5I_nmembers(H5I_REFERENCE));
|
||||
HDassert(FALSE == H5R_top_package_initialize_s);
|
||||
|
||||
/* Destroy the reference id group */
|
||||
n += (H5I_dec_type_ref(H5I_REFERENCE) > 0);
|
||||
|
||||
/* Mark closed */
|
||||
if (0 == n)
|
||||
H5_PKG_INIT_VAR = FALSE;
|
||||
}
|
||||
|
||||
FUNC_LEAVE_NOAPI(n)
|
||||
} /* end H5R_term_package() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_create
|
||||
PURPOSE
|
||||
Creates a particular kind of reference for the user
|
||||
USAGE
|
||||
herr_t H5R_create(ref, loc, name, ref_type, space)
|
||||
void *ref; OUT: Reference created
|
||||
H5G_loc_t *loc; IN: File location used to locate object pointed to
|
||||
const char *name; IN: Name of object at location LOC_ID of object
|
||||
pointed to
|
||||
H5R_type_t ref_type; IN: Type of reference to create
|
||||
H5S_t *space; IN: Dataspace ID with selection, used for Dataset
|
||||
Region references.
|
||||
|
||||
RETURNS
|
||||
Non-negative on success/Negative on failure
|
||||
DESCRIPTION
|
||||
Creates a particular type of reference specified with REF_TYPE, in the
|
||||
space pointed to by REF. The LOC_ID and NAME are used to locate the object
|
||||
pointed to and the SPACE_ID is used to choose the region pointed to (for
|
||||
Dataset Region references).
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
herr_t
|
||||
H5R_create(void *_ref, H5G_loc_t *loc, const char *name, H5R_type_t ref_type, H5S_t *space, hid_t dxpl_id)
|
||||
{
|
||||
H5G_loc_t obj_loc; /* Group hier. location of object */
|
||||
H5G_name_t path; /* Object group hier. path */
|
||||
H5O_loc_t oloc; /* Object object location */
|
||||
hbool_t obj_found = FALSE; /* Object location found */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(_ref);
|
||||
HDassert(loc);
|
||||
HDassert(name);
|
||||
HDassert(ref_type > H5R_BADTYPE && ref_type < H5R_MAXTYPE);
|
||||
|
||||
/* Set up object location to fill in */
|
||||
obj_loc.oloc = &oloc;
|
||||
obj_loc.path = &path;
|
||||
H5G_loc_reset(&obj_loc);
|
||||
|
||||
/* Find the object */
|
||||
if (H5G_loc_find(loc, name, &obj_loc, H5P_DEFAULT, dxpl_id) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_NOTFOUND, FAIL, "object not found")
|
||||
obj_found = TRUE;
|
||||
|
||||
switch (ref_type) {
|
||||
case H5R_OBJECT:
|
||||
{
|
||||
hobj_ref_t *ref = (hobj_ref_t *)_ref; /* Get pointer to correct type of reference struct */
|
||||
|
||||
*ref = obj_loc.oloc->addr;
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
hdset_reg_ref_t *ref = (hdset_reg_ref_t *)_ref; /* Get pointer to correct type of reference struct */
|
||||
hssize_t buf_size; /* Size of buffer needed to serialize selection */
|
||||
uint8_t *p; /* Pointer to OID to store */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
unsigned heapid_found; /* Flag for non-zero heap ID found */
|
||||
unsigned u; /* local index */
|
||||
|
||||
/* Set up information for dataset region */
|
||||
|
||||
/* Return any previous heap block to the free list if we are
|
||||
* garbage collecting
|
||||
*/
|
||||
if (H5F_GC_REF(loc->oloc->file)) {
|
||||
/* Check for an existing heap ID in the reference */
|
||||
for (u = 0, heapid_found = 0, p = (uint8_t *)ref; u < H5R_DSET_REG_REF_BUF_SIZE; u++)
|
||||
if (p[u] != 0) {
|
||||
heapid_found = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if (heapid_found != 0) {
|
||||
/* Return heap block to free list */
|
||||
}
|
||||
}
|
||||
|
||||
/* Zero the heap ID out, may leak heap space if user is re-using
|
||||
* reference and doesn't have garbage collection turned on
|
||||
*/
|
||||
HDmemset(ref, 0, H5R_DSET_REG_REF_BUF_SIZE);
|
||||
|
||||
/* Get the amount of space required to serialize the selection */
|
||||
if ((buf_size = H5S_SELECT_SERIAL_SIZE(space)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "Invalid amount of space for serializing selection")
|
||||
|
||||
/* Increase buffer size to allow for the dataset OID */
|
||||
buf_size += (hssize_t)sizeof(haddr_t);
|
||||
|
||||
/* Allocate the space to store the serialized information */
|
||||
H5_CHECK_OVERFLOW(buf_size, hssize_t, size_t);
|
||||
if (NULL == (buf = (uint8_t *)H5MM_malloc((size_t)buf_size)))
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
|
||||
|
||||
/* Serialize information for dataset OID into heap buffer */
|
||||
p = (uint8_t *)buf;
|
||||
H5F_addr_encode(loc->oloc->file, &p, obj_loc.oloc->addr);
|
||||
|
||||
/* Serialize the selection into heap buffer */
|
||||
if (H5S_SELECT_SERIALIZE(space, &p) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTCOPY, FAIL, "Unable to serialize selection")
|
||||
|
||||
/* Save the serialized buffer for later */
|
||||
H5_CHECK_OVERFLOW(buf_size, hssize_t, size_t);
|
||||
if (H5HG_insert(loc->oloc->file, dxpl_id, (size_t)buf_size, buf, &hobjid) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_WRITEERROR, FAIL, "Unable to serialize selection")
|
||||
|
||||
/* Serialize the heap ID and index for storage in the file */
|
||||
p = (uint8_t *)ref;
|
||||
H5F_addr_encode(loc->oloc->file, &p, hobjid.addr);
|
||||
UINT32ENCODE(p, hobjid.idx);
|
||||
|
||||
/* Free the buffer we serialized data in */
|
||||
H5MM_xfree(buf);
|
||||
break;
|
||||
} /* end case H5R_DATASET_REGION */
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
done:
|
||||
if (obj_found)
|
||||
H5G_loc_free(&obj_loc);
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_create() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_dereference
|
||||
PURPOSE
|
||||
Opens the HDF5 object referenced.
|
||||
USAGE
|
||||
hid_t H5R_dereference(ref)
|
||||
H5F_t *file; IN: File the object being dereferenced is within
|
||||
H5R_type_t ref_type; IN: Type of reference
|
||||
void *ref; IN: Reference to open.
|
||||
|
||||
RETURNS
|
||||
Valid ID on success, Negative on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, open that object and return an ID for
|
||||
that object.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
Currently only set up to work with references to datasets
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
Raymond Lu
|
||||
13 July 2011
|
||||
I added the OAPL_ID parameter for the object being referenced. It only
|
||||
supports dataset access property list currently.
|
||||
|
||||
M. Scot Breitenfeld
|
||||
3 March 2015
|
||||
Added a check for undefined reference pointer.
|
||||
--------------------------------------------------------------------------*/
|
||||
hid_t
|
||||
H5R_dereference(H5F_t *file, hid_t oapl_id, hid_t dxpl_id, H5R_type_t ref_type, const void *_ref, hbool_t app_ref)
|
||||
{
|
||||
H5O_loc_t oloc; /* Object location */
|
||||
H5G_name_t path; /* Path of object */
|
||||
H5G_loc_t loc; /* Group location */
|
||||
unsigned rc; /* Reference count of object */
|
||||
H5O_type_t obj_type; /* Type of object */
|
||||
hid_t ret_value = H5I_INVALID_HID; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(_ref);
|
||||
HDassert(ref_type > H5R_BADTYPE && ref_type < H5R_MAXTYPE);
|
||||
HDassert(file);
|
||||
|
||||
/* Initialize the object location */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = file;
|
||||
|
||||
switch (ref_type) {
|
||||
case H5R_OBJECT:
|
||||
{
|
||||
oloc.addr = *(const hobj_ref_t *)_ref; /* Only object references currently supported */
|
||||
if (!H5F_addr_defined(oloc.addr) || oloc.addr == 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Undefined reference pointer")
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
const uint8_t *p; /* Pointer to OID to store */
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
if (!H5F_addr_defined(hobjid.addr) || hobjid.addr == 0)
|
||||
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Undefined reference pointer")
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if (NULL == (buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)))
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, FAIL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
H5MM_xfree(buf);
|
||||
break;
|
||||
} /* end case H5R_DATASET_REGION */
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
/* Get the # of links for object, and its type
|
||||
* (To check to make certain that this object hasn't been deleted
|
||||
* since the reference was created)
|
||||
*/
|
||||
if (H5O_get_rc_and_type(&oloc, dxpl_id, &rc, &obj_type) < 0 || 0 == rc)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_LINKCOUNT, FAIL, "dereferencing deleted object")
|
||||
|
||||
/* Construct a group location for opening the object */
|
||||
H5G_name_reset(&path);
|
||||
loc.oloc = &oloc;
|
||||
loc.path = &path;
|
||||
|
||||
/* Open the object */
|
||||
switch (obj_type) {
|
||||
case H5O_TYPE_GROUP:
|
||||
{
|
||||
H5G_t *group; /* Pointer to group to open */
|
||||
|
||||
if (NULL == (group = H5G_open(&loc, dxpl_id)))
|
||||
HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "not found")
|
||||
|
||||
/* Create an atom for the group */
|
||||
if ((ret_value = H5I_register(H5I_GROUP, group, app_ref)) < 0) {
|
||||
H5G_close(group);
|
||||
HGOTO_ERROR(H5E_SYM, H5E_CANTREGISTER, FAIL, "can't register group")
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case H5O_TYPE_NAMED_DATATYPE:
|
||||
{
|
||||
H5T_t *type; /* Pointer to datatype to open */
|
||||
|
||||
if (NULL == (type = H5T_open(&loc, dxpl_id)))
|
||||
HGOTO_ERROR(H5E_DATATYPE, H5E_NOTFOUND, FAIL, "not found")
|
||||
|
||||
/* Create an atom for the datatype */
|
||||
if ((ret_value = H5I_register(H5I_DATATYPE, type, app_ref)) < 0) {
|
||||
H5T_close(type);
|
||||
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTREGISTER, FAIL, "can't register datatype")
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case H5O_TYPE_DATASET:
|
||||
{
|
||||
H5D_t *dset; /* Pointer to dataset to open */
|
||||
|
||||
/* Open the dataset */
|
||||
if (NULL == (dset = H5D_open(&loc, oapl_id, dxpl_id)))
|
||||
HGOTO_ERROR(H5E_DATASET, H5E_NOTFOUND, FAIL, "not found")
|
||||
|
||||
/* Create an atom for the dataset */
|
||||
if ((ret_value = H5I_register(H5I_DATASET, dset, app_ref)) < 0) {
|
||||
H5D_close(dset);
|
||||
HGOTO_ERROR(H5E_DATASET, H5E_CANTREGISTER, FAIL, "can't register dataset")
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case H5O_TYPE_UNKNOWN:
|
||||
case H5O_TYPE_NTYPES:
|
||||
default:
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_BADTYPE, FAIL, "can't identify type of object referenced")
|
||||
} /* end switch */
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_dereference() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_get_region
|
||||
PURPOSE
|
||||
Retrieves a dataspace with the region pointed to selected.
|
||||
USAGE
|
||||
H5S_t *H5R_get_region(file, ref_type, ref)
|
||||
H5F_t *file; IN: File the object being dereferenced is within
|
||||
void *ref; IN: Reference to open.
|
||||
|
||||
RETURNS
|
||||
Pointer to the dataspace on success, NULL on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, creates a copy of the dataset pointed
|
||||
to's dataspace and defines a selection in the copy which is the region
|
||||
pointed to.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
H5S_t *
|
||||
H5R_get_region(H5F_t *file, hid_t dxpl_id, const void *_ref)
|
||||
{
|
||||
H5O_loc_t oloc; /* Object location */
|
||||
const uint8_t *p; /* Pointer to OID to store */
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
uint8_t *buf = NULL; /* Buffer to store serialized selection in */
|
||||
H5S_t *ret_value;
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(_ref);
|
||||
HDassert(file);
|
||||
|
||||
/* Initialize the object location */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = file;
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if ((buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, NULL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Open and copy the dataset's dataspace */
|
||||
if ((ret_value = H5S_read(&oloc, dxpl_id)) == NULL)
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_NOTFOUND, NULL, "not found")
|
||||
|
||||
/* Unserialize the selection */
|
||||
if (H5S_SELECT_DESERIALIZE(&ret_value, &p) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTDECODE, NULL, "can't deserialize selection")
|
||||
|
||||
done:
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
if (buf)
|
||||
H5MM_xfree(buf);
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_get_region() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_get_obj_type
|
||||
PURPOSE
|
||||
Retrieves the type of object that an object reference points to
|
||||
USAGE
|
||||
H5O_type_t H5R_get_obj_type(file, ref_type, ref)
|
||||
H5F_t *file; IN: File the object being dereferenced is within
|
||||
H5R_type_t ref_type; IN: Type of reference to query
|
||||
void *ref; IN: Reference to query.
|
||||
|
||||
RETURNS
|
||||
Success: An object type defined in H5Gpublic.h
|
||||
Failure: H5G_UNKNOWN
|
||||
DESCRIPTION
|
||||
Given a reference to some object, this function returns the type of object
|
||||
pointed to.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
herr_t
|
||||
H5R_get_obj_type(H5F_t *file, hid_t dxpl_id, H5R_type_t ref_type,
|
||||
const void *_ref, H5O_type_t *obj_type)
|
||||
{
|
||||
H5O_loc_t oloc; /* Object location */
|
||||
unsigned rc; /* Reference count of object */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
HDassert(file);
|
||||
HDassert(_ref);
|
||||
|
||||
/* Initialize the symbol table entry */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = file;
|
||||
|
||||
switch (ref_type) {
|
||||
case H5R_OBJECT:
|
||||
{
|
||||
/* Get the object oid */
|
||||
oloc.addr = *(const hobj_ref_t *)_ref; /* Only object references currently supported */
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
const uint8_t *p; /* Pointer to reference to decode */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if ((buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, FAIL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
H5MM_xfree(buf);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
/* Get the # of links for object, and its type */
|
||||
/* (To check to make certain that this object hasn't been deleted since the reference was created) */
|
||||
if (H5O_get_rc_and_type(&oloc, dxpl_id, &rc, obj_type) < 0 || 0 == rc)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_LINKCOUNT, FAIL, "dereferencing deleted object")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_get_obj_type() */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
||||
NAME
|
||||
H5R_get_name
|
||||
PURPOSE
|
||||
Internal routine to determine a name for the object referenced
|
||||
USAGE
|
||||
ssize_t H5R_get_name(f, dxpl_id, ref_type, ref, name, size)
|
||||
H5F_t *f; IN: Pointer to the file that the reference is pointing
|
||||
into
|
||||
hid_t lapl_id; IN: LAPL to use for operation
|
||||
hid_t dxpl_id; IN: DXPL to use for operation
|
||||
hid_t id; IN: Location ID given for reference
|
||||
H5R_type_t ref_type; IN: Type of reference
|
||||
void *ref; IN: Reference to query.
|
||||
char *name; OUT: Buffer to place name of object referenced
|
||||
size_t size; IN: Size of name buffer
|
||||
|
||||
RETURNS
|
||||
Non-negative length of the path on success, Negative on failure
|
||||
DESCRIPTION
|
||||
Given a reference to some object, determine a path to the object
|
||||
referenced in the file.
|
||||
GLOBAL VARIABLES
|
||||
COMMENTS, BUGS, ASSUMPTIONS
|
||||
This may not be the only path to that object.
|
||||
EXAMPLES
|
||||
REVISION LOG
|
||||
--------------------------------------------------------------------------*/
|
||||
ssize_t
|
||||
H5R_get_name(H5F_t *f, hid_t lapl_id, hid_t dxpl_id, hid_t id, H5R_type_t ref_type,
|
||||
const void *_ref, char *name, size_t size)
|
||||
{
|
||||
hid_t file_id = H5I_INVALID_HID; /* ID for file that the reference is in */
|
||||
H5O_loc_t oloc; /* Object location describing object for reference */
|
||||
ssize_t ret_value = -1; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT
|
||||
|
||||
/* Check args */
|
||||
HDassert(f);
|
||||
HDassert(_ref);
|
||||
|
||||
/* Initialize the object location */
|
||||
H5O_loc_reset(&oloc);
|
||||
oloc.file = f;
|
||||
|
||||
/* Get address for reference */
|
||||
switch (ref_type) {
|
||||
case H5R_OBJECT:
|
||||
{
|
||||
oloc.addr = *(const hobj_ref_t *)_ref;
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_DATASET_REGION:
|
||||
{
|
||||
H5HG_t hobjid; /* Heap object ID */
|
||||
uint8_t *buf; /* Buffer to store serialized selection in */
|
||||
const uint8_t *p; /* Pointer to OID to store */
|
||||
|
||||
/* Get the heap ID for the dataset region */
|
||||
p = (const uint8_t *)_ref;
|
||||
H5F_addr_decode(oloc.file, &p, &(hobjid.addr));
|
||||
UINT32DECODE(p, hobjid.idx);
|
||||
|
||||
/* Get the dataset region from the heap (allocate inside routine) */
|
||||
if ((buf = (uint8_t *)H5HG_read(oloc.file, dxpl_id, &hobjid, NULL, NULL)) == NULL)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_READERROR, FAIL, "Unable to read dataset region information")
|
||||
|
||||
/* Get the object oid for the dataset */
|
||||
p = buf;
|
||||
H5F_addr_decode(oloc.file, &p, &(oloc.addr));
|
||||
|
||||
/* Free the buffer allocated in H5HG_read() */
|
||||
H5MM_xfree(buf);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case H5R_BADTYPE:
|
||||
case H5R_MAXTYPE:
|
||||
default:
|
||||
HDassert("unknown reference type" && 0);
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_UNSUPPORTED, FAIL, "internal error (unknown reference type)")
|
||||
} /* end switch */
|
||||
|
||||
/* Retrieve file ID for name search */
|
||||
if ((file_id = H5I_get_file_id(id, FALSE)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTGET, FAIL, "can't retrieve file ID")
|
||||
|
||||
/* Get name, length, etc. */
|
||||
if ((ret_value = H5G_get_name_by_addr(file_id, lapl_id, dxpl_id, &oloc, name, size)) < 0)
|
||||
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTGET, FAIL, "can't determine name")
|
||||
|
||||
done:
|
||||
/* Close file ID used for search */
|
||||
if (file_id > 0 && H5I_dec_ref(file_id) < 0)
|
||||
HDONE_ERROR(H5E_REFERENCE, H5E_CANTDEC, FAIL, "can't decrement ref count of temp ID")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5R_get_name() */
|
||||
|
@ -10,13 +10,9 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Programmer: Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Saturday, September 12, 2015
|
||||
*
|
||||
* Purpose: This file contains declarations which define macros for the
|
||||
* H5R package. Including this header means that the source file
|
||||
* is part of the H5R package.
|
||||
/* Purpose: This file contains declarations which define macros for the
|
||||
* H5R package. Including this header means that the source file
|
||||
* is part of the H5R package.
|
||||
*/
|
||||
#ifndef _H5Rmodule_H
|
||||
#define _H5Rmodule_H
|
||||
@ -31,4 +27,3 @@
|
||||
|
||||
#endif /* _H5Rmodule_H */
|
||||
|
||||
|
||||
|
14
src/H5Rpkg.h
14
src/H5Rpkg.h
@ -11,11 +11,7 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Programmer: Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Thursday, September 13, 2007
|
||||
*
|
||||
* Purpose: This file contains declarations which are visible
|
||||
/* Purpose: This file contains declarations which are visible
|
||||
* only within the H5R package. Source files outside the
|
||||
* H5R package should include H5Rprivate.h instead.
|
||||
*/
|
||||
@ -30,7 +26,6 @@
|
||||
#include "H5Rprivate.h"
|
||||
|
||||
/* Other private headers needed by this file */
|
||||
#include "H5Fprivate.h" /* File access */
|
||||
|
||||
/**************************/
|
||||
/* Package Private Macros */
|
||||
@ -51,12 +46,5 @@
|
||||
/* Package Private Prototypes */
|
||||
/******************************/
|
||||
|
||||
/* General functions */
|
||||
H5_DLL herr_t H5R_get_obj_type(H5F_t *file, hid_t dxpl_id, H5R_type_t ref_type,
|
||||
const void *_ref, H5O_type_t *obj_type);
|
||||
H5_DLL hid_t H5R_dereference(H5F_t *file, hid_t dapl_id, hid_t dxpl_id, H5R_type_t ref_type,
|
||||
const void *_ref, hbool_t app_ref);
|
||||
|
||||
|
||||
#endif /* _H5Rpkg_H */
|
||||
|
||||
|
@ -20,10 +20,40 @@
|
||||
#include "H5Rpublic.h"
|
||||
|
||||
/* Private headers needed by this file */
|
||||
#include "H5Fprivate.h" /* Files */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5Oprivate.h" /* Object headers */
|
||||
#include "H5Sprivate.h" /* Dataspaces */
|
||||
|
||||
/* Internal data structures */
|
||||
|
||||
/* Private functions */
|
||||
/**************************/
|
||||
/* Library Private Macros */
|
||||
/**************************/
|
||||
|
||||
|
||||
/****************************/
|
||||
/* Library Private Typedefs */
|
||||
/****************************/
|
||||
|
||||
|
||||
/*****************************/
|
||||
/* Library Private Variables */
|
||||
/*****************************/
|
||||
|
||||
|
||||
/******************************/
|
||||
/* Library Private Prototypes */
|
||||
/******************************/
|
||||
|
||||
H5_DLL herr_t H5R_create(void *ref, H5G_loc_t *loc, const char *name,
|
||||
H5R_type_t ref_type, H5S_t *space, hid_t dxpl_id);
|
||||
H5_DLL H5S_t * H5R_get_region(H5F_t *file, hid_t dxpl_id, const void *_ref);
|
||||
H5_DLL ssize_t H5R_get_name(H5F_t *file, hid_t lapl_id, hid_t dxpl_id, hid_t id,
|
||||
H5R_type_t ref_type, const void *_ref, char *name, size_t size);
|
||||
H5_DLL herr_t H5R_get_obj_type(H5F_t *file, hid_t dxpl_id, H5R_type_t ref_type,
|
||||
const void *_ref, H5O_type_t *obj_type);
|
||||
H5_DLL hid_t H5R_dereference(H5F_t *file, hid_t dapl_id, hid_t dxpl_id, H5R_type_t ref_type,
|
||||
const void *_ref, hbool_t app_ref);
|
||||
|
||||
#endif /* _H5Rprivate_H */
|
||||
|
||||
|
@ -22,40 +22,59 @@
|
||||
#include "H5Gpublic.h"
|
||||
#include "H5Ipublic.h"
|
||||
|
||||
/*
|
||||
* Reference types allowed.
|
||||
*/
|
||||
typedef enum {
|
||||
H5R_BADTYPE = (-1), /*invalid Reference Type */
|
||||
H5R_OBJECT, /*Object reference */
|
||||
H5R_DATASET_REGION, /*Dataset Region Reference */
|
||||
H5R_MAXTYPE /*highest type (Invalid as true type) */
|
||||
} H5R_type_t;
|
||||
/*****************/
|
||||
/* Public Macros */
|
||||
/*****************/
|
||||
|
||||
/* Note! Be careful with the sizes of the references because they should really
|
||||
* depend on the run-time values in the file. Unfortunately, the arrays need
|
||||
* to be defined at compile-time, so we have to go with the worst case sizes for
|
||||
* them. -QAK
|
||||
* to be defined at compile-time, so we have to go with the worst case sizes
|
||||
* for them. -QAK
|
||||
*/
|
||||
#define H5R_OBJ_REF_BUF_SIZE sizeof(haddr_t)
|
||||
/* Object reference structure for user's code */
|
||||
typedef haddr_t hobj_ref_t; /* Needs to be large enough to store largest haddr_t in a worst case machine (ie. 8 bytes currently) */
|
||||
#define H5R_OBJ_REF_BUF_SIZE sizeof(haddr_t)
|
||||
|
||||
#define H5R_DSET_REG_REF_BUF_SIZE (sizeof(haddr_t)+4)
|
||||
/* 4 is used instead of sizeof(int) to permit portability between
|
||||
the Crays and other machines (the heap ID is always encoded as an int32 anyway)
|
||||
*/
|
||||
/* Dataset Region reference structure for user's code */
|
||||
typedef unsigned char hdset_reg_ref_t[H5R_DSET_REG_REF_BUF_SIZE];/* Buffer to store heap ID and index */
|
||||
/* Needs to be large enough to store largest haddr_t in a worst case machine (ie. 8 bytes currently) plus an int */
|
||||
/* 4 is used instead of sizeof(int) to permit portability between the Crays
|
||||
* and other machines (the heap ID is always encoded as an int32 anyway).
|
||||
*/
|
||||
#define H5R_DSET_REG_REF_BUF_SIZE (sizeof(haddr_t) + 4)
|
||||
|
||||
/* Publicly visible data structures */
|
||||
/*******************/
|
||||
/* Public Typedefs */
|
||||
/*******************/
|
||||
|
||||
/* Reference types */
|
||||
typedef enum H5R_type_t {
|
||||
H5R_BADTYPE = (-1), /* Invalid Reference Type */
|
||||
H5R_OBJECT, /* Object reference */
|
||||
H5R_DATASET_REGION, /* Dataset Region Reference */
|
||||
H5R_MAXTYPE /* Highest type (Invalid as true type) */
|
||||
} H5R_type_t;
|
||||
|
||||
/* Object reference structure for user's code
|
||||
* This needs to be large enough to store largest haddr_t on a worst case
|
||||
* machine (8 bytes currently).
|
||||
*/
|
||||
typedef haddr_t hobj_ref_t;
|
||||
|
||||
/* Dataset Region reference structure for user's code
|
||||
* (Buffer to store heap ID and index)
|
||||
* This needs to be large enough to store largest haddr_t in a worst case
|
||||
* machine (8 bytes currently) plus an int
|
||||
*/
|
||||
typedef unsigned char hdset_reg_ref_t[H5R_DSET_REG_REF_BUF_SIZE];
|
||||
|
||||
/********************/
|
||||
/* Public Variables */
|
||||
/********************/
|
||||
|
||||
/*********************/
|
||||
/* Public Prototypes */
|
||||
/*********************/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Functions in H5R.c */
|
||||
H5_DLL herr_t H5Rcreate(void *ref, hid_t loc_id, const char *name,
|
||||
H5R_type_t ref_type, hid_t space_id);
|
||||
H5_DLL hid_t H5Rdereference2(hid_t obj_id, hid_t oapl_id, H5R_type_t ref_type, const void *ref);
|
||||
@ -63,7 +82,7 @@ H5_DLL hid_t H5Rget_region(hid_t dataset, H5R_type_t ref_type, const void *ref);
|
||||
H5_DLL herr_t H5Rget_obj_type2(hid_t id, H5R_type_t ref_type, const void *_ref,
|
||||
H5O_type_t *obj_type);
|
||||
H5_DLL ssize_t H5Rget_name(hid_t loc_id, H5R_type_t ref_type, const void *ref,
|
||||
char *name/*out*/, size_t size);
|
||||
char *name /*out*/, size_t size);
|
||||
|
||||
/* Symbols defined for compatibility with previous versions of the HDF5 API.
|
||||
*
|
||||
@ -71,12 +90,6 @@ H5_DLL ssize_t H5Rget_name(hid_t loc_id, H5R_type_t ref_type, const void *ref,
|
||||
*/
|
||||
#ifndef H5_NO_DEPRECATED_SYMBOLS
|
||||
|
||||
/* Macros */
|
||||
|
||||
|
||||
/* Typedefs */
|
||||
|
||||
|
||||
/* Function prototypes */
|
||||
H5_DLL H5G_obj_t H5Rget_obj_type1(hid_t id, H5R_type_t ref_type, const void *_ref);
|
||||
H5_DLL hid_t H5Rdereference1(hid_t obj_id, H5R_type_t ref_type, const void *ref);
|
||||
|
@ -17,6 +17,9 @@
|
||||
#ifndef _H5Sprivate_H
|
||||
#define _H5Sprivate_H
|
||||
|
||||
/* Early typedefs to avoid circular dependencies */
|
||||
typedef struct H5S_t H5S_t;
|
||||
|
||||
/* Include package's public header */
|
||||
#include "H5Spublic.h"
|
||||
|
||||
@ -44,7 +47,6 @@
|
||||
#define H5S_GET_SEQ_LIST_SORTED 0x0001
|
||||
|
||||
/* Forward references of package typedefs */
|
||||
typedef struct H5S_t H5S_t;
|
||||
typedef struct H5S_extent_t H5S_extent_t;
|
||||
typedef struct H5S_pnt_node_t H5S_pnt_node_t;
|
||||
typedef struct H5S_hyper_span_t H5S_hyper_span_t;
|
||||
|
@ -17,6 +17,9 @@
|
||||
#ifndef _H5Tprivate_H
|
||||
#define _H5Tprivate_H
|
||||
|
||||
/* Early typedefs to avoid circular dependencies */
|
||||
typedef struct H5T_t H5T_t;
|
||||
|
||||
/* Get package's public header */
|
||||
#include "H5Tpublic.h"
|
||||
|
||||
@ -45,7 +48,6 @@
|
||||
#endif /* H5T_MODULE */
|
||||
|
||||
/* Forward references of package typedefs (declared in H5Tpkg.h) */
|
||||
typedef struct H5T_t H5T_t;
|
||||
typedef struct H5T_stats_t H5T_stats_t;
|
||||
typedef struct H5T_path_t H5T_path_t;
|
||||
|
||||
|
@ -18,6 +18,9 @@
|
||||
#ifndef _H5Zprivate_H
|
||||
#define _H5Zprivate_H
|
||||
|
||||
/* Early typedefs to avoid circular dependencies */
|
||||
typedef struct H5Z_filter_info_t H5Z_filter_info_t;
|
||||
|
||||
/* Include package's public header */
|
||||
#include "H5Zpublic.h"
|
||||
|
||||
@ -49,7 +52,7 @@
|
||||
/****************************/
|
||||
|
||||
/* Structure to store information about each filter's parameters */
|
||||
typedef struct H5Z_filter_info_t {
|
||||
struct H5Z_filter_info_t {
|
||||
H5Z_filter_t id; /*filter identification number */
|
||||
unsigned flags; /*defn and invocation flags */
|
||||
char _name[H5Z_COMMON_NAME_LEN]; /*internal filter name */
|
||||
@ -57,7 +60,7 @@ typedef struct H5Z_filter_info_t {
|
||||
size_t cd_nelmts; /*number of elements in cd_values[] */
|
||||
unsigned _cd_values[H5Z_COMMON_CD_VALUES]; /*internal client data values */
|
||||
unsigned *cd_values; /*client data values */
|
||||
} H5Z_filter_info_t;
|
||||
};
|
||||
|
||||
/*****************************/
|
||||
/* Library-private Variables */
|
||||
|
@ -98,7 +98,7 @@ libhdf5_la_SOURCES= H5.c H5checksum.c H5dbg.c H5system.c H5timer.c H5trace.c \
|
||||
H5Plapl.c H5Plcpl.c H5Pocpl.c H5Pocpypl.c H5Pstrcpl.c H5Ptest.c \
|
||||
H5PB.c \
|
||||
H5PL.c H5PLint.c H5PLpath.c H5PLplugin_cache.c \
|
||||
H5R.c H5Rdeprec.c \
|
||||
H5R.c H5Rint.c H5Rdeprec.c \
|
||||
H5UC.c \
|
||||
H5RS.c \
|
||||
H5S.c H5Sall.c H5Sdbg.c H5Shyper.c H5Snone.c H5Spoint.c \
|
||||
|
@ -70,73 +70,73 @@ if (BUILD_SHARED_LIBS)
|
||||
endif ()
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# If plugin library tests can be tested
|
||||
# If filter plugin tests can be tested
|
||||
#-----------------------------------------------------------------------------
|
||||
# make plugins dir
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/testdir1")
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/testdir2")
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/filter_plugin_dir1")
|
||||
file (MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/filter_plugin_dir2")
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Define Plugin Test Sources
|
||||
# Define Filter Plugin Test Sources
|
||||
#-----------------------------------------------------------------------------
|
||||
set (TEST_PLUGIN_LIBS
|
||||
dynlib1
|
||||
dynlib3
|
||||
set (FILTER_PLUGINS_FOR_DIR1
|
||||
filter_plugin1_dsets
|
||||
filter_plugin3_dsets
|
||||
)
|
||||
set (TEST2_PLUGIN_LIBS
|
||||
dynlib2
|
||||
dynlib4
|
||||
set (FILTER_PLUGINS_FOR_DIR2
|
||||
filter_plugin2_dsets
|
||||
filter_plugin4_groups
|
||||
)
|
||||
|
||||
foreach (test_lib ${TEST_PLUGIN_LIBS})
|
||||
set (HDF5_TEST_PLUGIN_LIB_CORENAME "${test_lib}")
|
||||
set (HDF5_TEST_PLUGIN_LIB_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TEST_PLUGIN_LIB_CORENAME}")
|
||||
set (HDF5_TEST_PLUGIN_LIB_TARGET ${HDF5_TEST_PLUGIN_LIB_CORENAME})
|
||||
foreach (plugin_name ${FILTER_PLUGINS_FOR_DIR1})
|
||||
set (HDF5_TEST_PLUGIN_CORENAME "${plugin_name}")
|
||||
set (HDF5_TEST_PLUGIN_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TEST_PLUGIN_CORENAME}")
|
||||
set (HDF5_TEST_PLUGIN_TARGET ${HDF5_TEST_PLUGIN_CORENAME})
|
||||
add_definitions (${HDF_EXTRA_C_FLAGS})
|
||||
INCLUDE_DIRECTORIES (${HDF5_SRC_DIR})
|
||||
|
||||
add_library (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${test_lib}.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
set_target_properties (${HDF5_TEST_PLUGIN_LIB_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN)
|
||||
add_library (${HDF5_TEST_PLUGIN_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${plugin_name}.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TEST_PLUGIN_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_TARGET} ${HDF5_TEST_PLUGIN_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
set_target_properties (${HDF5_TEST_PLUGIN_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copy plugin library to a plugins folder
|
||||
# Copy the filter plugin to a plugins folder
|
||||
#-----------------------------------------------------------------------------
|
||||
add_custom_command (
|
||||
TARGET ${HDF5_TEST_PLUGIN_LIB_TARGET}
|
||||
TARGET ${HDF5_TEST_PLUGIN_TARGET}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
ARGS -E copy_if_different
|
||||
"$<TARGET_FILE:${HDF5_TEST_PLUGIN_LIB_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/testdir1/$<TARGET_FILE_NAME:${HDF5_TEST_PLUGIN_LIB_TARGET}>"
|
||||
"$<TARGET_FILE:${HDF5_TEST_PLUGIN_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/filter_plugin_dir1/$<TARGET_FILE_NAME:${HDF5_TEST_PLUGIN_TARGET}>"
|
||||
)
|
||||
endforeach ()
|
||||
|
||||
foreach (test_lib ${TEST2_PLUGIN_LIBS})
|
||||
set (HDF5_TEST_PLUGIN_LIB_CORENAME "${test_lib}")
|
||||
set (HDF5_TEST_PLUGIN_LIB_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TEST_PLUGIN_LIB_CORENAME}")
|
||||
set (HDF5_TEST_PLUGIN_LIB_TARGET ${HDF5_TEST_PLUGIN_LIB_CORENAME})
|
||||
foreach ( plugin_name ${FILTER_PLUGINS_FOR_DIR2})
|
||||
set (HDF5_TEST_PLUGIN_CORENAME "${plugin_name}")
|
||||
set (HDF5_TEST_PLUGIN_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_TEST_PLUGIN_CORENAME}")
|
||||
set (HDF5_TEST_PLUGIN_TARGET ${HDF5_TEST_PLUGIN_CORENAME})
|
||||
add_definitions (${HDF_EXTRA_C_FLAGS})
|
||||
INCLUDE_DIRECTORIES (${HDF5_SRC_DIR})
|
||||
|
||||
add_library (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${test_lib}.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_LIB_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_LIB_TARGET} ${HDF5_TEST_PLUGIN_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
set_target_properties (${HDF5_TEST_PLUGIN_LIB_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN)
|
||||
add_library (${HDF5_TEST_PLUGIN_TARGET} SHARED ${HDF5_TEST_SOURCE_DIR}/${plugin_name}.c)
|
||||
TARGET_C_PROPERTIES (${HDF5_TEST_PLUGIN_TARGET} SHARED " " " ")
|
||||
target_link_libraries (${HDF5_TEST_PLUGIN_TARGET} ${HDF5_TEST_LIB_TARGET})
|
||||
H5_SET_LIB_OPTIONS (${HDF5_TEST_PLUGIN_TARGET} ${HDF5_TEST_PLUGIN_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
|
||||
set_target_properties (${HDF5_TEST_PLUGIN_TARGET} PROPERTIES FOLDER libraries/TEST_PLUGIN)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# Copy plugin library to a plugins folder
|
||||
# Copy the filter plugin to a plugins folder
|
||||
#-----------------------------------------------------------------------------
|
||||
add_custom_command (
|
||||
TARGET ${HDF5_TEST_PLUGIN_LIB_TARGET}
|
||||
TARGET ${HDF5_TEST_PLUGIN_TARGET}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
ARGS -E copy_if_different
|
||||
"$<TARGET_FILE:${HDF5_TEST_PLUGIN_LIB_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/testdir2/$<TARGET_FILE_NAME:${HDF5_TEST_PLUGIN_LIB_TARGET}>"
|
||||
"$<TARGET_FILE:${HDF5_TEST_PLUGIN_TARGET}>"
|
||||
"${CMAKE_BINARY_DIR}/filter_plugin_dir2/$<TARGET_FILE_NAME:${HDF5_TEST_PLUGIN_TARGET}>"
|
||||
)
|
||||
endforeach ()
|
||||
|
||||
@ -411,17 +411,17 @@ endif ()
|
||||
### P L U G I N T E S T S
|
||||
##############################################################################
|
||||
if (BUILD_SHARED_LIBS)
|
||||
add_executable (plugin ${HDF5_TEST_SOURCE_DIR}/plugin.c)
|
||||
TARGET_NAMING (plugin SHARED)
|
||||
TARGET_C_PROPERTIES (plugin SHARED " " " ")
|
||||
target_link_libraries (plugin ${HDF5_TEST_LIB_TARGET})
|
||||
set_target_properties (plugin PROPERTIES FOLDER test)
|
||||
add_executable (filter_plugin ${HDF5_TEST_SOURCE_DIR}/filter_plugin.c)
|
||||
TARGET_NAMING (filter_plugin SHARED)
|
||||
TARGET_C_PROPERTIES (filter_plugin SHARED " " " ")
|
||||
target_link_libraries (filter_plugin ${HDF5_TEST_LIB_TARGET})
|
||||
set_target_properties (filter_plugin PROPERTIES FOLDER test)
|
||||
else ()
|
||||
add_executable (plugin ${HDF5_TEST_SOURCE_DIR}/plugin.c)
|
||||
TARGET_NAMING (plugin STATIC)
|
||||
TARGET_C_PROPERTIES (plugin STATIC " " " ")
|
||||
target_link_libraries (plugin ${HDF5_TEST_LIB_TARGET})
|
||||
set_target_properties (plugin PROPERTIES FOLDER test)
|
||||
add_executable (filter_plugin ${HDF5_TEST_SOURCE_DIR}/filter_plugin.c)
|
||||
TARGET_NAMING (filter_plugin STATIC)
|
||||
TARGET_C_PROPERTIES (filter_plugin STATIC " " " ")
|
||||
target_link_libraries (filter_plugin ${HDF5_TEST_LIB_TARGET})
|
||||
set_target_properties (filter_plugin PROPERTIES FOLDER test)
|
||||
endif ()
|
||||
|
||||
##############################################################################
|
||||
|
@ -1,4 +1,4 @@
|
||||
#
|
||||
|
||||
# Copyright by The HDF Group.
|
||||
# All rights reserved.
|
||||
#
|
||||
@ -520,7 +520,7 @@ set (test_CLEANFILES
|
||||
multi_file-r.h5
|
||||
multi_file-s.h5
|
||||
core_file
|
||||
plugin.h5
|
||||
filter_plugin.h5
|
||||
new_move_a.h5
|
||||
new_move_b.h5
|
||||
ntypes.h5
|
||||
@ -1013,7 +1013,7 @@ if (BUILD_SHARED_LIBS)
|
||||
endif ()
|
||||
|
||||
##############################################################################
|
||||
### P L U G I N T E S T S
|
||||
### F I L T E R P L U G I N T E S T S
|
||||
##############################################################################
|
||||
if (WIN32)
|
||||
set (CMAKE_SEP "\;")
|
||||
@ -1023,9 +1023,9 @@ else ()
|
||||
set (BIN_REL_PATH "../")
|
||||
endif ()
|
||||
|
||||
add_test (NAME H5PLUGIN-plugin COMMAND $<TARGET_FILE:plugin>)
|
||||
set_tests_properties (H5PLUGIN-plugin PROPERTIES
|
||||
ENVIRONMENT "HDF5_PLUGIN_PATH=${CMAKE_BINARY_DIR}/testdir1${CMAKE_SEP}${CMAKE_BINARY_DIR}/testdir2;srcdir=${HDF5_TEST_BINARY_DIR}"
|
||||
add_test (NAME H5PLUGIN-filter_plugin COMMAND $<TARGET_FILE:filter_plugin>)
|
||||
set_tests_properties (H5PLUGIN-filter_plugin PROPERTIES
|
||||
ENVIRONMENT "HDF5_PLUGIN_PATH=${CMAKE_BINARY_DIR}/filter_plugin_dir1${CMAKE_SEP}${CMAKE_BINARY_DIR}/filter_plugin_dir2;srcdir=${HDF5_TEST_BINARY_DIR}"
|
||||
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}
|
||||
)
|
||||
|
||||
|
@ -26,11 +26,12 @@ AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_builddir)/src
|
||||
# testlibinfo.sh:
|
||||
# testcheck_version.sh: tcheck_version
|
||||
# testlinks_env.sh: links_env
|
||||
# test_filenotclosed.sh: filenotclosed.c
|
||||
# testflushrefresh.sh: flushrefresh
|
||||
# test_usecases.sh: use_append_chunk, use_append_mchunks, use_disable_mdc_flushes
|
||||
# testswmr.sh: swmr*
|
||||
# testvdsswmr.sh: vds_swmr*
|
||||
# test_filenotclosed.sh: filenotclosed.c
|
||||
# test_filter_plugin.sh: filter_plugin.c
|
||||
# test_usecases.sh: use_append_chunk, use_append_mchunks, use_disable_mdc_flushes
|
||||
TEST_SCRIPT = testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_filenotclosed.sh\
|
||||
testswmr.sh testvdsswmr.sh testflushrefresh.sh test_usecases.sh
|
||||
SCRIPT_DEPEND = error_test$(EXEEXT) err_compat$(EXEEXT) links_env$(EXEEXT) test_filenotclosed$(EXEEXT) \
|
||||
@ -40,8 +41,8 @@ SCRIPT_DEPEND = error_test$(EXEEXT) err_compat$(EXEEXT) links_env$(EXEEXT) test_
|
||||
swmr_sparse_reader$(EXEEXT) swmr_sparse_writer$(EXEEXT) swmr_start_write$(EXEEXT) \
|
||||
vds_swmr_gen$(EXEEXT) vds_swmr_reader$(EXEEXT) vds_swmr_writer$(EXEEXT)
|
||||
if HAVE_SHARED_CONDITIONAL
|
||||
TEST_SCRIPT += test_plugin.sh
|
||||
SCRIPT_DEPEND += plugin$(EXEEXT)
|
||||
TEST_SCRIPT += test_filter_plugin.sh
|
||||
SCRIPT_DEPEND += filter_plugin$(EXEEXT)
|
||||
endif
|
||||
|
||||
check_SCRIPTS = $(TEST_SCRIPT)
|
||||
@ -81,7 +82,7 @@ check_PROGRAMS=$(TEST_PROG) error_test err_compat tcheck_version \
|
||||
swmr_remove_writer swmr_addrem_writer swmr_sparse_reader swmr_sparse_writer \
|
||||
swmr_check_compat_vfd vds_swmr_gen vds_swmr_reader vds_swmr_writer
|
||||
if HAVE_SHARED_CONDITIONAL
|
||||
check_PROGRAMS+= plugin
|
||||
check_PROGRAMS+= filter_plugin
|
||||
endif
|
||||
|
||||
# These programs generate test files for the tests. They don't need to be
|
||||
@ -102,29 +103,17 @@ endif
|
||||
|
||||
if HAVE_SHARED_CONDITIONAL
|
||||
# The libh5test library provides common support code for the tests.
|
||||
# The libdynlib1, libdynlib2, libdynlib3, and libdynlib4 library for testing plugin module plugin.c.
|
||||
# Build them as shared libraries if configure is enabled for shared library.
|
||||
noinst_LTLIBRARIES=libh5test.la libdynlib1.la libdynlib2.la libdynlib3.la libdynlib4.la
|
||||
libdynlib1_la_SOURCES=dynlib1.c
|
||||
libdynlib2_la_SOURCES=dynlib2.c
|
||||
libdynlib3_la_SOURCES=dynlib3.c
|
||||
libdynlib4_la_SOURCES=dynlib4.c
|
||||
libdynlib1_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libdynlib2_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libdynlib3_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libdynlib4_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
|
||||
libdynlib1.la: $(libdynlib1_la_OBJECTS) $(libdynlib1_la_DEPENDENCIES) $(EXTRA_libdynlib1_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlib1_la_LINK) $(am_libdynlib1_la_rpath) $(libdynlib1_la_OBJECTS) $(libdynlib1_la_LIBADD)
|
||||
|
||||
libdynlib2.la: $(libdynlib2_la_OBJECTS) $(libdynlib2_la_DEPENDENCIES) $(EXTRA_libdynlib2_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlib2_la_LINK) $(am_libdynlib2_la_rpath) $(libdynlib2_la_OBJECTS) $(libdynlib2_la_LIBADD)
|
||||
|
||||
libdynlib3.la: $(libdynlib3_la_OBJECTS) $(libdynlib3_la_DEPENDENCIES) $(EXTRA_libdynlib3_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlib3_la_LINK) $(am_libdynlib3_la_rpath) $(libdynlib3_la_OBJECTS) $(libdynlib3_la_LIBADD)
|
||||
|
||||
libdynlib4.la: $(libdynlib4_la_OBJECTS) $(libdynlib4_la_DEPENDENCIES) $(EXTRA_libdynlib4_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlib4_la_LINK) $(am_libdynlib4_la_rpath) $(libdynlib4_la_OBJECTS) $(libdynlib4_la_LIBADD)
|
||||
# The filter_plugin* libraries are for use in filter_plugin.c.
|
||||
# Build them as shared libraries if that option was enabled in configure.
|
||||
noinst_LTLIBRARIES=libh5test.la libfilter_plugin1_dsets.la libfilter_plugin2_dsets.la libfilter_plugin3_dsets.la libfilter_plugin4_groups.la
|
||||
libfilter_plugin1_dsets_la_SOURCES=filter_plugin1_dsets.c
|
||||
libfilter_plugin2_dsets_la_SOURCES=filter_plugin2_dsets.c
|
||||
libfilter_plugin3_dsets_la_SOURCES=filter_plugin3_dsets.c
|
||||
libfilter_plugin4_groups_la_SOURCES=filter_plugin4_groups.c
|
||||
libfilter_plugin1_dsets_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libfilter_plugin2_dsets_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libfilter_plugin3_dsets_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libfilter_plugin4_groups_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
else
|
||||
# The libh5test library provides common support code for the tests.
|
||||
noinst_LTLIBRARIES=libh5test.la
|
||||
@ -185,7 +174,7 @@ CHECK_CLEANFILES+=accum.h5 cmpd_dset.h5 compact_dataset.h5 dataset.h5 dset_offse
|
||||
tmisc[0-9]*.h5 set_extent[1-5].h5 ext[12].bin \
|
||||
getname.h5 getname[1-3].h5 sec2_file.h5 direct_file.h5 \
|
||||
family_file000[0-3][0-9].h5 new_family_v16_000[0-3][0-9].h5 \
|
||||
multi_file-[rs].h5 core_file plugin.h5 \
|
||||
multi_file-[rs].h5 core_file filter_plugin.h5 \
|
||||
new_move_[ab].h5 ntypes.h5 dangle.h5 error_test.h5 err_compat.h5 \
|
||||
dtransform.h5 test_filters.h5 get_file_name.h5 tstint[1-2].h5 \
|
||||
unlink_chunked.h5 btree2.h5 btree2_tmp.h5 objcopy_src.h5 objcopy_dst.h5 \
|
||||
@ -215,7 +204,7 @@ use_append_mchunks_SOURCES=use_append_mchunks.c use_common.c
|
||||
use_disable_mdc_flushes_SOURCES=use_disable_mdc_flushes.c
|
||||
|
||||
# Temporary files.
|
||||
DISTCLEANFILES=testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_plugin.sh \
|
||||
DISTCLEANFILES=testerror.sh testlibinfo.sh testcheck_version.sh testlinks_env.sh test_filter_plugin.sh \
|
||||
testswmr.sh testvdsswmr.sh test_usecases.sh testflushrefresh.sh test_filenotclosed.sh
|
||||
|
||||
include $(top_srcdir)/config/conclude.am
|
||||
|
@ -1,95 +0,0 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Programmer: Raymond Lu
|
||||
* 13 February 2013
|
||||
*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB1 257
|
||||
|
||||
static size_t H5Z_filter_dynlib1(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB1[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB1, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib1", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib1, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB1;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib1
|
||||
*
|
||||
* Purpose: A dynlib1 filter method that adds on and subtract from
|
||||
* the original value with another value. It will be built
|
||||
* as a shared library. plugin.c test will load and use
|
||||
* this filter library.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
* Programmer: Raymond Lu
|
||||
* 29 March 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib1(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
int add_on = 0;
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts == 0)
|
||||
return(0);
|
||||
|
||||
/* Check that permanent parameters are set correctly */
|
||||
if(cd_values[0] > 9)
|
||||
return(0);
|
||||
|
||||
add_on = (int)cd_values[0];
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Substract the "add on" value to all the data values */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ -= add_on;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Add the "add on" value to all the data values */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ += add_on;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib1() */
|
||||
|
@ -1,92 +0,0 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Programmer: Raymond Lu
|
||||
* 13 February 2013
|
||||
*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB2 258
|
||||
#define MULTIPLIER 3
|
||||
|
||||
static size_t H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB2[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB2, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib2", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib2, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB2;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib2
|
||||
*
|
||||
* Purpose: A dynlib2 filter method that multiplies the original value
|
||||
* during write and divide the original value during read. It
|
||||
* will be built as a shared library. plugin.c test will load
|
||||
* and use this filter library.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
* Programmer: Raymond Lu
|
||||
* 29 March 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib2(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts > 0)
|
||||
return(0);
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Divide the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ /= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Multiply the original value with MULTIPLIER */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ *= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib2() */
|
||||
|
103
test/dynlib3.c
103
test/dynlib3.c
@ -1,103 +0,0 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Programmer: Raymond Lu
|
||||
* 1 April 2013
|
||||
*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB3 259
|
||||
#define SUFFIX_LEN 8
|
||||
#define GROUP_SUFFIX ".h5group"
|
||||
|
||||
static size_t H5Z_filter_dynlib3(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB3[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB3, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib3", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib3, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB3;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib3
|
||||
*
|
||||
* Purpose: A dynlib3 filter method that is used to test groups. It
|
||||
* appends the suffix ".h5group" to each group name during
|
||||
* write and takes it out during read.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
* Programmer: Raymond Lu
|
||||
* 1 April 2013
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib3(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
size_t ret_value; /* Return value */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts > 0)
|
||||
return(0);
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
ret_value = *buf_size = nbytes - SUFFIX_LEN;
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
void *outbuf = NULL; /* Pointer to new buffer */
|
||||
unsigned char *dst; /* Temporary pointer to destination buffer */
|
||||
|
||||
dst = (unsigned char *)(outbuf = H5allocate_memory(nbytes + SUFFIX_LEN, 0));
|
||||
|
||||
/* Copy raw data */
|
||||
memcpy((void*)dst, (void*)(*buf), nbytes);
|
||||
|
||||
/* Append suffix to raw data for storage */
|
||||
dst += nbytes;
|
||||
memcpy(dst, (void*)GROUP_SUFFIX, SUFFIX_LEN);
|
||||
|
||||
/* Free input buffer */
|
||||
H5free_memory(*buf);
|
||||
|
||||
/* Set return values */
|
||||
*buf_size = nbytes + SUFFIX_LEN;
|
||||
*buf = outbuf;
|
||||
outbuf = NULL;
|
||||
ret_value = *buf_size;
|
||||
} /* end else */
|
||||
|
||||
return ret_value;
|
||||
} /* H5Z_filter_dynlib3() */
|
||||
|
102
test/dynlib4.c
102
test/dynlib4.c
@ -1,102 +0,0 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
/*
|
||||
* Purpose: Tests the plugin module (H5PL)
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define H5Z_FILTER_DYNLIB4 260
|
||||
|
||||
#define PUSH_ERR(func, minor, str) H5Epush2(H5E_DEFAULT, __FILE__, func, __LINE__, H5E_ERR_CLS, H5E_PLUGIN, minor, str)
|
||||
|
||||
static size_t H5Z_filter_dynlib4(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* This message derives from H5Z */
|
||||
const H5Z_class2_t H5Z_DYNLIB4[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
H5Z_FILTER_DYNLIB4, /* Filter id number */
|
||||
1, 1, /* Encoding and decoding enabled */
|
||||
"dynlib4", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)H5Z_filter_dynlib4, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB4;}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Z_filter_dynlib4
|
||||
*
|
||||
* Purpose: A dynlib4 filter method that adds on and subtract from
|
||||
* the original value with another value. It will be built
|
||||
* as a shared library. plugin.c test will load and use
|
||||
* this filter library. Designed to call a HDF function.
|
||||
*
|
||||
* Return: Success: Data chunk size
|
||||
*
|
||||
* Failure: 0
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
H5Z_filter_dynlib4(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes,
|
||||
size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
int add_on = 0;
|
||||
unsigned ver_info[3];
|
||||
|
||||
/* Check for the library version */
|
||||
if(H5get_libversion(&ver_info[0], &ver_info[1], &ver_info[2]) < 0) {
|
||||
PUSH_ERR("dynlib4", H5E_CALLBACK, "H5get_libversion");
|
||||
return(0);
|
||||
}
|
||||
/* Check for the correct number of parameters */
|
||||
if(cd_nelmts == 0)
|
||||
return(0);
|
||||
|
||||
/* Check that permanent parameters are set correctly */
|
||||
if(cd_values[0] > 9)
|
||||
return(0);
|
||||
|
||||
if(ver_info[0] != cd_values[1] || ver_info[1] != cd_values[2]) {
|
||||
PUSH_ERR("dynlib4", H5E_CALLBACK, "H5get_libversion does not match");
|
||||
return(0);
|
||||
}
|
||||
|
||||
add_on = (int)cd_values[0];
|
||||
|
||||
if(flags & H5Z_FLAG_REVERSE) { /*read*/
|
||||
/* Substract the "add on" value to all the data values */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ -= add_on;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end if */
|
||||
else { /*write*/
|
||||
/* Add the "add on" value to all the data values */
|
||||
while(buf_left > 0) {
|
||||
*int_ptr++ += add_on;
|
||||
buf_left -= sizeof(int);
|
||||
} /* end while */
|
||||
} /* end else */
|
||||
|
||||
return nbytes;
|
||||
} /* end H5Z_filter_dynlib4() */
|
||||
|
@ -19,8 +19,8 @@
|
||||
|
||||
#include "h5test.h"
|
||||
|
||||
#define FILENAME "filenotclosed"
|
||||
#define DATASET "dset"
|
||||
#define FILENAME "filenotclosed"
|
||||
#define DATASET_NAME "dset"
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: catch_signal
|
||||
@ -114,7 +114,7 @@ main(void)
|
||||
TEST_ERROR
|
||||
|
||||
/* Create the dataset */
|
||||
if((did = H5Dcreate2(fid, "dset", H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
|
||||
if((did = H5Dcreate2(fid, DATASET_NAME, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
|
||||
TEST_ERROR
|
||||
|
||||
/* Write to the dataset */
|
||||
|
1511
test/filter_plugin.c
Normal file
1511
test/filter_plugin.c
Normal file
File diff suppressed because it is too large
Load Diff
93
test/filter_plugin1_dsets.c
Normal file
93
test/filter_plugin1_dsets.c
Normal file
@ -0,0 +1,93 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Purpose: Test dataset filter plugin for the filter_pluging.c test.
|
||||
*/
|
||||
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define FILTER1_ID 257
|
||||
|
||||
static size_t add_sub_value(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* Filter class struct */
|
||||
const H5Z_class2_t FILTER_INFO[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
FILTER1_ID, /* Filter ID number */
|
||||
1, /* Encoding enabled */
|
||||
1, /* Decoding enabled */
|
||||
"test filter plugin 1", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)add_sub_value, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return FILTER_INFO;}
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: add_sub_value
|
||||
*
|
||||
* Purpose: On write:
|
||||
* Adds a caller-supplied value to the element
|
||||
* On read:
|
||||
* Subtracts a caller-supplied value from the element
|
||||
*
|
||||
* Return: Success: Data chunk size in bytes
|
||||
* Failure: 0
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
add_sub_value(unsigned int flags, size_t cd_nelmts, const unsigned int *cd_values,
|
||||
size_t nbytes, size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
int value = 0; /* Data value to add/subtract */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if (0 == cd_nelmts)
|
||||
return 0;
|
||||
|
||||
/* Check that permanent parameters are set correctly */
|
||||
if (cd_values[0] > 9)
|
||||
return 0;
|
||||
|
||||
value = (int)cd_values[0];
|
||||
|
||||
if (flags & H5Z_FLAG_REVERSE) {
|
||||
/* READ - Substract the given value from all the data values */
|
||||
while (buf_left > 0) {
|
||||
*int_ptr++ -= value;
|
||||
buf_left -= sizeof(int);
|
||||
}
|
||||
}
|
||||
else {
|
||||
/* WRITE - Add the given value to all the data values */
|
||||
while (buf_left > 0) {
|
||||
*int_ptr++ += value;
|
||||
buf_left -= sizeof(int);
|
||||
}
|
||||
}
|
||||
|
||||
return nbytes;
|
||||
|
||||
} /* end add_sub_value() */
|
||||
|
88
test/filter_plugin2_dsets.c
Normal file
88
test/filter_plugin2_dsets.c
Normal file
@ -0,0 +1,88 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Purpose: Test dataset filter plugin for the filter_pluging.c test.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define FILTER2_ID 258
|
||||
#define MULTIPLIER 3
|
||||
|
||||
static size_t mult_div_value(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* Filter class struct */
|
||||
const H5Z_class2_t FILTER_INFO[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
FILTER2_ID, /* Filter ID number */
|
||||
1, /* Encoding enabled */
|
||||
1, /* Decoding enabled */
|
||||
"test filter plugin 2", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)mult_div_value, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return FILTER_INFO;}
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: mult_div_value
|
||||
*
|
||||
* Purpose: On write:
|
||||
* Multiplies an element by a constant value.
|
||||
* On read:
|
||||
* Divides an element by a constant value.
|
||||
*
|
||||
* Return: Success: Data chunk size in bytes
|
||||
* Failure: 0
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
mult_div_value(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if (cd_nelmts > 0)
|
||||
return 0;
|
||||
|
||||
/* Assignment to eliminate unused parameter warning */
|
||||
cd_values = cd_values;
|
||||
|
||||
if (flags & H5Z_FLAG_REVERSE) {
|
||||
/* READ - Divide the original value by MULTIPLIER */
|
||||
while (buf_left > 0) {
|
||||
*int_ptr++ /= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
}
|
||||
}
|
||||
else {
|
||||
/* WRITE - Multiply the original value by MULTIPLIER */
|
||||
while (buf_left > 0) {
|
||||
*int_ptr++ *= MULTIPLIER;
|
||||
buf_left -= sizeof(int);
|
||||
}
|
||||
}
|
||||
|
||||
return nbytes;
|
||||
} /* end mult_div_value() */
|
||||
|
119
test/filter_plugin3_dsets.c
Normal file
119
test/filter_plugin3_dsets.c
Normal file
@ -0,0 +1,119 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Purpose: Test dataset filter plugin for the filter_pluging.c test.
|
||||
* This filter makes an HDF5 API call to ensure that works correctly.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define FILTER3_ID 259
|
||||
|
||||
#define PUSH_ERR(func, minor, str) H5Epush2(H5E_DEFAULT, __FILE__, func, __LINE__, H5E_ERR_CLS, H5E_PLUGIN, minor, str)
|
||||
|
||||
static size_t add_sub_value_hdf5(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* Filter class struct */
|
||||
const H5Z_class2_t FILTER_INFO[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
FILTER3_ID, /* Filter ID number */
|
||||
1, /* Encoding enabled */
|
||||
1, /* Decoding enabled */
|
||||
"test filter plugin 3", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)add_sub_value_hdf5, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return FILTER_INFO;}
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: add_sub_value_hdf5
|
||||
*
|
||||
* Purpose: On write:
|
||||
* Adds a caller-supplied value to the element
|
||||
* On read:
|
||||
* Subtracts a caller-supplied value from the element
|
||||
*
|
||||
* NOTE: This filter is identical to filter #1 only it makes
|
||||
* an HDF5 library call to ensure doing that doesn't
|
||||
* cause problems.
|
||||
*
|
||||
* Return: Success: Data chunk size in bytes
|
||||
* Failure: 0
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
add_sub_value_hdf5(unsigned int flags, size_t cd_nelmts, const unsigned int *cd_values,
|
||||
size_t nbytes, size_t *buf_size, void **buf)
|
||||
{
|
||||
int *int_ptr = (int *)*buf; /* Pointer to the data values */
|
||||
size_t buf_left = *buf_size; /* Amount of data buffer left to process */
|
||||
int value = 0; /* Data value to add/subtract */
|
||||
unsigned majnum = 0; /* Output data from the HDF5 library call */
|
||||
unsigned minnum = 0;
|
||||
unsigned relnum = 0;
|
||||
|
||||
/* Check for the library version.
|
||||
* We don't do anything with this information - it's just to ensure that
|
||||
* HDF5 library calls work properly from inside filter plugins.
|
||||
*/
|
||||
if (H5get_libversion(&majnum, &minnum, &relnum) < 0) {
|
||||
PUSH_ERR("filter plugin 3", H5E_CALLBACK, "H5get_libversion");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if (cd_nelmts == 0)
|
||||
return 0;
|
||||
|
||||
/* Check that permanent parameters are set correctly */
|
||||
if (cd_values[0] > 9)
|
||||
return 0;
|
||||
|
||||
/* Ensure that the version numbers match what was passed in.
|
||||
* Again, this is trivial work, just to ensure that the library calls are
|
||||
* working properly.
|
||||
*/
|
||||
if (majnum != cd_values[1] || minnum != cd_values[2]) {
|
||||
PUSH_ERR("filter plugin 3", H5E_CALLBACK, "library versions do not match");
|
||||
return 0;
|
||||
}
|
||||
|
||||
value = (int)cd_values[0];
|
||||
|
||||
if (flags & H5Z_FLAG_REVERSE) {
|
||||
/* READ - Substract the given value from all the data values */
|
||||
while (buf_left > 0) {
|
||||
*int_ptr++ -= value;
|
||||
buf_left -= sizeof(int);
|
||||
}
|
||||
}
|
||||
else {
|
||||
/* WRITE - Add the given value to all the data values */
|
||||
while (buf_left > 0) {
|
||||
*int_ptr++ += value;
|
||||
buf_left -= sizeof(int);
|
||||
}
|
||||
}
|
||||
|
||||
return nbytes;
|
||||
} /* end add_sub_value_hdf5() */
|
||||
|
106
test/filter_plugin4_groups.c
Normal file
106
test/filter_plugin4_groups.c
Normal file
@ -0,0 +1,106 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* 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 COPYING file, which can be found at the root of the source code *
|
||||
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
||||
* If you do not have access to either file, you may request a copy from *
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Purpose: Test group filter plugin for the filter_pluging.c test.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "H5PLextern.h"
|
||||
|
||||
#define FILTER4_ID 260
|
||||
#define SUFFIX_LEN 8
|
||||
#define GROUP_SUFFIX ".h5group"
|
||||
|
||||
static size_t append_to_group_name(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
||||
|
||||
/* Filter class struct */
|
||||
const H5Z_class2_t FILTER_INFO[1] = {{
|
||||
H5Z_CLASS_T_VERS, /* H5Z_class_t version */
|
||||
FILTER4_ID, /* Filter ID number */
|
||||
1, /* Encoding enabled */
|
||||
1, /* Decoding enabled */
|
||||
"test filter plugin 4", /* Filter name for debugging */
|
||||
NULL, /* The "can apply" callback */
|
||||
NULL, /* The "set local" callback */
|
||||
(H5Z_func_t)append_to_group_name, /* The actual filter function */
|
||||
}};
|
||||
|
||||
H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
|
||||
const void *H5PLget_plugin_info(void) {return FILTER_INFO;}
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: append_to_group_name
|
||||
*
|
||||
* Purpose: On write:
|
||||
* Appends the suffix ".h5group" to the group name
|
||||
* On read:
|
||||
* Removes the ".h5group" suffix from the group name
|
||||
*
|
||||
* Return: Success: Data size in bytes
|
||||
* Failure: 0
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static size_t
|
||||
append_to_group_name(unsigned int flags, size_t cd_nelmts,
|
||||
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf)
|
||||
{
|
||||
size_t new_name_size = 0; /* Return value */
|
||||
|
||||
/* Check for the correct number of parameters */
|
||||
if (cd_nelmts > 0)
|
||||
return 0;
|
||||
|
||||
/* Assignment to eliminate unused parameter warning. */
|
||||
cd_values = cd_values;
|
||||
|
||||
if (flags & H5Z_FLAG_REVERSE) {
|
||||
/* READ - Remove the suffix from the group name */
|
||||
new_name_size = *buf_size = nbytes - SUFFIX_LEN;
|
||||
}
|
||||
else {
|
||||
/* WRITE - Append the suffix to the group name */
|
||||
void *outbuf = NULL; /* Pointer to new buffer */
|
||||
unsigned char *dst = NULL; /* Temporary pointer to destination buffer */
|
||||
|
||||
/* Get memory for the new, larger string buffer using the
|
||||
* library's memory allocator.
|
||||
*/
|
||||
if (NULL == (dst = (unsigned char *)(outbuf = H5allocate_memory(nbytes + SUFFIX_LEN, 0))))
|
||||
return 0;
|
||||
|
||||
/* Copy raw data */
|
||||
memcpy((void *)dst, (const void *)(*buf), nbytes);
|
||||
|
||||
/* Append suffix to raw data for storage */
|
||||
dst += nbytes;
|
||||
memcpy((void *)dst, (const void *)GROUP_SUFFIX, SUFFIX_LEN);
|
||||
|
||||
/* Free the passed-in buffer using the library's allocator */
|
||||
H5free_memory(*buf);
|
||||
|
||||
/* Set return values */
|
||||
*buf_size = nbytes + SUFFIX_LEN;
|
||||
*buf = outbuf;
|
||||
outbuf = NULL;
|
||||
new_name_size = *buf_size;
|
||||
}
|
||||
|
||||
return new_name_size;
|
||||
} /* append_to_group_name() */
|
||||
|
1217
test/plugin.c
1217
test/plugin.c
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@
|
||||
srcdir=@srcdir@
|
||||
TOP_BUILDDIR=@top_builddir@
|
||||
|
||||
# Determine backward compatibility options enabled
|
||||
# Determine if backward compatibility options enabled
|
||||
DEPRECATED_SYMBOLS="@DEPRECATED_SYMBOLS@"
|
||||
|
||||
EXIT_SUCCESS=0
|
||||
@ -23,21 +23,21 @@ nerrors=0
|
||||
verbose=yes
|
||||
exit_code=$EXIT_SUCCESS
|
||||
|
||||
TEST_NAME=plugin
|
||||
TEST_NAME=filter_plugin
|
||||
TEST_BIN=`pwd`/$TEST_NAME
|
||||
FROM_DIR=`pwd`/.libs
|
||||
case $(uname) in
|
||||
CYGWIN* )
|
||||
PLUGIN_LIB1="$FROM_DIR/cygdynlib1* $FROM_DIR/cygdynlib3*"
|
||||
PLUGIN_LIB2="$FROM_DIR/cygdynlib2* $FROM_DIR/cygdynlib4*"
|
||||
PLUGINS_FOR_DIR1="$FROM_DIR/cygfilter_plugin1* $FROM_DIR/cygfilter_plugin3*"
|
||||
PLUGINS_FOR_DIR2="$FROM_DIR/cygfilter_plugin2* $FROM_DIR/cygfilter_plugin4*"
|
||||
;;
|
||||
*)
|
||||
PLUGIN_LIB1="$FROM_DIR/libdynlib1.* $FROM_DIR/libdynlib3.*"
|
||||
PLUGIN_LIB2="$FROM_DIR/libdynlib2.* $FROM_DIR/libdynlib4.*"
|
||||
PLUGINS_FOR_DIR1="$FROM_DIR/libfilter_plugin1* $FROM_DIR/libfilter_plugin3*"
|
||||
PLUGINS_FOR_DIR2="$FROM_DIR/libfilter_plugin2* $FROM_DIR/libfilter_plugin4*"
|
||||
;;
|
||||
esac
|
||||
PLUGIN_LIBDIR1=testdir1
|
||||
PLUGIN_LIBDIR2=testdir2
|
||||
PLUGIN_DIR1=filter_plugin_dir1
|
||||
PLUGIN_DIR2=filter_plugin_dir2
|
||||
CP="cp -p" # Use -p to preserve mode,ownership,timestamps
|
||||
RM="rm -rf"
|
||||
|
||||
@ -50,34 +50,34 @@ TESTING() {
|
||||
}
|
||||
|
||||
# Main Body
|
||||
# Create test directories if not exists yet.
|
||||
test -d $PLUGIN_LIBDIR1 || mkdir -p $PLUGIN_LIBDIR1
|
||||
# Create test directories if necessary.
|
||||
test -d $PLUGIN_DIR1 || mkdir -p $PLUGIN_DIR1
|
||||
if [ $? != 0 ]; then
|
||||
echo "Failed to create test directory($PLUGIN_LIBDIR1)"
|
||||
echo "Failed to create filter plugin test directory ($PLUGIN_DIR1)"
|
||||
exit $EXIT_FAILURE
|
||||
fi
|
||||
|
||||
test -d $PLUGIN_LIBDIR2 || mkdir -p $PLUGIN_LIBDIR2
|
||||
test -d $PLUGIN_DIR2 || mkdir -p $PLUGIN_DIR2
|
||||
if [ $? != 0 ]; then
|
||||
echo "Failed to create test directory($PLUGIN_LIBDIR2)"
|
||||
echo "Failed to create filter plugin test directory ($PLUGIN_DIR2)"
|
||||
exit $EXIT_FAILURE
|
||||
fi
|
||||
|
||||
# copy plugin library for test
|
||||
$CP $PLUGIN_LIB1 $PLUGIN_LIBDIR1
|
||||
# Copy plugins for the tests.
|
||||
$CP $PLUGINS_FOR_DIR1 $PLUGIN_DIR1
|
||||
if [ $? != 0 ]; then
|
||||
echo "Failed to copy plugin library ($PLUGIN_LIB1) for test."
|
||||
echo "Failed to copy filter plugins ($PLUGINS_FOR_DIR1) to test directory."
|
||||
exit $EXIT_FAILURE
|
||||
fi
|
||||
|
||||
$CP $PLUGIN_LIB2 $PLUGIN_LIBDIR2
|
||||
$CP $PLUGINS_FOR_DIR2 $PLUGIN_DIR2
|
||||
if [ $? != 0 ]; then
|
||||
echo "Failed to copy plugin library ($PLUGIN_LIB2) for test."
|
||||
echo "Failed to copy filter plugins ($PLUGINS_FOR_DIR2) to test directory."
|
||||
exit $EXIT_FAILURE
|
||||
fi
|
||||
|
||||
# setup plugin path
|
||||
ENVCMD="env HDF5_PLUGIN_PATH=${PLUGIN_LIBDIR1}:${PLUGIN_LIBDIR2}"
|
||||
ENVCMD="env HDF5_PLUGIN_PATH=${PLUGIN_DIR1}:${PLUGIN_DIR2}"
|
||||
|
||||
# Run the test
|
||||
$ENVCMD $TEST_BIN
|
||||
@ -87,9 +87,9 @@ fi
|
||||
|
||||
############################################
|
||||
# HDFFV-9655 test for relative path disabled
|
||||
# setup plugin path relative to test
|
||||
# setup filter plugin path relative to test
|
||||
# actual executable is in the .libs folder
|
||||
#ENVCMD="env HDF5_PLUGIN_PATH=@/../${PLUGIN_LIBDIR1}:@/../${PLUGIN_LIBDIR2}"
|
||||
#ENVCMD="env HDF5_PLUGIN_PATH=@/../${PLUGIN_DIR1}:@/../${PLUGIN_DIR2}"
|
||||
#
|
||||
# Run the test
|
||||
#$ENVCMD $TEST_BIN
|
||||
@ -103,11 +103,11 @@ if test $nerrors -ne 0 ; then
|
||||
echo "$nerrors errors encountered"
|
||||
exit_code=$EXIT_FAILURE
|
||||
else
|
||||
echo "All Plugin API tests passed."
|
||||
echo "All filter plugin tests passed."
|
||||
exit_code=$EXIT_SUCCESS
|
||||
fi
|
||||
|
||||
# Clean up temporary files/directories and leave
|
||||
$RM $PLUGIN_LIBDIR1 $PLUGIN_LIBDIR2
|
||||
$RM $PLUGIN_DIR1 $PLUGIN_DIR2
|
||||
|
||||
exit $exit_code
|
@ -53,9 +53,6 @@ if HAVE_SHARED_CONDITIONAL
|
||||
noinst_LTLIBRARIES=libdynlibdiff.la
|
||||
libdynlibdiff_la_SOURCES=dynlib_diff.c
|
||||
libdynlibdiff_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
|
||||
libdynlibdiff.la: $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_DEPENDENCIES) $(EXTRA_libdynlibdiff_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlibdiff_la_LINK) $(am_libdynlibdiff_la_rpath) $(libdynlibdiff_la_OBJECTS) $(libdynlibdiff_la_LIBADD)
|
||||
endif
|
||||
|
||||
# Temporary files. *.h5 are generated by h5diff. They should
|
||||
|
@ -42,9 +42,6 @@ if HAVE_SHARED_CONDITIONAL
|
||||
noinst_LTLIBRARIES=libdynlibdump.la
|
||||
libdynlibdump_la_SOURCES=dynlib_dump.c
|
||||
libdynlibdump_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
|
||||
libdynlibdump.la: $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_DEPENDENCIES) $(EXTRA_libdynlibdump_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlibdump_la_LINK) $(am_libdynlibdump_la_rpath) $(libdynlibdump_la_OBJECTS) $(libdynlibdump_la_LIBADD)
|
||||
endif
|
||||
|
||||
# Temporary files. *.h5 are generated by h5dumpgentest. They should
|
||||
|
@ -39,9 +39,6 @@ if HAVE_SHARED_CONDITIONAL
|
||||
noinst_LTLIBRARIES=libdynlibls.la
|
||||
libdynlibls_la_SOURCES=dynlib_ls.c
|
||||
libdynlibls_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
|
||||
libdynlibls.la: $(libdynlibls_la_OBJECTS) $(libdynlibls_la_DEPENDENCIES) $(EXTRA_libdynlibls_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlibls_la_LINK) $(am_libdynlibls_la_rpath) $(libdynlibls_la_OBJECTS) $(libdynlibls_la_LIBADD)
|
||||
endif
|
||||
|
||||
|
||||
|
@ -50,11 +50,6 @@ if HAVE_SHARED_CONDITIONAL
|
||||
libdynlibvers_la_SOURCES=dynlib_vrpk.c
|
||||
libdynlibadd_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
libdynlibvers_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
|
||||
|
||||
libdynlibadd.la: $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_DEPENDENCIES) $(EXTRA_libdynlibadd_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlibadd_la_LINK) $(am_libdynlibadd_la_rpath) $(libdynlibadd_la_OBJECTS) $(libdynlibadd_la_LIBADD)
|
||||
libdynlibvers.la: $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_DEPENDENCIES) $(EXTRA_libdynlibvers_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libdynlibvers_la_LINK) $(am_libdynlibvers_la_rpath) $(libdynlibvers_la_OBJECTS) $(libdynlibvers_la_LIBADD)
|
||||
endif
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user