mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
Cleans up hsize_t and haddr_t size guessing (#709)
* Cleans up definitions of haddr_t and hsize_t + cruft removal * Formatted source
This commit is contained in:
parent
5e4625c04f
commit
88a83d56c0
169
src/H5public.h
169
src/H5public.h
@ -217,7 +217,14 @@ typedef int herr_t;
|
||||
typedef bool hbool_t;
|
||||
typedef int htri_t;
|
||||
|
||||
/* Define the ssize_t type if it not is defined */
|
||||
/* The signed version of size_t
|
||||
*
|
||||
* ssize_t is POSIX and not defined in any C standard. It's used in some
|
||||
* public HDF5 API calls so this work-around will define it if it's not
|
||||
* present.
|
||||
*
|
||||
* Use of ssize_t should be discouraged in new code.
|
||||
*/
|
||||
#if H5_SIZEOF_SSIZE_T == 0
|
||||
/* Undefine this size, we will re-define it in one of the sections below */
|
||||
#undef H5_SIZEOF_SSIZE_T
|
||||
@ -235,137 +242,47 @@ typedef long long ssize_t;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* int64_t type is used for creation order field for links. It may be
|
||||
* defined in Posix.1g, otherwise it is defined here.
|
||||
/**
|
||||
* The size of file objects.
|
||||
*
|
||||
* \internal Defined as a (minimum) 64-bit integer type.
|
||||
*/
|
||||
#if H5_SIZEOF_INT64_T >= 8
|
||||
#elif H5_SIZEOF_INT >= 8
|
||||
typedef int int64_t;
|
||||
#undef H5_SIZEOF_INT64_T
|
||||
#define H5_SIZEOF_INT64_T H5_SIZEOF_INT
|
||||
#elif H5_SIZEOF_LONG >= 8
|
||||
typedef long int64_t;
|
||||
#undef H5_SIZEOF_INT64_T
|
||||
#define H5_SIZEOF_INT64_T H5_SIZEOF_LONG
|
||||
#elif H5_SIZEOF_LONG_LONG >= 8
|
||||
typedef long long int64_t;
|
||||
#undef H5_SIZEOF_INT64_T
|
||||
#define H5_SIZEOF_INT64_T H5_SIZEOF_LONG_LONG
|
||||
#else
|
||||
#error "nothing appropriate for int64_t"
|
||||
#endif
|
||||
typedef uint64_t hsize_t;
|
||||
/**
|
||||
* The size of file objects. Used when negative values are needed to indicate errors.
|
||||
*
|
||||
* \internal Defined as a (minimum) 64-bit integer type. Use of hssize_t
|
||||
* should be discouraged in new code.
|
||||
*/
|
||||
typedef int64_t hssize_t;
|
||||
#define PRIdHSIZE PRId64
|
||||
#define PRIiHSIZE PRIi64
|
||||
#define PRIoHSIZE PRIo64
|
||||
#define PRIuHSIZE PRIu64
|
||||
#define PRIxHSIZE PRIx64
|
||||
#define PRIXHSIZE PRIX64
|
||||
#define H5_SIZEOF_HSIZE_T 8
|
||||
#define H5_SIZEOF_HSSIZE_T 8
|
||||
#define HSIZE_UNDEF UINT64_MAX
|
||||
|
||||
/* uint64_t type is used for fields for H5O_info_t. It may be
|
||||
* defined in Posix.1g, otherwise it is defined here.
|
||||
/**
|
||||
* The address of an object in the file.
|
||||
*
|
||||
* \internal Defined as a (minimum) 64-bit unsigned integer type.
|
||||
*/
|
||||
#if H5_SIZEOF_UINT64_T >= 8
|
||||
#ifndef UINT64_MAX
|
||||
#define UINT64_MAX ((uint64_t)-1)
|
||||
#endif
|
||||
#elif H5_SIZEOF_INT >= 8
|
||||
typedef unsigned uint64_t;
|
||||
#define UINT64_MAX UINT_MAX
|
||||
#undef H5_SIZEOF_UINT64_T
|
||||
#define H5_SIZEOF_UINT64_T H5_SIZEOF_INT
|
||||
#elif H5_SIZEOF_LONG >= 8
|
||||
typedef unsigned long uint64_t;
|
||||
#define UINT64_MAX ULONG_MAX
|
||||
#undef H5_SIZEOF_UINT64_T
|
||||
#define H5_SIZEOF_UINT64_T H5_SIZEOF_LONG
|
||||
#elif H5_SIZEOF_LONG_LONG >= 8
|
||||
typedef unsigned long long uint64_t;
|
||||
#define UINT64_MAX ULLONG_MAX
|
||||
#undef H5_SIZEOF_UINT64_T
|
||||
#define H5_SIZEOF_UINT64_T H5_SIZEOF_LONG_LONG
|
||||
#else
|
||||
#error "nothing appropriate for uint64_t"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The sizes of file objects have their own types defined here, use a minimum
|
||||
* 64-bit type.
|
||||
*/
|
||||
#if H5_SIZEOF_LONG_LONG >= 8
|
||||
H5_GCC_DIAG_OFF("long-long")
|
||||
typedef unsigned long long hsize_t;
|
||||
typedef signed long long hssize_t;
|
||||
H5_GCC_DIAG_ON("long-long")
|
||||
#define PRIdHSIZE H5_PRINTF_LL_WIDTH "d"
|
||||
#define PRIiHSIZE H5_PRINTF_LL_WIDTH "i"
|
||||
#define PRIoHSIZE H5_PRINTF_LL_WIDTH "o"
|
||||
#define PRIuHSIZE H5_PRINTF_LL_WIDTH "u"
|
||||
#define PRIxHSIZE H5_PRINTF_LL_WIDTH "x"
|
||||
#define PRIXHSIZE H5_PRINTF_LL_WIDTH "X"
|
||||
#define H5_SIZEOF_HSIZE_T H5_SIZEOF_LONG_LONG
|
||||
#define H5_SIZEOF_HSSIZE_T H5_SIZEOF_LONG_LONG
|
||||
#define HSIZE_UNDEF ULLONG_MAX
|
||||
#else
|
||||
#error "nothing appropriate for hsize_t"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* File addresses have their own types.
|
||||
*/
|
||||
#if H5_SIZEOF_INT >= 8
|
||||
typedef unsigned haddr_t;
|
||||
#define HADDR_UNDEF UINT_MAX
|
||||
#define H5_SIZEOF_HADDR_T H5_SIZEOF_INT
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
#define HADDR_AS_MPI_TYPE MPI_UNSIGNED
|
||||
#endif /* H5_HAVE_PARALLEL */
|
||||
#define PRIdHADDR "d"
|
||||
#define PRIoHADDR "o"
|
||||
#define PRIuHADDR "u"
|
||||
#define PRIxHADDR "x"
|
||||
#define PRIXHADDR "X"
|
||||
#elif H5_SIZEOF_LONG >= 8
|
||||
typedef unsigned long haddr_t;
|
||||
#define HADDR_UNDEF ULONG_MAX
|
||||
#define H5_SIZEOF_HADDR_T H5_SIZEOF_LONG
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
#define HADDR_AS_MPI_TYPE MPI_UNSIGNED_LONG
|
||||
#endif /* H5_HAVE_PARALLEL */
|
||||
#define PRIdHADDR "ld"
|
||||
#define PRIoHADDR "lo"
|
||||
#define PRIuHADDR "lu"
|
||||
#define PRIxHADDR "lx"
|
||||
#define PRIXHADDR "lX"
|
||||
#elif H5_SIZEOF_LONG_LONG >= 8
|
||||
typedef unsigned long long haddr_t;
|
||||
#define HADDR_UNDEF ULLONG_MAX
|
||||
#define H5_SIZEOF_HADDR_T H5_SIZEOF_LONG_LONG
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
#define HADDR_AS_MPI_TYPE MPI_LONG_LONG_INT
|
||||
#endif /* H5_HAVE_PARALLEL */
|
||||
#define PRIdHADDR H5_PRINTF_LL_WIDTH "d"
|
||||
#define PRIoHADDR H5_PRINTF_LL_WIDTH "o"
|
||||
#define PRIuHADDR H5_PRINTF_LL_WIDTH "u"
|
||||
#define PRIxHADDR H5_PRINTF_LL_WIDTH "x"
|
||||
#define PRIXHADDR H5_PRINTF_LL_WIDTH "X"
|
||||
#else
|
||||
#error "nothing appropriate for haddr_t"
|
||||
#endif
|
||||
typedef uint64_t haddr_t;
|
||||
#define PRIdHADDR PRId64
|
||||
#define PRIoHADDR PRIo64
|
||||
#define PRIuHADDR PRIu64
|
||||
#define PRIxHADDR PRIx64
|
||||
#define PRIXHADDR PRIX64
|
||||
#define H5_SIZEOF_HADDR_T 8
|
||||
#define HADDR_UNDEF UINT64_MAX
|
||||
#define H5_PRINTF_HADDR_FMT "%" PRIuHADDR
|
||||
#define HADDR_MAX (HADDR_UNDEF - 1)
|
||||
|
||||
/* uint32_t type is used for creation order field for messages. It may be
|
||||
* defined in Posix.1g, otherwise it is defined here.
|
||||
*/
|
||||
#if H5_SIZEOF_UINT32_T >= 4
|
||||
#elif H5_SIZEOF_SHORT >= 4
|
||||
typedef short uint32_t;
|
||||
#undef H5_SIZEOF_UINT32_T
|
||||
#define H5_SIZEOF_UINT32_T H5_SIZEOF_SHORT
|
||||
#elif H5_SIZEOF_INT >= 4
|
||||
typedef unsigned int uint32_t;
|
||||
#undef H5_SIZEOF_UINT32_T
|
||||
#define H5_SIZEOF_UINT32_T H5_SIZEOF_INT
|
||||
#elif H5_SIZEOF_LONG >= 4
|
||||
typedef unsigned long uint32_t;
|
||||
#undef H5_SIZEOF_UINT32_T
|
||||
#define H5_SIZEOF_UINT32_T H5_SIZEOF_LONG
|
||||
#else
|
||||
#error "nothing appropriate for uint32_t"
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
#define HADDR_AS_MPI_TYPE MPI_LONG_LONG_INT
|
||||
#endif
|
||||
|
||||
//! <!-- [H5_iter_order_t_snip] -->
|
||||
|
Loading…
Reference in New Issue
Block a user