mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
37cfaf1665
---------------------- ./src/H5.c Fixed more dependency problems in H5_term_library(). There was a bug in the previous version that could cause the wrong EOF marker to be written to the boot block under certain circumstances. Hopefully this fixes it although I don't ready access to a test case (Mark Miller will test it). ./src/H5F.c ./src/H5Fprivate.h Added an H5F_close_all() that is similar to H5F_term_interface() but which doesn't close the interface. Files that don't have open object headers are closed, others are delayed until all object headers close. All files are flushed. ./src/H5ACprivate.h ./src/H5Bprivate.h ./src/H5Dprivate.h ./src/H5Eprivate.h ./src/H5Fprivate.h ./src/H5Gpkg.h ./src/H5Gprivate.h ./src/H5Gpublic.h ./src/H5HGprivate.h ./src/H5HLprivate.h ./src/H5Iprivate.h ./src/H5MFprivate.h ./src/H5MMprivate.h ./src/H5Oprivate.h ./src/H5Pprivate.h ./src/H5Ppublic.h ./src/H5RAprivate.h ./src/H5Sprivate.h ./src/H5Spublic.h ./src/H5Tpkg.h ./src/H5Tprivate.h ./src/H5Tpublic.h ./src/H5Vprivate.h ./src/H5Zprivate.h ./src/H5private.h ./src/H5public.h Reindented after __DLL__ was added.
95 lines
3.3 KiB
C
95 lines
3.3 KiB
C
/*-------------------------------------------------------------------------
|
|
* Copyright (C) 1997 National Center for Supercomputing Applications.
|
|
* All rights reserved.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*
|
|
* Created: H5Gproto.h
|
|
* Jul 11 1997
|
|
* Robb Matzke <matzke@llnl.gov>
|
|
*
|
|
* Purpose: Public declarations for the H5G package (symbol
|
|
* tables).
|
|
*
|
|
* Modifications:
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _H5Gpublic_H
|
|
#define _H5Gpublic_H
|
|
|
|
/* Public headers needed by this file */
|
|
#include <sys/types.h>
|
|
#include <H5public.h>
|
|
#include <H5Ipublic.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Types of links */
|
|
typedef enum H5G_link_t {
|
|
H5G_LINK_ERROR = -1,
|
|
H5G_LINK_HARD = 0,
|
|
H5G_LINK_SOFT = 1
|
|
} H5G_link_t;
|
|
|
|
/*
|
|
* An object has a certain type. The first few numbers are reserved for use
|
|
* internally by HDF5. Users may add their own types with higher values. The
|
|
* values are never stored in the file -- they only exist while an
|
|
* application is running. An object may satisfy the `isa' function for more
|
|
* than one type.
|
|
*/
|
|
#define H5G_UNKNOWN (-1) /* Unknown object type */
|
|
#define H5G_LINK 0 /* Object is a symbolic link */
|
|
#define H5G_GROUP 1 /* Object is a group */
|
|
#define H5G_DATASET 2 /* Object is a dataset */
|
|
#define H5G_TYPE 3 /* Object is a named data type */
|
|
#define H5G_RAGGED 4 /* Object is a ragged array */
|
|
#define H5G_RESERVED_5 5 /* Reserved for future use */
|
|
#define H5G_RESERVED_6 6 /* Reserved for future use */
|
|
#define H5G_RESERVED_7 7 /* Reserved for future use */
|
|
|
|
#define H5G_NTYPES 256 /* Max possible number of types */
|
|
#define H5G_NLIBTYPES 8 /* Number of internal types */
|
|
#define H5G_NUSERTYPES (H5G_NTYPES-H5G_NLIBTYPES)
|
|
#define H5G_USERTYPE(X) (8+(X)) /* User defined types */
|
|
|
|
/* Information about an object */
|
|
typedef struct H5G_stat_t {
|
|
unsigned long fileno[2]; /*file number */
|
|
unsigned long objno[2]; /*object number */
|
|
unsigned nlink; /*number of hard links to object*/
|
|
int type; /*basic object type */
|
|
time_t mtime; /*modification time */
|
|
size_t linklen; /*symbolic link value length */
|
|
} H5G_stat_t;
|
|
|
|
|
|
typedef herr_t (*H5G_iterate_t)(hid_t group, const char *name,
|
|
void *op_data);
|
|
|
|
__DLL__ hid_t H5Gcreate(hid_t loc_id, const char *name, size_t size_hint);
|
|
__DLL__ hid_t H5Gopen(hid_t loc_id, const char *name);
|
|
__DLL__ herr_t H5Gclose(hid_t group_id);
|
|
__DLL__ herr_t H5Giterate(hid_t loc_id, const char *name, int *idx,
|
|
H5G_iterate_t op, void *op_data);
|
|
__DLL__ herr_t H5Gmove(hid_t loc_id, const char *src, const char *dst);
|
|
__DLL__ herr_t H5Glink(hid_t loc_id, H5G_link_t type, const char *cur_name,
|
|
const char *new_name);
|
|
__DLL__ herr_t H5Gunlink(hid_t loc_id, const char *name);
|
|
__DLL__ herr_t H5Gget_objinfo(hid_t loc_id, const char *name,
|
|
hbool_t follow_link, H5G_stat_t *statbuf/*out*/);
|
|
__DLL__ herr_t H5Gget_linkval(hid_t loc_id, const char *name, size_t size,
|
|
char *buf/*out*/);
|
|
__DLL__ herr_t H5Gset_comment(hid_t loc_id, const char *name,
|
|
const char *comment);
|
|
__DLL__ int H5Gget_comment(hid_t loc_id, const char *name, size_t bufsize,
|
|
char *buf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|