2003-02-17 23:54:15 +08:00
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
|
|
|
|
* http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
|
* access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
|
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-06-06 05:03:49 +08:00
|
|
|
|
#define H5A_PACKAGE /*suppress error about including H5Apkg */
|
2000-10-10 15:43:38 +08:00
|
|
|
|
#define H5S_PACKAGE /*suppress error about including H5Spkg */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 22:34:35 +08:00
|
|
|
|
/* Pablo information */
|
|
|
|
|
/* (Put before include files to avoid problems with inline functions) */
|
|
|
|
|
#define PABLO_MASK H5A_mask
|
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
/* Private header files */
|
2001-04-06 01:29:14 +08:00
|
|
|
|
#include "H5private.h" /* Generic Functions */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
#include "H5Apkg.h" /* Attributes */
|
2001-04-06 01:29:14 +08:00
|
|
|
|
#include "H5Eprivate.h" /* Error handling */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
#include "H5Iprivate.h" /* IDs */
|
2001-04-06 01:29:14 +08:00
|
|
|
|
#include "H5MMprivate.h" /* Memory management */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
#include "H5Spkg.h" /* Dataspace functions */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Is the interface initialized? */
|
2001-08-15 06:09:56 +08:00
|
|
|
|
static int interface_initialize_g = 0;
|
1998-06-06 05:03:49 +08:00
|
|
|
|
#define INTERFACE_INIT H5A_init_interface
|
1998-04-24 06:24:38 +08:00
|
|
|
|
static herr_t H5A_init_interface(void);
|
|
|
|
|
|
|
|
|
|
/* PRIVATE PROTOTYPES */
|
1998-06-06 05:03:49 +08:00
|
|
|
|
static hid_t H5A_create(const H5G_entry_t *ent, const char *name,
|
2003-02-11 01:26:09 +08:00
|
|
|
|
const H5T_t *type, const H5S_t *space, hid_t dxpl_id);
|
|
|
|
|
static hid_t H5A_open(H5G_entry_t *ent, unsigned idx, hid_t dxpl_id);
|
|
|
|
|
static herr_t H5A_write(H5A_t *attr, const H5T_t *mem_type, const void *buf, hid_t dxpl_id);
|
2003-07-09 05:05:27 +08:00
|
|
|
|
static herr_t H5A_read(const H5A_t *attr, const H5T_t *mem_type, void *buf, hid_t dxpl_id);
|
2003-02-11 01:26:09 +08:00
|
|
|
|
static int H5A_get_index(H5G_entry_t *ent, const char *name, hid_t dxpl_id);
|
2003-07-09 05:05:27 +08:00
|
|
|
|
static hsize_t H5A_get_storage_size(const H5A_t *attr);
|
2003-02-11 01:26:09 +08:00
|
|
|
|
static herr_t H5A_rename(H5G_entry_t *ent, const char *old_name, const char *new_name, hid_t dxpl_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-05-09 04:09:07 +08:00
|
|
|
|
/* The number of reserved IDs in dataset ID group */
|
|
|
|
|
#define H5A_RESERVED_ATOMS 0
|
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5A_init_interface -- Initialize interface-specific information
|
|
|
|
|
USAGE
|
|
|
|
|
herr_t H5A_init_interface()
|
|
|
|
|
|
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
DESCRIPTION
|
|
|
|
|
Initializes any interface-specific data or routines.
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
static herr_t
|
|
|
|
|
H5A_init_interface(void)
|
|
|
|
|
{
|
2002-08-09 00:52:55 +08:00
|
|
|
|
herr_t ret_value=SUCCEED; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_init_interface)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/*
|
1998-11-21 11:36:51 +08:00
|
|
|
|
* Create attribute group.
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*/
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_init_group(H5I_ATTR, H5I_ATTRID_HASHSIZE, H5A_RESERVED_ATOMS, (H5I_free_t)H5A_close)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_INTERNAL, H5E_CANTINIT, FAIL, "unable to initialize interface")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5A_term_interface
|
|
|
|
|
PURPOSE
|
|
|
|
|
Terminate various H5A objects
|
|
|
|
|
USAGE
|
|
|
|
|
void H5A_term_interface()
|
|
|
|
|
RETURNS
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
Release any other resources allocated.
|
|
|
|
|
GLOBAL VARIABLES
|
|
|
|
|
COMMENTS, BUGS, ASSUMPTIONS
|
|
|
|
|
Can't report errors...
|
|
|
|
|
EXAMPLES
|
|
|
|
|
REVISION LOG
|
|
|
|
|
--------------------------------------------------------------------------*/
|
2001-08-15 06:09:56 +08:00
|
|
|
|
int
|
1999-03-30 19:38:34 +08:00
|
|
|
|
H5A_term_interface(void)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
2001-08-15 06:09:56 +08:00
|
|
|
|
int n=0;
|
2002-05-29 02:17:12 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_term_interface)
|
1999-03-30 19:38:34 +08:00
|
|
|
|
|
|
|
|
|
if (interface_initialize_g) {
|
|
|
|
|
if ((n=H5I_nmembers(H5I_ATTR))) {
|
1999-04-27 22:47:54 +08:00
|
|
|
|
H5I_clear_group(H5I_ATTR, FALSE);
|
1999-03-30 19:38:34 +08:00
|
|
|
|
} else {
|
|
|
|
|
H5I_destroy_group(H5I_ATTR);
|
|
|
|
|
interface_initialize_g = 0;
|
|
|
|
|
n = 1;
|
|
|
|
|
}
|
1998-11-21 11:36:51 +08:00
|
|
|
|
}
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(n)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Acreate
|
|
|
|
|
PURPOSE
|
|
|
|
|
Creates a dataset as an attribute of another dataset or group
|
|
|
|
|
USAGE
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
hid_t H5Acreate (loc_id, name, type_id, space_id, plist_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
hid_t loc_id; IN: Object (dataset or group) to be attached to
|
|
|
|
|
const char *name; IN: Name of attribute to create
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
hid_t type_id; IN: ID of datatype for attribute
|
|
|
|
|
hid_t space_id; IN: ID of dataspace for attribute
|
|
|
|
|
hid_t plist_id; IN: ID of creation property list (currently not used)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function creates an attribute which is attached to the object
|
|
|
|
|
specified with 'location_id'. The name specified with 'name' for each
|
|
|
|
|
attribute for an object must be unique for that object. The 'type_id'
|
|
|
|
|
and 'space_id' are created with the H5T and H5S interfaces respectively.
|
|
|
|
|
Currently only simple dataspaces are allowed for attribute dataspaces.
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
The 'plist_id' property list is currently un-used, but will be
|
1998-04-24 06:24:38 +08:00
|
|
|
|
used int the future for optional properties of attributes. The attribute
|
|
|
|
|
ID returned from this function must be released with H5Aclose or resource
|
|
|
|
|
leaks will develop.
|
|
|
|
|
The link created (see H5G API documentation for more information on
|
|
|
|
|
link types) is a hard link, so the attribute may be shared among datasets
|
|
|
|
|
and will not be removed from the file until the reference count for the
|
|
|
|
|
attribute is reduced to zero.
|
|
|
|
|
The location object may be either a group or a dataset, both of
|
|
|
|
|
which may have any sort of attribute.
|
1998-06-06 05:03:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* The LOC_ID can also be a committed data type.
|
|
|
|
|
*
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
hid_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Acreate(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
|
2001-11-03 03:46:36 +08:00
|
|
|
|
hid_t UNUSED plist_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5G_entry_t *ent = NULL;
|
|
|
|
|
H5T_t *type = NULL;
|
|
|
|
|
H5S_t *space = NULL;
|
|
|
|
|
hid_t ret_value = FAIL;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Acreate, FAIL)
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
H5TRACE5("i","isiii",loc_id,name,type_id,space_id,plist_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(ent=H5G_loc(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (!name || !*name)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name")
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (type = H5I_object_verify(type_id, H5I_DATATYPE)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a type")
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (space = H5I_object_verify(space_id, H5I_DATASPACE)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data space")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Go do the real work for attaching the attribute to the dataset */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if ((ret_value=H5A_create(ent,name,type,space, H5AC_dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ATTR, H5E_CANTINIT, FAIL, "unable to create attribute")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
|
|
|
|
} /* H5Acreate() */ /*lint !e715 */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_create
|
|
|
|
|
*
|
|
|
|
|
* Purpose:
|
|
|
|
|
* This is the guts of the H5Acreate function.
|
|
|
|
|
* Usage:
|
|
|
|
|
* hid_t H5A_create (ent, name, type, space)
|
|
|
|
|
* const H5G_entry_t *ent; IN: Pointer to symbol table entry for object to attribute
|
|
|
|
|
* const char *name; IN: Name of attribute
|
|
|
|
|
* H5T_t *type; IN: Datatype of attribute
|
|
|
|
|
* H5S_t *space; IN: Dataspace of attribute
|
|
|
|
|
*
|
1998-10-27 05:18:54 +08:00
|
|
|
|
* Return: Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* April 2, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2002-08-29 02:34:12 +08:00
|
|
|
|
*
|
|
|
|
|
* Pedro Vicente, <pvn@ncsa.uiuc.edu> 22 Aug 2002
|
|
|
|
|
* Added a deep copy of the symbol table entry
|
2002-09-25 22:50:49 +08:00
|
|
|
|
*
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static hid_t
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5A_create(const H5G_entry_t *ent, const char *name, const H5T_t *type,
|
2003-02-11 01:26:09 +08:00
|
|
|
|
const H5S_t *space, hid_t dxpl_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-08-31 21:46:47 +08:00
|
|
|
|
H5A_t *attr = NULL;
|
|
|
|
|
H5A_t found_attr;
|
2001-08-15 06:09:56 +08:00
|
|
|
|
int seq=0;
|
1998-08-31 21:46:47 +08:00
|
|
|
|
hid_t ret_value = FAIL;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_create)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check args */
|
|
|
|
|
assert(ent);
|
|
|
|
|
assert(name);
|
|
|
|
|
assert(type);
|
|
|
|
|
assert(space);
|
|
|
|
|
|
|
|
|
|
/* Build the attribute information */
|
1998-06-23 11:41:22 +08:00
|
|
|
|
if((attr = H5MM_calloc(sizeof(H5A_t)))==NULL)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for attribute info")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the attribute name */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
attr->name=HDstrdup(name);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the attribute's datatype */
|
1998-06-05 06:27:11 +08:00
|
|
|
|
attr->dt=H5T_copy(type, H5T_COPY_ALL);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
1999-06-05 06:27:28 +08:00
|
|
|
|
/* Mark any VL datatypes as being on disk now */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5T_vlen_mark(attr->dt, ent->file, H5T_VLEN_DISK)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "invalid VL location")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the dataspace for the attribute */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
attr->ds=H5S_copy(space);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
/* Mark it initially set to initialized */
|
1998-05-01 13:16:50 +08:00
|
|
|
|
attr->initialized = TRUE; /*for now, set to false later*/
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-09-25 22:50:49 +08:00
|
|
|
|
/* Deep copy of the symbol table entry */
|
2002-10-15 04:08:23 +08:00
|
|
|
|
if (H5G_ent_copy(&(attr->ent),ent,H5G_COPY_DEEP)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTOPENOBJ, FAIL, "unable to copy entry")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Compute the internal sizes */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
attr->dt_size=H5O_raw_size(H5O_DTYPE_ID,attr->ent.file,type);
|
|
|
|
|
assert(attr->dt_size>0);
|
|
|
|
|
attr->ds_size=H5O_raw_size(H5O_SDSPACE_ID,attr->ent.file,&(space->extent.u.simple));
|
|
|
|
|
assert(attr->ds_size>0);
|
2002-01-04 10:41:57 +08:00
|
|
|
|
H5_ASSIGN_OVERFLOW(attr->data_size,H5S_get_simple_extent_npoints(attr->ds)*H5T_get_size(attr->dt),hssize_t,size_t);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Hold the symbol table entry (and file) open */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
if (H5O_open(&(attr->ent)) < 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTOPENOBJ, FAIL, "unable to open")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
attr->ent_opened=1;
|
|
|
|
|
|
1998-05-01 13:16:50 +08:00
|
|
|
|
/* Read in the existing attributes to check for duplicates */
|
|
|
|
|
seq=0;
|
2003-02-17 23:54:15 +08:00
|
|
|
|
while(H5O_read(&(attr->ent), H5O_ATTR_ID, seq, &found_attr, dxpl_id)!=NULL) {
|
1998-05-01 13:16:50 +08:00
|
|
|
|
/*
|
|
|
|
|
* Compare found attribute name to new attribute name reject creation
|
|
|
|
|
* if names are the same.
|
|
|
|
|
*/
|
|
|
|
|
if(HDstrcmp(found_attr.name,attr->name)==0) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5O_reset (H5O_ATTR_ID, &found_attr);
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_ALREADYEXISTS, FAIL, "attribute already exists")
|
1998-05-01 13:16:50 +08:00
|
|
|
|
}
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-05-01 13:16:50 +08:00
|
|
|
|
seq++;
|
1998-06-06 05:03:49 +08:00
|
|
|
|
}
|
2003-08-09 02:47:43 +08:00
|
|
|
|
H5E_clear(NULL);
|
1998-05-01 13:16:50 +08:00
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
/* Create the attribute message and save the attribute index */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
if (H5O_modify(&(attr->ent), H5O_ATTR_ID, H5O_NEW_MESG, 0, 1, attr, dxpl_id) < 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "unable to update attribute header messages")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Register the new attribute and get an ID for it */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if ((ret_value = H5I_register(H5I_ATTR, attr)) < 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register attribute for ID")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-05-01 13:16:50 +08:00
|
|
|
|
/* Now it's safe to say it's uninitialized */
|
|
|
|
|
attr->initialized = FALSE;
|
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
done:
|
|
|
|
|
if (ret_value < 0) {
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(attr)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5A_close(attr);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
} /* end if */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5A_create() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5A_get_index
|
|
|
|
|
PURPOSE
|
|
|
|
|
Determine the index of an attribute in an object header
|
|
|
|
|
USAGE
|
|
|
|
|
int H5A_get_index (ent, name)
|
|
|
|
|
H5G_entry_t *ent; IN: Symbol table entry of object
|
|
|
|
|
const char *name; IN: Name of dataset to find
|
|
|
|
|
RETURNS
|
|
|
|
|
non-negative on success, negative on failure
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function determines the index of the attribute within an object
|
|
|
|
|
header. This is not stored in the attribute structure because it is only
|
|
|
|
|
a subjective measure and can change if attributes are deleted from the
|
|
|
|
|
object header.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
static int
|
2003-02-11 01:26:09 +08:00
|
|
|
|
H5A_get_index(H5G_entry_t *ent, const char *name, hid_t dxpl_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-04-28 21:59:08 +08:00
|
|
|
|
H5A_t found_attr;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
int i; /* Index variable */
|
|
|
|
|
int ret_value=FAIL; /* Return value */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_get_index)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
assert(ent);
|
|
|
|
|
assert(name);
|
|
|
|
|
|
|
|
|
|
/* Look up the attribute for the object */
|
1998-04-28 21:59:08 +08:00
|
|
|
|
i=0;
|
2003-02-17 23:54:15 +08:00
|
|
|
|
while(H5O_read(ent, H5O_ATTR_ID, i, &found_attr, dxpl_id)!=NULL) {
|
1998-05-01 13:16:50 +08:00
|
|
|
|
/*
|
|
|
|
|
* Compare found attribute name to new attribute name reject creation
|
|
|
|
|
* if names are the same.
|
|
|
|
|
*/
|
|
|
|
|
if(HDstrcmp(found_attr.name,name)==0) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-05-01 13:16:50 +08:00
|
|
|
|
ret_value = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-05-01 13:16:50 +08:00
|
|
|
|
i++;
|
1998-06-06 05:03:49 +08:00
|
|
|
|
}
|
2003-08-09 02:47:43 +08:00
|
|
|
|
H5E_clear(NULL);
|
1998-05-01 13:16:50 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(ret_value<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_NOTFOUND, FAIL, "attribute not found")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5A_get_index() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aopen_name
|
|
|
|
|
PURPOSE
|
|
|
|
|
Opens an attribute for an object by looking up the attribute name
|
|
|
|
|
USAGE
|
|
|
|
|
hid_t H5Aopen_name (loc_id, name)
|
|
|
|
|
hid_t loc_id; IN: Object (dataset or group) to be attached to
|
|
|
|
|
const char *name; IN: Name of attribute to locate and open
|
|
|
|
|
RETURNS
|
|
|
|
|
ID of attribute on success, negative on failure
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function opens an existing attribute for access. The attribute
|
|
|
|
|
name specified is used to look up the corresponding attribute for the
|
|
|
|
|
object. The attribute ID returned from this function must be released with
|
|
|
|
|
H5Aclose or resource leaks will develop.
|
|
|
|
|
The location object may be either a group or a dataset, both of
|
|
|
|
|
which may have any sort of attribute.
|
1998-06-06 05:03:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* The LOC_ID can also be a named (committed) data type.
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
hid_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aopen_name(hid_t loc_id, const char *name)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5G_entry_t *ent = NULL; /*Symtab entry of object to attribute*/
|
2001-08-15 06:09:56 +08:00
|
|
|
|
int idx=0;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
hid_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aopen_name, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE2("i","is",loc_id,name);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(ent=H5G_loc(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (!name || !*name)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Look up the attribute for the object */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if((idx=H5A_get_index(ent,name, H5AC_dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_BADVALUE, FAIL, "attribute not found")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Go do the real work for opening the attribute */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if ((ret_value=H5A_open(ent, (unsigned)idx, H5AC_dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ATTR, H5E_CANTINIT, FAIL, "unable to open attribute")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aopen_name() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aopen_idx
|
|
|
|
|
PURPOSE
|
|
|
|
|
Opens the n'th attribute for an object
|
|
|
|
|
USAGE
|
|
|
|
|
hid_t H5Aopen_idx (loc_id, idx)
|
|
|
|
|
hid_t loc_id; IN: Object (dataset or group) to be attached to
|
|
|
|
|
unsigned idx; IN: Index (0-based) attribute to open
|
|
|
|
|
RETURNS
|
|
|
|
|
ID of attribute on success, negative on failure
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function opens an existing attribute for access. The attribute
|
|
|
|
|
index specified is used to look up the corresponding attribute for the
|
|
|
|
|
object. The attribute ID returned from this function must be released with
|
|
|
|
|
H5Aclose or resource leaks will develop.
|
|
|
|
|
The location object may be either a group or a dataset, both of
|
|
|
|
|
which may have any sort of attribute.
|
1998-06-06 05:03:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* The LOC_ID can also be a named (committed) data type.
|
|
|
|
|
*
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
hid_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aopen_idx(hid_t loc_id, unsigned idx)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5G_entry_t *ent = NULL; /*Symtab entry of object to attribute */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
hid_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aopen_idx, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE2("i","iIu",loc_id,idx);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(ent=H5G_loc(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Go do the real work for opening the attribute */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if ((ret_value=H5A_open(ent, idx, H5AC_dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ATTR, H5E_CANTINIT, FAIL, "unable to open attribute")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aopen_idx() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_open
|
|
|
|
|
*
|
|
|
|
|
* Purpose:
|
|
|
|
|
* This is the guts of the H5Aopen_xxx functions
|
|
|
|
|
* Usage:
|
|
|
|
|
* herr_t H5A_open (ent, idx)
|
|
|
|
|
* const H5G_entry_t *ent; IN: Pointer to symbol table entry for object to attribute
|
|
|
|
|
* unsigned idx; IN: index of attribute to open (0-based)
|
|
|
|
|
*
|
1998-10-27 05:18:54 +08:00
|
|
|
|
* Return: Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* April 2, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
2002-09-25 22:50:49 +08:00
|
|
|
|
* Pedro Vicente, <pvn@ncsa.uiuc.edu> 22 Aug 2002
|
2002-08-29 02:34:12 +08:00
|
|
|
|
* Added a deep copy of the symbol table entry
|
2002-09-25 22:50:49 +08:00
|
|
|
|
*
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static hid_t
|
2003-02-11 01:26:09 +08:00
|
|
|
|
H5A_open(H5G_entry_t *ent, unsigned idx, hid_t dxpl_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
|
|
|
|
H5A_t *attr = NULL;
|
|
|
|
|
hid_t ret_value = FAIL;
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_open)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check args */
|
|
|
|
|
assert(ent);
|
|
|
|
|
|
|
|
|
|
/* Read in attribute with H5O_read() */
|
2001-01-10 05:22:30 +08:00
|
|
|
|
H5_CHECK_OVERFLOW(idx,unsigned,int);
|
2003-02-17 23:54:15 +08:00
|
|
|
|
if (NULL==(attr=H5O_read(ent, H5O_ATTR_ID, (int)idx, attr, dxpl_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "unable to load attribute info from dataset header")
|
1999-03-30 06:09:44 +08:00
|
|
|
|
attr->initialized=1;
|
2002-08-29 02:34:12 +08:00
|
|
|
|
|
2002-09-25 22:50:49 +08:00
|
|
|
|
/* Deep copy of the symbol table entry */
|
2002-10-15 04:08:23 +08:00
|
|
|
|
if (H5G_ent_copy(&(attr->ent),ent,H5G_COPY_DEEP)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTOPENOBJ, FAIL, "unable to copy entry")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Hold the symbol table entry (and file) open */
|
|
|
|
|
if (H5O_open(&(attr->ent)) < 0) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTOPENOBJ, FAIL, "unable to open")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
attr->ent_opened=1;
|
|
|
|
|
|
|
|
|
|
/* Register the new attribute and get an ID for it */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if ((ret_value = H5I_register(H5I_ATTR, attr)) < 0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register attribute for ID")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
if (ret_value < 0) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(attr)
|
|
|
|
|
(void)H5A_close(attr);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5A_open() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Awrite
|
|
|
|
|
PURPOSE
|
|
|
|
|
Write out data to an attribute
|
|
|
|
|
USAGE
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
herr_t H5Awrite (attr_id, type_id, buf)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
hid_t attr_id; IN: Attribute to write
|
2001-04-20 05:48:04 +08:00
|
|
|
|
hid_t type_id; IN: Memory datatype of buffer
|
|
|
|
|
const void *buf; IN: Buffer of data to write
|
1998-04-24 06:24:38 +08:00
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function writes a complete attribute to disk.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
herr_t
|
2001-04-20 05:48:04 +08:00
|
|
|
|
H5Awrite(hid_t attr_id, hid_t type_id, const void *buf)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
|
|
|
|
H5A_t *attr = NULL;
|
|
|
|
|
const H5T_t *mem_type = NULL;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
herr_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Awrite, FAIL)
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
H5TRACE3("e","iix",attr_id,type_id,buf);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (attr = H5I_object_verify(attr_id, H5I_ATTR)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an attribute")
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (mem_type = H5I_object_verify(type_id, H5I_DATATYPE)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data type")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL == buf)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "null attribute buffer")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Go write the actual data to the attribute */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if ((ret_value=H5A_write(attr,mem_type,buf, H5AC_dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_WRITEERROR, FAIL, "unable to write attribute")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Awrite() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5A_write
|
|
|
|
|
PURPOSE
|
|
|
|
|
Actually write out data to an attribute
|
|
|
|
|
USAGE
|
|
|
|
|
herr_t H5A_write (attr, mem_type, buf)
|
|
|
|
|
H5A_t *attr; IN: Attribute to write
|
|
|
|
|
const H5T_t *mem_type; IN: Memory datatype of buffer
|
2001-04-20 05:48:04 +08:00
|
|
|
|
const void *buf; IN: Buffer of data to write
|
1998-04-24 06:24:38 +08:00
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function writes a complete attribute to disk.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
static herr_t
|
2003-02-11 01:26:09 +08:00
|
|
|
|
H5A_write(H5A_t *attr, const H5T_t *mem_type, const void *buf, hid_t dxpl_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-11-19 02:40:09 +08:00
|
|
|
|
uint8_t *tconv_buf = NULL; /* data type conv buffer */
|
1999-03-30 19:38:34 +08:00
|
|
|
|
uint8_t *bkg_buf = NULL; /* temp conversion buffer */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
hssize_t snelmts; /* elements in attribute */
|
2001-01-10 05:22:30 +08:00
|
|
|
|
hsize_t nelmts; /* elements in attribute */
|
1998-12-18 03:35:20 +08:00
|
|
|
|
H5T_path_t *tpath = NULL; /* conversion information*/
|
1998-04-24 06:24:38 +08:00
|
|
|
|
hid_t src_id = -1, dst_id = -1;/* temporary type atoms */
|
|
|
|
|
size_t src_type_size; /* size of source type */
|
|
|
|
|
size_t dst_type_size; /* size of destination type*/
|
2001-11-28 00:29:13 +08:00
|
|
|
|
size_t buf_size; /* desired buffer size */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
int idx; /* index of attribute in object header */
|
1998-06-06 05:03:49 +08:00
|
|
|
|
herr_t ret_value = FAIL;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_write)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
assert(attr);
|
|
|
|
|
assert(mem_type);
|
|
|
|
|
assert(buf);
|
|
|
|
|
|
|
|
|
|
/* Create buffer for data to store on disk */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if((snelmts=H5S_get_simple_extent_npoints (attr->ds))<0)
|
|
|
|
|
HGOTO_ERROR (H5E_ATTR, H5E_CANTCOUNT, FAIL, "dataspace is invalid")
|
|
|
|
|
nelmts=(hsize_t)snelmts;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Get the memory and file datatype sizes */
|
|
|
|
|
src_type_size = H5T_get_size(mem_type);
|
|
|
|
|
dst_type_size = H5T_get_size(attr->dt);
|
|
|
|
|
|
|
|
|
|
/* Get the maximum buffer size needed and allocate it */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
H5_ASSIGN_OVERFLOW(buf_size,nelmts*MAX(src_type_size,dst_type_size),hsize_t,size_t);
|
|
|
|
|
if (NULL==(tconv_buf = H5MM_malloc (buf_size)) || NULL==(bkg_buf = H5MM_calloc(buf_size)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the user's data into the buffer for conversion */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
H5_CHECK_OVERFLOW((src_type_size*nelmts),hsize_t,size_t);
|
2001-01-10 05:22:30 +08:00
|
|
|
|
HDmemcpy(tconv_buf,buf,(size_t)(src_type_size*nelmts));
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-06-06 05:03:49 +08:00
|
|
|
|
/* Convert memory buffer into disk buffer */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
/* Set up type conversion function */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if (NULL == (tpath = H5T_path_find(mem_type, attr->dt, NULL, NULL, dxpl_id))) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_UNSUPPORTED, FAIL, "unable to convert between src and dest data types")
|
2003-05-09 04:09:07 +08:00
|
|
|
|
} else if (!H5T_path_noop(tpath)) {
|
2001-11-28 00:29:13 +08:00
|
|
|
|
if ((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL)))<0 ||
|
|
|
|
|
(dst_id = H5I_register(H5I_DATATYPE, H5T_copy(attr->dt, H5T_COPY_ALL)))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTREGISTER, FAIL, "unable to register types for conversion")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
1998-12-18 03:35:20 +08:00
|
|
|
|
/* Perform data type conversion */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if (H5T_convert(tpath, src_id, dst_id, nelmts, 0, 0, tconv_buf, bkg_buf, dxpl_id)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTENCODE, FAIL, "data type conversion failed")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Free the previous attribute data buffer, if there is one */
|
|
|
|
|
if(attr->data)
|
|
|
|
|
H5MM_xfree(attr->data);
|
|
|
|
|
|
|
|
|
|
/* Look up the attribute for the object */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if((idx=H5A_get_index(&(attr->ent),attr->name,dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_BADVALUE, FAIL, "attribute not found")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Modify the attribute data */
|
|
|
|
|
attr->data=tconv_buf; /* Set the data pointer temporarily */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
if (H5O_modify(&(attr->ent), H5O_ATTR_ID, idx, 0, 1, attr, dxpl_id) < 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "unable to update attribute header messages")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Indicate the the attribute doesn't need fill-values */
|
|
|
|
|
attr->initialized=TRUE;
|
|
|
|
|
|
|
|
|
|
ret_value=SUCCEED;
|
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
/* Release resources */
|
|
|
|
|
if (src_id >= 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5I_dec_ref(src_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
if (dst_id >= 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5I_dec_ref(dst_id);
|
1999-03-30 19:38:34 +08:00
|
|
|
|
if (bkg_buf)
|
2001-01-10 05:22:30 +08:00
|
|
|
|
H5MM_xfree(bkg_buf);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5A_write() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aread
|
|
|
|
|
PURPOSE
|
|
|
|
|
Read in data from an attribute
|
|
|
|
|
USAGE
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
herr_t H5Aread (attr_id, type_id, buf)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
hid_t attr_id; IN: Attribute to read
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
hid_t type_id; IN: Memory datatype of buffer
|
1998-04-24 06:24:38 +08:00
|
|
|
|
void *buf; IN: Buffer for data to read
|
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function reads a complete attribute from disk.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
herr_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aread(hid_t attr_id, hid_t type_id, void *buf)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
H5A_t *attr = NULL;
|
|
|
|
|
const H5T_t *mem_type = NULL;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
herr_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aread, FAIL)
|
[svn-r529] Changes since 19980722
----------------------
./src/H5.c
Handle hid_t of type H5_TEMPBUF, arguments usually called tbuf_id.
Added array tracing where the array rank is stored in a simple
data space. Just use the name of the data space argument when
declaring the array argument:
herr_t
H5Sselect_hyperslab (hid_t space_id, H5S_seloper_t op,
const hssize_t start[/*space_id*/],
const hsize_t _stride[/*space_id*/],
const hsize_t count[/*space_id*/],
const hsize_t _block[/*space_id*/])
and when the program runs you'll see array values printed:
H5Sselect_hyperslab(space=218103813, op=H5S_SELECT_SET,
start=0xbfffef4c {0}, _stride=NULL,
count=0xbfffef44 {64},
_block=NULL) = SUCCEED;
Added more symbolic data types to the tracing output.
./src/H5A.c
./src/H5Apublic.h
./src/H5D.c
./src/H5Dpublic.h
./src/H5F.c
./src/H5Fpublic.h
./src/H5G.c
./src/H5Gpublic.h
./src/H5P.c
./src/H5Ppublic.h
./src/H5S.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Spoint.c
./src/H5Spublic.h
./src/H5Sselect.c
./src/H5Ssimp.c
./src/H5TB.c
./src/H5V.c
Changed some API argument names to be more consistent with
other API functions and to produce better tracing output.
Reformatted some long lines. Indented printf statements.
./tools/h5ls.c
Fixed warnings about unsigned vs. signed comparisons.
1998-07-23 02:45:46 +08:00
|
|
|
|
H5TRACE3("e","iix",attr_id,type_id,buf);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (attr = H5I_object_verify(attr_id, H5I_ATTR)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an attribute")
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (mem_type = H5I_object_verify(type_id, H5I_DATATYPE)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data type")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL == buf)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "null attribute buffer")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Go write the actual data to the attribute */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if ((ret_value=H5A_read(attr,mem_type,buf,H5AC_dxpl_id))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_READERROR, FAIL, "unable to read attribute")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aread() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5A_read
|
|
|
|
|
PURPOSE
|
|
|
|
|
Actually read in data from an attribute
|
|
|
|
|
USAGE
|
|
|
|
|
herr_t H5A_read (attr, mem_type, buf)
|
|
|
|
|
H5A_t *attr; IN: Attribute to read
|
|
|
|
|
const H5T_t *mem_type; IN: Memory datatype of buffer
|
|
|
|
|
void *buf; IN: Buffer for data to read
|
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
1999-03-24 05:48:57 +08:00
|
|
|
|
This function reads a complete attribute from disk.
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
static herr_t
|
2003-07-09 05:05:27 +08:00
|
|
|
|
H5A_read(const H5A_t *attr, const H5T_t *mem_type, void *buf, hid_t dxpl_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-11-19 02:40:09 +08:00
|
|
|
|
uint8_t *tconv_buf = NULL; /* data type conv buffer*/
|
1999-03-30 19:38:34 +08:00
|
|
|
|
uint8_t *bkg_buf = NULL; /* background buffer */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
hssize_t snelmts; /* elements in attribute */
|
2001-01-10 05:22:30 +08:00
|
|
|
|
hsize_t nelmts; /* elements in attribute*/
|
1998-12-18 03:35:20 +08:00
|
|
|
|
H5T_path_t *tpath = NULL; /* type conversion info */
|
1998-06-06 05:03:49 +08:00
|
|
|
|
hid_t src_id = -1, dst_id = -1;/* temporary type atoms*/
|
|
|
|
|
size_t src_type_size; /* size of source type */
|
|
|
|
|
size_t dst_type_size; /* size of destination type */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
size_t buf_size; /* desired buffer size */
|
1998-06-06 05:03:49 +08:00
|
|
|
|
herr_t ret_value = FAIL;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_read)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
assert(attr);
|
|
|
|
|
assert(mem_type);
|
|
|
|
|
assert(buf);
|
|
|
|
|
|
|
|
|
|
/* Create buffer for data to store on disk */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if((snelmts=H5S_get_simple_extent_npoints (attr->ds))<0)
|
|
|
|
|
HGOTO_ERROR (H5E_ATTR, H5E_CANTCOUNT, FAIL, "dataspace is invalid")
|
|
|
|
|
nelmts=(hsize_t)snelmts;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Get the memory and file datatype sizes */
|
|
|
|
|
src_type_size = H5T_get_size(attr->dt);
|
|
|
|
|
dst_type_size = H5T_get_size(mem_type);
|
|
|
|
|
|
1999-03-24 05:48:57 +08:00
|
|
|
|
/* Check if the attribute has any data yet, if not, fill with zeroes */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
H5_CHECK_OVERFLOW((dst_type_size*nelmts),hsize_t,size_t);
|
1999-03-24 05:48:57 +08:00
|
|
|
|
if(attr->ent_opened && !attr->initialized) {
|
2001-01-10 05:22:30 +08:00
|
|
|
|
HDmemset(buf,0,(size_t)(dst_type_size*nelmts));
|
1999-03-24 05:48:57 +08:00
|
|
|
|
} /* end if */
|
|
|
|
|
else { /* Attribute exists and has a value */
|
|
|
|
|
/* Get the maximum buffer size needed and allocate it */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
H5_ASSIGN_OVERFLOW(buf_size,(nelmts*MAX(src_type_size,dst_type_size)),hsize_t,size_t);
|
|
|
|
|
if (NULL==(tconv_buf = H5MM_malloc (buf_size)) || NULL==(bkg_buf = H5MM_calloc(buf_size)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1999-03-24 05:48:57 +08:00
|
|
|
|
/* Copy the attribute data into the buffer for conversion */
|
2001-11-28 00:29:13 +08:00
|
|
|
|
H5_CHECK_OVERFLOW((src_type_size*nelmts),hsize_t,size_t);
|
2001-01-10 05:22:30 +08:00
|
|
|
|
HDmemcpy(tconv_buf,attr->data,(size_t)(src_type_size*nelmts));
|
1999-03-24 05:48:57 +08:00
|
|
|
|
|
|
|
|
|
/* Convert memory buffer into disk buffer */
|
|
|
|
|
/* Set up type conversion function */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if (NULL == (tpath = H5T_path_find(attr->dt, mem_type, NULL, NULL, dxpl_id))) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_UNSUPPORTED, FAIL, "unable to convert between src and dest data types")
|
2003-05-09 04:09:07 +08:00
|
|
|
|
} else if (!H5T_path_noop(tpath)) {
|
2001-11-28 00:29:13 +08:00
|
|
|
|
if ((src_id = H5I_register(H5I_DATATYPE, H5T_copy(attr->dt, H5T_COPY_ALL)))<0 ||
|
|
|
|
|
(dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL)))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTREGISTER, FAIL, "unable to register types for conversion")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-10 05:22:30 +08:00
|
|
|
|
/* Perform data type conversion. */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if (H5T_convert(tpath, src_id, dst_id, nelmts, 0, 0, tconv_buf, bkg_buf, dxpl_id)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTENCODE, FAIL, "data type conversion failed")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1999-03-24 05:48:57 +08:00
|
|
|
|
/* Copy the converted data into the user's buffer */
|
2001-01-10 05:22:30 +08:00
|
|
|
|
HDmemcpy(buf,tconv_buf,(size_t)(dst_type_size*nelmts));
|
1999-03-24 05:48:57 +08:00
|
|
|
|
} /* end else */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ret_value=SUCCEED;
|
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
/* Release resources */
|
|
|
|
|
if (src_id >= 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5I_dec_ref(src_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
if (dst_id >= 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5I_dec_ref(dst_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
if (tconv_buf)
|
|
|
|
|
H5MM_xfree(tconv_buf);
|
1999-03-30 19:38:34 +08:00
|
|
|
|
if (bkg_buf)
|
|
|
|
|
H5MM_xfree(bkg_buf);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5A_read() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aget_space
|
|
|
|
|
PURPOSE
|
|
|
|
|
Gets a copy of the dataspace for an attribute
|
|
|
|
|
USAGE
|
|
|
|
|
hid_t H5Aget_space (attr_id)
|
|
|
|
|
hid_t attr_id; IN: Attribute to get dataspace of
|
|
|
|
|
RETURNS
|
|
|
|
|
A dataspace ID on success, negative on failure
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function retrieves a copy of the dataspace for an attribute.
|
|
|
|
|
The dataspace ID returned from this function must be released with H5Sclose
|
|
|
|
|
or resource leaks will develop.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
hid_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aget_space(hid_t attr_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5A_t *attr = NULL;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
H5S_t *dst = NULL;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
hid_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aget_space, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE1("i","i",attr_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (attr = H5I_object_verify(attr_id, H5I_ATTR)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an attribute")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the attribute's dataspace */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(dst=H5S_copy (attr->ds)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ATTR, H5E_CANTINIT, FAIL, "unable to copy dataspace")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Atomize */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if ((ret_value=H5I_register (H5I_DATASPACE, dst))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace atom")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aget_space() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aget_type
|
|
|
|
|
PURPOSE
|
|
|
|
|
Gets a copy of the datatype for an attribute
|
|
|
|
|
USAGE
|
|
|
|
|
hid_t H5Aget_type (attr_id)
|
|
|
|
|
hid_t attr_id; IN: Attribute to get datatype of
|
|
|
|
|
RETURNS
|
|
|
|
|
A datatype ID on success, negative on failure
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function retrieves a copy of the datatype for an attribute.
|
|
|
|
|
The datatype ID returned from this function must be released with H5Tclose
|
|
|
|
|
or resource leaks will develop.
|
1998-06-05 06:27:11 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 4 Jun 1998
|
|
|
|
|
* The data type is reopened if it's a named type before returning it to
|
1998-06-06 05:03:49 +08:00
|
|
|
|
* the application. The data types returned by this function are always
|
|
|
|
|
* read-only. If an error occurs when atomizing the return data type
|
|
|
|
|
* then the data type is closed.
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
hid_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aget_type(hid_t attr_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
2002-08-09 00:52:55 +08:00
|
|
|
|
H5A_t *attr = NULL;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
H5T_t *dst = NULL;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
hid_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aget_type, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE1("i","i",attr_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (attr = H5I_object_verify(attr_id, H5I_ATTR)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an attribute")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-06-05 06:27:11 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copy the attribute's data type. If the type is a named type then
|
1998-06-06 05:03:49 +08:00
|
|
|
|
* reopen the type before returning it to the user. Make the type
|
|
|
|
|
* read-only.
|
1998-06-05 06:27:11 +08:00
|
|
|
|
*/
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(dst=H5T_copy(attr->dt, H5T_COPY_REOPEN)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "unable to copy datatype")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
1999-06-05 06:27:28 +08:00
|
|
|
|
/* Mark any VL datatypes as being in memory now */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5T_vlen_mark(dst, NULL, H5T_VLEN_MEMORY)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "invalid VL location")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5T_lock(dst, FALSE)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "unable to lock transient data type")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
/* Atomize */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if ((ret_value=H5I_register(H5I_DATATYPE, dst))<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register datatype atom")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
if(ret_value<0) {
|
|
|
|
|
if(dst!=NULL)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5T_close(dst);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
} /* end if */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aget_type() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aget_name
|
|
|
|
|
PURPOSE
|
|
|
|
|
Gets a copy of the name for an attribute
|
|
|
|
|
USAGE
|
1998-10-27 01:25:35 +08:00
|
|
|
|
hssize_t H5Aget_name (attr_id, buf_size, buf)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
hid_t attr_id; IN: Attribute to get name of
|
|
|
|
|
size_t buf_size; IN: The size of the buffer to store the string in.
|
[svn-r537] Changes since 19980722
----------------------
./src/H5A.c
./src/H5Apublic.h
./test/tattr.c
Switched the order of the second and third argument of
H5Aget_name() to make it consistent with other functions that
take buffers and buffer sizes.
./src/H5G.c
./src/H5Gpublic.h
./src/H5Gprivate.h
The H5Gget_comment() function returns the size of the comment
including the null terminator. If the object has no comment
then zero is returned. If an error occurs then a negative
value is returned.
./MANIFEST
./tools/Makefile.in
./tools/h5tools.h [NEW]
./tools/h5dump.c [NEW]
Created a library for printing values of datasets in a way
that looks nice. It's not done yet, but I needed it for
debugging the contents of files from Jim Reus.
./tools/h5ls.c
Added the `-d' and `--dump' options which cause the contents
of a dataset to be printed. Added `-w N' and `--width=N'
options to control how wide the raw data output should be. If
you want single-column output then say `-w1'.
Printing dataset values can now handle datasets of any integer
or floating point atomic type. As a special case, integers
which are one byte wide are treated a character strings for
now.
Sample output:
$ h5ls --dump --width=60 banana.hdf
ARCHIVE 0:0:0:744 Dataset {52/Inf}
Data:
(0) "U struct complex { double R; double I; };\012V"
(43) " double;\012"
U 0:0:0:2500 Dataset {256/512}
Data: printing of compound data types is not implemented yet
V 0:0:0:3928 Dataset {256/512}
Data:
(0) 0, 0.015625, 0.03125, 0.046875, 0.0625,
(5) 0.078125, 0.09375, 0.109375, 0.125, 0.140625,
(10) 0.15625, 0.171875, 0.1875, 0.203125, 0.21875,
(15) 0.234375, 0.25, 0.265625, 0.28125, 0.296875,
...
1998-07-24 05:19:17 +08:00
|
|
|
|
char *buf; IN: Buffer to store name in
|
1998-04-24 06:24:38 +08:00
|
|
|
|
RETURNS
|
|
|
|
|
This function returns the length of the attribute's name (which may be
|
|
|
|
|
longer than 'buf_size') on success or negative for failure.
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function retrieves the name of an attribute for an attribute ID.
|
|
|
|
|
Up to 'buf_size' characters are stored in 'buf' followed by a '\0' string
|
|
|
|
|
terminator. If the name of the attribute is longer than 'buf_size'-1,
|
|
|
|
|
the string terminator is stored in the last position of the buffer to
|
|
|
|
|
properly terminate the string.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
1999-03-13 02:35:04 +08:00
|
|
|
|
ssize_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aget_name(hid_t attr_id, size_t buf_size, char *buf)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5A_t *attr = NULL;
|
1999-03-13 02:35:04 +08:00
|
|
|
|
size_t copy_len, nbytes;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
ssize_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aget_name, FAIL)
|
1999-03-13 02:35:04 +08:00
|
|
|
|
H5TRACE3("Zs","izs",attr_id,buf_size,buf);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == (attr = H5I_object_verify(attr_id, H5I_ATTR)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an attribute")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
if (!buf && buf_size)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid buffer")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* get the real attribute length */
|
1999-03-13 02:35:04 +08:00
|
|
|
|
nbytes = HDstrlen(attr->name);
|
|
|
|
|
assert((ssize_t)nbytes>=0); /*overflow, pretty unlikey --rpm*/
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* compute the string length which will fit into the user's buffer */
|
1999-03-13 02:35:04 +08:00
|
|
|
|
copy_len = MIN(buf_size-1, nbytes);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Copy all/some of the name */
|
2002-10-30 00:37:49 +08:00
|
|
|
|
if(buf && copy_len>0) {
|
|
|
|
|
HDmemcpy(buf, attr->name, copy_len);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-10-30 00:37:49 +08:00
|
|
|
|
/* Terminate the string */
|
|
|
|
|
buf[copy_len]='\0';
|
|
|
|
|
}
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
/* Set return value */
|
1999-03-13 02:35:04 +08:00
|
|
|
|
ret_value = (ssize_t)nbytes;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aget_type() */
|
|
|
|
|
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5Aget_storage_size
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Returns the amount of storage size that is required for this
|
|
|
|
|
* attribute.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: The amount of storage size allocated for the
|
|
|
|
|
* attribute. The return value may be zero
|
|
|
|
|
* if no data has been stored.
|
|
|
|
|
*
|
|
|
|
|
* Failure: Zero
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* October 23, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
hsize_t
|
|
|
|
|
H5Aget_storage_size(hid_t attr_id)
|
|
|
|
|
{
|
|
|
|
|
H5A_t *attr=NULL;
|
|
|
|
|
hsize_t ret_value; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aget_storage_size, 0)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
H5TRACE1("h","i",attr_id);
|
|
|
|
|
|
|
|
|
|
/* Check args */
|
|
|
|
|
if (NULL==(attr=H5I_object_verify(attr_id, H5I_ATTR)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, 0, "not an attribute")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Set return value */
|
|
|
|
|
ret_value = H5A_get_storage_size(attr);
|
|
|
|
|
|
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_get_storage_size
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Private function for H5Aget_storage_size. Returns the
|
|
|
|
|
* amount of storage size that is required for this
|
|
|
|
|
* attribute.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: The amount of storage size allocated for the
|
|
|
|
|
* attribute. The return value may be zero
|
|
|
|
|
* if no data has been stored.
|
|
|
|
|
*
|
|
|
|
|
* Failure: Zero
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* October 23, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-11 01:26:09 +08:00
|
|
|
|
static hsize_t
|
2003-07-09 05:05:27 +08:00
|
|
|
|
H5A_get_storage_size(const H5A_t *attr)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
{
|
|
|
|
|
hsize_t ret_value; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_get_storage_size)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Set return value */
|
|
|
|
|
ret_value = attr->data_size;
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
1998-09-01 11:35:23 +08:00
|
|
|
|
H5Aget_num_attrs
|
1998-04-24 06:24:38 +08:00
|
|
|
|
PURPOSE
|
|
|
|
|
Determines the number of attributes attached to an object
|
|
|
|
|
USAGE
|
1998-09-01 11:35:23 +08:00
|
|
|
|
int H5Aget_num_attrs (loc_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
hid_t loc_id; IN: Object (dataset or group) to be queried
|
|
|
|
|
RETURNS
|
|
|
|
|
Number of attributes on success, negative on failure
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function returns the number of attributes attached to a dataset or
|
|
|
|
|
group, 'location_id'.
|
1998-06-06 05:03:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* The LOC_ID can also be a named (committed) data type.
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
int
|
1998-09-01 11:35:23 +08:00
|
|
|
|
H5Aget_num_attrs(hid_t loc_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5G_entry_t *ent = NULL; /*symtab ent of object to attribute */
|
|
|
|
|
void *obj = NULL;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
int ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aget_num_attrs, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE1("Is","i",loc_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(NULL == (obj = H5I_object(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADATOM, FAIL, "illegal object atom")
|
1998-10-06 07:41:30 +08:00
|
|
|
|
switch (H5I_get_type (loc_id)) {
|
2002-08-09 00:52:55 +08:00
|
|
|
|
case H5I_DATASET:
|
|
|
|
|
ent = H5D_entof ((H5D_t*)obj);
|
|
|
|
|
break;
|
|
|
|
|
case H5I_DATATYPE:
|
|
|
|
|
if (NULL==(ent=H5T_entof ((H5T_t*)obj)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "target data type is not committed")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
break;
|
|
|
|
|
case H5I_GROUP:
|
|
|
|
|
ent = H5G_entof ((H5G_t*)obj);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "inappropriate attribute target")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
}
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Look up the attribute for the object */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
ret_value=H5O_count(ent, H5O_ATTR_ID, H5AC_ind_dxpl_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-09-01 11:35:23 +08:00
|
|
|
|
} /* H5Aget_num_attrs() */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5Arename
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Rename an attribute
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Non-negative
|
|
|
|
|
*
|
|
|
|
|
* Failure: Negative
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* October 23, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
herr_t
|
2002-11-20 20:52:40 +08:00
|
|
|
|
H5Arename(hid_t loc_id, const char *old_name, const char *new_name)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
{
|
|
|
|
|
H5G_entry_t *ent = NULL; /*symtab ent of object to attribute */
|
|
|
|
|
herr_t ret_value; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Arename, FAIL)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
H5TRACE3("e","iss",loc_id,old_name,new_name);
|
|
|
|
|
|
|
|
|
|
/* check arguments */
|
|
|
|
|
if (!old_name || !new_name)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "name is nil")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
if (NULL==(ent=H5G_loc(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Call private function */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
ret_value = H5A_rename(ent, old_name, new_name, H5AC_dxpl_id);
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
2003-02-11 02:44:22 +08:00
|
|
|
|
} /* H5Arename() */
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_rename
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Private function for H5Arename. Rename an attribute
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Non-negative
|
|
|
|
|
*
|
|
|
|
|
* Failure: Negative
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* October 23, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-11 01:26:09 +08:00
|
|
|
|
static herr_t
|
|
|
|
|
H5A_rename(H5G_entry_t *ent, const char *old_name, const char *new_name, hid_t dxpl_id)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
{
|
|
|
|
|
int seq, idx=FAIL; /* Index of attribute being querried */
|
|
|
|
|
H5A_t *found_attr; /* Attribute with OLD_NAME */
|
2002-11-06 00:31:02 +08:00
|
|
|
|
herr_t ret_value=SUCCEED; /* Return value */
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOINIT(H5A_rename)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Check arguments */
|
|
|
|
|
assert(ent);
|
|
|
|
|
assert(old_name);
|
|
|
|
|
assert(new_name);
|
|
|
|
|
|
|
|
|
|
/* Build the attribute information */
|
|
|
|
|
if((found_attr = HDcalloc(1, sizeof(H5A_t)))==NULL)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed for attribute info")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Read in the existing attributes to check for duplicates */
|
|
|
|
|
seq=0;
|
2003-02-17 23:54:15 +08:00
|
|
|
|
while(H5O_read(ent, H5O_ATTR_ID, seq, found_attr, dxpl_id)!=NULL) {
|
2002-10-30 00:37:49 +08:00
|
|
|
|
/*
|
|
|
|
|
* Compare found attribute name.
|
|
|
|
|
*/
|
|
|
|
|
if(HDstrcmp(found_attr->name,old_name)==0) {
|
|
|
|
|
idx = seq;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
seq++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(idx<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "attribute cannot be found")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the attribute name. */
|
|
|
|
|
if(found_attr->name)
|
|
|
|
|
HDfree(found_attr->name);
|
|
|
|
|
found_attr->name = HDstrdup(new_name);
|
|
|
|
|
if(!found_attr->name)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "String copy failed")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Indicate entry is not opened and the attribute doesn't need fill-values. */
|
|
|
|
|
found_attr->ent_opened=FALSE;
|
|
|
|
|
found_attr->initialized=TRUE;
|
|
|
|
|
|
|
|
|
|
/* Modify the attribute message */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
if (H5O_modify(ent, H5O_ATTR_ID, idx, 0, 1, found_attr, dxpl_id) < 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "unable to update attribute header messages")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
/* Close the attribute */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5A_close(found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTRELEASE, FAIL, "unable to close renamed attribute")
|
2002-10-30 00:37:49 +08:00
|
|
|
|
|
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
2002-10-30 00:37:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aiterate
|
|
|
|
|
PURPOSE
|
|
|
|
|
Calls a user's function for each attribute on an object
|
|
|
|
|
USAGE
|
|
|
|
|
herr_t H5Aiterate (loc_id, attr_num, op, data)
|
|
|
|
|
hid_t loc_id; IN: Object (dataset or group) to be iterated over
|
|
|
|
|
unsigned *attr_num; IN/OUT: Starting (IN) & Ending (OUT) attribute number
|
|
|
|
|
H5A_operator_t op; IN: User's function to pass each attribute to
|
|
|
|
|
void *op_data; IN/OUT: User's data to pass through to iterator operator function
|
|
|
|
|
RETURNS
|
|
|
|
|
Returns a negative value if something is wrong, the return value of the
|
|
|
|
|
last operator if it was non-zero, or zero if all attributes were processed.
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function interates over the attributes of dataset or group
|
|
|
|
|
specified with 'loc_id'. For each attribute of the object, the
|
|
|
|
|
'op_data' and some additional information (specified below) are passed
|
|
|
|
|
to the 'op' function. The iteration begins with the '*attr_number'
|
|
|
|
|
object in the group and the next attribute to be processed by the operator
|
|
|
|
|
is returned in '*attr_number'.
|
|
|
|
|
The operation receives the ID for the group or dataset being iterated
|
|
|
|
|
over ('loc_id'), the name of the current attribute about the object
|
|
|
|
|
('attr_name') and the pointer to the operator data passed in to H5Aiterate
|
|
|
|
|
('op_data'). The return values from an operator are:
|
|
|
|
|
A. Zero causes the iterator to continue, returning zero when all
|
|
|
|
|
attributes have been processed.
|
|
|
|
|
B. Positive causes the iterator to immediately return that positive
|
|
|
|
|
value, indicating short-circuit success. The iterator can be
|
|
|
|
|
restarted at the next attribute.
|
|
|
|
|
C. Negative causes the iterator to immediately return that value,
|
|
|
|
|
indicating failure. The iterator can be restarted at the next
|
|
|
|
|
attribute.
|
1998-06-06 05:03:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* The LOC_ID can also be a named (committed) data type.
|
|
|
|
|
*
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* Like the group iterator, if ATTR_NUM is the null pointer then all
|
|
|
|
|
* attributes are processed.
|
|
|
|
|
*
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
2000-04-13 05:09:38 +08:00
|
|
|
|
herr_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op, void *op_data)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5G_entry_t *ent = NULL; /*symtab ent of object to attribute */
|
|
|
|
|
H5A_t found_attr;
|
2003-05-14 02:54:25 +08:00
|
|
|
|
herr_t ret_value = 0;
|
2003-06-23 21:28:21 +08:00
|
|
|
|
int idx, start_idx;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aiterate, FAIL)
|
2000-04-22 02:55:44 +08:00
|
|
|
|
H5TRACE4("e","i*Iuxx",loc_id,attr_num,op,op_data);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(ent=H5G_loc(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-06-06 05:03:49 +08:00
|
|
|
|
/*
|
|
|
|
|
* Look up the attribute for the object. Make certain the start point is
|
|
|
|
|
* reasonable.
|
|
|
|
|
*/
|
2003-07-09 05:05:27 +08:00
|
|
|
|
start_idx = idx = (attr_num ? (int)*attr_num : 0);
|
2003-06-23 21:28:21 +08:00
|
|
|
|
if (idx<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index specified")
|
2003-02-17 23:54:15 +08:00
|
|
|
|
if(idx<H5O_count(ent, H5O_ATTR_ID, H5AC_dxpl_id)) {
|
|
|
|
|
while(H5O_read(ent, H5O_ATTR_ID, idx++, &found_attr, H5AC_dxpl_id)!=NULL) {
|
1998-06-06 05:03:49 +08:00
|
|
|
|
/*
|
|
|
|
|
* Compare found attribute name to new attribute name reject
|
|
|
|
|
* creation if names are the same.
|
|
|
|
|
*/
|
|
|
|
|
if((ret_value=(op)(loc_id,found_attr.name,op_data))!=0) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
}
|
2003-08-09 02:47:43 +08:00
|
|
|
|
H5E_clear(NULL);
|
1998-06-06 05:03:49 +08:00
|
|
|
|
}
|
2003-06-23 21:28:21 +08:00
|
|
|
|
else
|
|
|
|
|
if(start_idx>0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "invalid index specified")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (attr_num)
|
|
|
|
|
*attr_num = (unsigned)idx;
|
|
|
|
|
|
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aiterate() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Adelete
|
|
|
|
|
PURPOSE
|
|
|
|
|
Deletes an attribute from a location
|
|
|
|
|
USAGE
|
|
|
|
|
herr_t H5Adelete (loc_id, name)
|
|
|
|
|
hid_t loc_id; IN: Object (dataset or group) to have attribute deleted from
|
|
|
|
|
const char *name; IN: Name of attribute to delete
|
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function removes the named attribute from a dataset or group.
|
|
|
|
|
This function should not be used when attribute IDs are open on 'loc_id'
|
|
|
|
|
as it may cause the internal indexes of the attributes to change and future
|
|
|
|
|
writes to the open attributes to produce incorrect results.
|
1998-06-06 05:03:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
* Robb Matzke, 5 Jun 1998
|
|
|
|
|
* The LOC_ID can also be a named (committed) data type.
|
|
|
|
|
*
|
1998-04-24 06:24:38 +08:00
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
herr_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Adelete(hid_t loc_id, const char *name)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
1998-06-06 05:03:49 +08:00
|
|
|
|
H5A_t found_attr;
|
|
|
|
|
H5G_entry_t *ent = NULL; /*symtab ent of object to attribute */
|
2001-08-15 06:09:56 +08:00
|
|
|
|
int idx=0, found=-1;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
herr_t ret_value;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aopen_name, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE2("e","is",loc_id,name);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (H5I_FILE==H5I_get_type(loc_id) || H5I_ATTR==H5I_get_type(loc_id))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "location is not valid for an attribute")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(ent=H5G_loc(loc_id)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (!name || !*name)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Look up the attribute for the object */
|
|
|
|
|
idx=0;
|
2003-02-17 23:54:15 +08:00
|
|
|
|
while(H5O_read(ent, H5O_ATTR_ID, idx, &found_attr, H5AC_dxpl_id)!=NULL) {
|
1998-05-01 13:16:50 +08:00
|
|
|
|
/*
|
|
|
|
|
* Compare found attribute name to new attribute name reject
|
|
|
|
|
* creation if names are the same.
|
|
|
|
|
*/
|
|
|
|
|
if(HDstrcmp(found_attr.name,name)==0) {
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-05-01 13:16:50 +08:00
|
|
|
|
found = idx;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_reset (H5O_ATTR_ID, &found_attr)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTFREE, FAIL, "can't release attribute info")
|
1998-05-01 13:16:50 +08:00
|
|
|
|
idx++;
|
1998-06-06 05:03:49 +08:00
|
|
|
|
}
|
2003-08-09 02:47:43 +08:00
|
|
|
|
H5E_clear(NULL);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (found<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_NOTFOUND, FAIL, "attribute not found")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Delete the attribute from the location */
|
2003-02-17 23:54:15 +08:00
|
|
|
|
if ((ret_value=H5O_remove(ent, H5O_ATTR_ID, found, H5AC_dxpl_id)) < 0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTDELETE, FAIL, "unable to delete attribute header message")
|
1998-06-06 05:03:49 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Adelete() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
NAME
|
|
|
|
|
H5Aclose
|
|
|
|
|
PURPOSE
|
|
|
|
|
Close an attribute ID
|
|
|
|
|
USAGE
|
|
|
|
|
herr_t H5Aclose (attr_id)
|
|
|
|
|
hid_t attr_id; IN: Attribute to release access to
|
|
|
|
|
RETURNS
|
1998-10-27 05:18:54 +08:00
|
|
|
|
Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
This function releases an attribute from use. Further use of the
|
|
|
|
|
attribute ID will result in undefined behavior.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
herr_t
|
1998-08-28 00:48:50 +08:00
|
|
|
|
H5Aclose(hid_t attr_id)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
{
|
2002-08-09 00:52:55 +08:00
|
|
|
|
herr_t ret_value=SUCCEED; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_API(H5Aclose, FAIL)
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
H5TRACE1("e","i",attr_id);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check arguments */
|
2002-08-01 03:17:12 +08:00
|
|
|
|
if (NULL == H5I_object_verify(attr_id, H5I_ATTR))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an attribute")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-04-28 21:59:08 +08:00
|
|
|
|
/* Decrement references to that atom (and close it) */
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5I_dec_ref (attr_id)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTDEC, FAIL, "can't close attribute")
|
2002-08-01 03:17:12 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_API(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
} /* H5Aclose() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_copy
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Copies attribute OLD_ATTR.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Pointer to a new copy of the OLD_ATTR argument.
|
|
|
|
|
*
|
|
|
|
|
* Failure: NULL
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Thursday, December 4, 1997
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
H5A_t *
|
|
|
|
|
H5A_copy(const H5A_t *old_attr)
|
|
|
|
|
{
|
|
|
|
|
H5A_t *new_attr=NULL;
|
2002-08-09 00:52:55 +08:00
|
|
|
|
H5A_t *ret_value=NULL; /* Return value */
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOAPI(H5A_copy, NULL)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* check args */
|
|
|
|
|
assert(old_attr);
|
|
|
|
|
|
|
|
|
|
/* get space */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(new_attr = H5MM_calloc(sizeof(H5A_t))))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Copy the top level of the attribute */
|
|
|
|
|
*new_attr = *old_attr;
|
|
|
|
|
|
|
|
|
|
/* Don't open the object header for a copy */
|
|
|
|
|
new_attr->ent_opened=0;
|
|
|
|
|
|
|
|
|
|
/* Copy the guts of the attribute */
|
|
|
|
|
new_attr->name=HDstrdup(old_attr->name);
|
1998-06-05 06:27:11 +08:00
|
|
|
|
new_attr->dt=H5T_copy(old_attr->dt, H5T_COPY_ALL);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
new_attr->ds=H5S_copy(old_attr->ds);
|
|
|
|
|
if(old_attr->data) {
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL==(new_attr->data=H5MM_malloc(old_attr->data_size)))
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
HDmemcpy(new_attr->data,old_attr->data,old_attr->data_size);
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
1998-06-06 05:03:49 +08:00
|
|
|
|
#ifndef LATER
|
1998-04-24 06:24:38 +08:00
|
|
|
|
/* Copy the share info? */
|
1998-06-06 05:03:49 +08:00
|
|
|
|
#endif
|
2002-08-09 00:52:55 +08:00
|
|
|
|
|
|
|
|
|
/* Set the return value */
|
|
|
|
|
ret_value=new_attr;
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
|
|
|
|
if(ret_value==NULL) {
|
|
|
|
|
if(new_attr!=NULL)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
(void)H5A_close(new_attr);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
} /* end if */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_close
|
|
|
|
|
*
|
2002-10-30 00:37:49 +08:00
|
|
|
|
* Purpose: Frees an attribute and all associated memory.
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*
|
1998-10-27 05:18:54 +08:00
|
|
|
|
* Return: Non-negative on success/Negative on failure
|
1998-04-24 06:24:38 +08:00
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Monday, December 8, 1997
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
herr_t
|
|
|
|
|
H5A_close(H5A_t *attr)
|
|
|
|
|
{
|
2002-08-09 00:52:55 +08:00
|
|
|
|
herr_t ret_value=SUCCEED; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOAPI(H5A_close, FAIL)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
assert(attr);
|
|
|
|
|
|
1998-04-28 21:59:08 +08:00
|
|
|
|
/* Check if the attribute has any data yet, if not, fill with zeroes */
|
|
|
|
|
if(attr->ent_opened && !attr->initialized) {
|
1998-11-19 02:40:09 +08:00
|
|
|
|
uint8_t *tmp_buf=H5MM_calloc(attr->data_size);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if (NULL == tmp_buf)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_NOSPACE, FAIL, "memory allocation failed for attribute fill-value")
|
1998-04-28 21:59:08 +08:00
|
|
|
|
|
|
|
|
|
/* Go write the fill data to the attribute */
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if (H5A_write(attr,attr->dt,tmp_buf,H5AC_dxpl_id)<0)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_WRITEERROR, FAIL, "unable to write attribute")
|
1998-04-28 21:59:08 +08:00
|
|
|
|
|
|
|
|
|
/* Free temporary buffer */
|
|
|
|
|
H5MM_xfree(tmp_buf);
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
1998-04-24 06:24:38 +08:00
|
|
|
|
/* Free dynamicly allocated items */
|
|
|
|
|
if(attr->name)
|
|
|
|
|
H5MM_xfree(attr->name);
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(attr->dt)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5T_close(attr->dt)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTRELEASE, FAIL, "can't release datatype info")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(attr->ds)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5S_close(attr->ds)<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTRELEASE, FAIL, "can't release dataspace info")
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(attr->data)
|
|
|
|
|
H5MM_xfree(attr->data);
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
/* Close the object's symbol-table entry */
|
2002-08-09 00:52:55 +08:00
|
|
|
|
if(attr->ent_opened)
|
2003-07-09 05:05:27 +08:00
|
|
|
|
if(H5O_close(&(attr->ent))<0)
|
|
|
|
|
HGOTO_ERROR(H5E_ATTR, H5E_CANTRELEASE, FAIL, "can't release object header info")
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
1998-06-06 05:03:49 +08:00
|
|
|
|
#ifndef LATER
|
|
|
|
|
/* Do something with the shared information? */
|
|
|
|
|
#endif
|
1998-04-24 06:24:38 +08:00
|
|
|
|
|
|
|
|
|
H5MM_xfree(attr);
|
|
|
|
|
|
2002-08-09 00:52:55 +08:00
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-04-24 06:24:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
1998-08-07 05:32:33 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: H5A_entof
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Return the symbol table entry for an attribute. It's the
|
|
|
|
|
* symbol table entry for the object to which the attribute
|
|
|
|
|
* belongs, not the attribute itself.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Ptr to entry
|
|
|
|
|
*
|
|
|
|
|
* Failure: NULL
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Thursday, August 6, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
H5G_entry_t *
|
|
|
|
|
H5A_entof(H5A_t *attr)
|
|
|
|
|
{
|
2002-08-10 04:48:23 +08:00
|
|
|
|
H5G_entry_t *ret_value; /* Return value */
|
|
|
|
|
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_ENTER_NOAPI(H5A_entof, NULL)
|
1998-08-07 05:32:33 +08:00
|
|
|
|
assert(attr);
|
2002-08-10 04:48:23 +08:00
|
|
|
|
|
|
|
|
|
/* Set return value */
|
|
|
|
|
ret_value=&(attr->ent);
|
|
|
|
|
|
|
|
|
|
done:
|
2003-07-09 05:05:27 +08:00
|
|
|
|
FUNC_LEAVE_NOAPI(ret_value)
|
1998-08-07 05:32:33 +08:00
|
|
|
|
}
|