summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c225
1 files changed, 101 insertions, 124 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index ab62038..df4531e 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -21,25 +21,59 @@
*
* Purpose: File memory management functions.
*
- * Modifications:
- * Robb Matzke, 5 Aug 1997
- * Added calls to H5E.
- *
- * Robb Matzke, 8 Jun 1998
- * Implemented a very simple free list which is not persistent and which
- * is lossy.
- *
*-------------------------------------------------------------------------
*/
+
+/****************/
+/* Module Setup */
+/****************/
+
#define H5F_PACKAGE /*suppress error about including H5Fpkg */
-#include "H5private.h"
-#include "H5Eprivate.h"
-#include "H5Fpkg.h"
-#include "H5FDprivate.h"
-#include "H5MFprivate.h"
-#include "H5FDmulti.h" /*multiple files partitioned by mem usage */
+/***********/
+/* Headers */
+/***********/
+#include "H5private.h" /* Generic Functions */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5Fpkg.h" /* File access */
+#include "H5MFprivate.h" /* File memory management */
+
+
+/****************/
+/* Local Macros */
+/****************/
+
+
+/******************/
+/* Local Typedefs */
+/******************/
+
+
+/********************/
+/* Package Typedefs */
+/********************/
+
+
+/********************/
+/* Local Prototypes */
+/********************/
+static hbool_t H5MF_alloc_overflow(const H5F_t *f, hsize_t size);
+
+
+/*********************/
+/* Package Variables */
+/*********************/
+
+
+/*****************************/
+/* Library Private Variables */
+/*****************************/
+
+
+/*******************/
+/* Local Variables */
+/*******************/
/*-------------------------------------------------------------------------
@@ -51,16 +85,12 @@
* is being requested.
*
* Return: Success: The file address of new chunk.
- *
* Failure: HADDR_UNDEF
*
* Programmer: Robb Matzke
* matzke@llnl.gov
* Jul 11 1997
*
- * Modifications:
- * Robb Matzke, 1999-08-04
- * Modified to work with the virtual file layer.
*-------------------------------------------------------------------------
*/
haddr_t
@@ -68,33 +98,29 @@ H5MF_alloc(const H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, hsize_t size)
{
haddr_t ret_value;
- FUNC_ENTER_NOAPI(H5MF_alloc, HADDR_UNDEF);
+ FUNC_ENTER_NOAPI(H5MF_alloc, HADDR_UNDEF)
/* check arguments */
- assert(f);
- assert(size > 0);
+ HDassert(f);
+ HDassert(size > 0);
/* Fail if we don't have write access */
- if (0==(f->intent & H5F_ACC_RDWR))
- HGOTO_ERROR(H5E_RESOURCE, H5E_CANTINIT, HADDR_UNDEF, "file is read-only");
-
- /* Check that the file can address the new space */
- if( H5MF_alloc_overflow(f, size) )
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, HADDR_UNDEF, "not enough address space in file");
+ if(0 == (f->intent & H5F_ACC_RDWR))
+ HGOTO_ERROR(H5E_RESOURCE, H5E_CANTINIT, HADDR_UNDEF, "file is read-only")
/* Allocate space from the virtual file layer */
- if (HADDR_UNDEF==(ret_value=H5FD_alloc(f->shared->lf, type, dxpl_id, size)))
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, HADDR_UNDEF, "file allocation failed");
+ if(HADDR_UNDEF == (ret_value = H5FD_alloc(f->shared->lf, type, dxpl_id, size)))
+ HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, HADDR_UNDEF, "file allocation failed")
/* Convert absolute file address to relative file address */
- assert(ret_value>=f->shared->base_addr);
+ HDassert(ret_value >= f->shared->base_addr);
/* Set return value */
ret_value -= f->shared->base_addr;
done:
- FUNC_LEAVE_NOAPI(ret_value);
-}
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5MF_alloc() */
/*-------------------------------------------------------------------------
@@ -109,44 +135,35 @@ done:
* matzke@llnl.gov
* Jul 17 1997
*
- * Modifications:
- * Robb Matzke, 1999-07-28
- * The ADDR argument is passed by value
- *
- * Robb Matzke, 1999-08-03
- * Modified to use the virtual file layer.
*-------------------------------------------------------------------------
*/
herr_t
H5MF_xfree(const H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, hsize_t size)
{
- herr_t ret_value=SUCCEED; /* Return value */
+ herr_t ret_value = SUCCEED; /* Return value */
- FUNC_ENTER_NOAPI_NOFUNC(H5MF_xfree);
+ FUNC_ENTER_NOAPI_NOFUNC(H5MF_xfree)
/* check arguments */
- assert(f);
- if (!H5F_addr_defined(addr) || 0 == size)
+ HDassert(f);
+ if(!H5F_addr_defined(addr) || 0 == size)
HGOTO_DONE(SUCCEED);
- assert(addr!=0);
+ HDassert(addr != 0);
/* Convert relative address to absolute address */
addr += f->shared->base_addr;
/* Allow virtual file layer to free block */
- if (H5FD_free(f->shared->lf, type, dxpl_id, addr, size)<0) {
+ if(H5FD_free(f->shared->lf, type, dxpl_id, addr, size) < 0) {
#ifdef H5MF_DEBUG
- if (H5DEBUG(MF)) {
- fprintf(H5DEBUG(MF),
- "H5MF_free: lost %lu bytes of file storage\n",
- (unsigned long)size);
- }
+ if(H5DEBUG(MF))
+ fprintf(H5DEBUG(MF), "H5MF_free: lost %lu bytes of file storage\n", (unsigned long)size);
#endif
- }
+ } /* end if */
done:
- FUNC_LEAVE_NOAPI(ret_value);
-}
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5MF_xfree() */
/*-------------------------------------------------------------------------
@@ -169,19 +186,11 @@ done:
* circumstances the library may return the same address.
*
* Return: Success: The relative file address of the new block.
- *
* Failure: HADDR_UNDEF
*
* Programmer: Robb Matzke
* Thursday, April 16, 1998
*
- * Modifications:
- * Robb Matzke, 1999-07-28
- * The ORIG_ADDR is passed by value. The name of NEW_ADDR has
- * been changed to NEW_ADDR_P
- *
- * Robb Matzke, 1999-08-04
- * Modified to work with the virtual file layer.
*-------------------------------------------------------------------------
*/
haddr_t
@@ -190,31 +199,25 @@ H5MF_realloc(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t old_addr, hsize_t
{
haddr_t ret_value;
- FUNC_ENTER_NOAPI(H5MF_realloc, HADDR_UNDEF);
+ FUNC_ENTER_NOAPI(H5MF_realloc, HADDR_UNDEF)
/* Convert old relative address to absolute address */
old_addr += f->shared->base_addr;
- /* Check that the file can address the new space. */
- /* In the worst case, this means adding new_size bytes to the end of the file. */
- if( H5MF_alloc_overflow(f, new_size) )
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, HADDR_UNDEF, "not enough address space in file");
-
/* Reallocate memory from the virtual file layer */
- ret_value = H5FD_realloc(f->shared->lf, type, dxpl_id, old_addr, old_size,
- new_size);
- if (HADDR_UNDEF==ret_value)
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, HADDR_UNDEF, "unable to allocate new file memory");
+ ret_value = H5FD_realloc(f->shared->lf, type, dxpl_id, old_addr, old_size, new_size);
+ if(HADDR_UNDEF == ret_value)
+ HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, HADDR_UNDEF, "unable to allocate new file memory")
/* Convert return value to relative address */
- assert(ret_value>=f->shared->base_addr);
+ HDassert(ret_value >= f->shared->base_addr);
/* Set return value */
ret_value -= f->shared->base_addr;
done:
- FUNC_LEAVE_NOAPI(ret_value);
-}
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5MF_realloc() */
/*-------------------------------------------------------------------------
@@ -224,8 +227,8 @@ done:
* F is the file whose space is being allocated, SIZE is the amount
* of space needed.
*
- * Return: 0 if no overflow would result
- * 1 if overflow would result (the allocation should not be allowed)
+ * Return: FALSE if no overflow would result
+ * TRUE if overflow would result (the allocation should not be allowed)
*
* Programmer: James Laird
* Nat Furrer
@@ -233,46 +236,33 @@ done:
*
*-------------------------------------------------------------------------
*/
-hbool_t
+static hbool_t
H5MF_alloc_overflow(const H5F_t *f, hsize_t size)
{
- hsize_t space_needed = 0; /* Accumulator variable */
- size_t c; /* Local index variable */
- hbool_t ret_value; /* Return value */
+ haddr_t eoa; /* End-of-allocation in the file */
+ haddr_t space_avail; /* Unallocated space still available in file */
+ hbool_t ret_value; /* Return value */
- FUNC_ENTER_NOAPI_NOFUNC(H5MF_alloc_overflow)
+ FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5MF_alloc_overflow)
/* Start with the current end of the file's address. */
- space_needed = (hsize_t)H5F_get_eoa(f);
-
- HDassert(H5F_addr_defined(space_needed));
+ eoa = H5F_get_eoa(f);
+ HDassert(H5F_addr_defined(eoa));
- /* Subtract the file's base address to get the actual amount of
- * space being used:
- * (end of allocated space - beginning of allocated space)
+ /* Subtract EOA from the file's maximum address to get the actual amount of
+ * addressable space left in the file.
*/
- HDassert(H5F_BASE_ADDR(f) < space_needed);
- space_needed -= (hsize_t)H5F_BASE_ADDR(f);
+ HDassert(f->shared->maxaddr >= eoa);
+ space_avail = (hsize_t)(f->shared->maxaddr - eoa);
- /* Add the amount of space requested for this allocation */
- space_needed += size;
-
- /* Ensure that this final number is less than the file's
- * address space. We do this by shifting in multiples
- * of 16 bits because some systems will do nothing if
- * we shift by 64 bits all at once (<cough> Linux <cough>).
- * Thus, we break one shift into several smaller shifts.
- */
- for(c=0; c < H5F_SIZEOF_ADDR(f); c += 2)
- space_needed = space_needed >> 16;
-
- if(space_needed != 0)
+ /* Ensure that there's enough room left in the file for something of this size */
+ if(size > space_avail)
ret_value = TRUE;
else
ret_value = FALSE;
FUNC_LEAVE_NOAPI(ret_value)
-}
+} /* end H5MF_alloc_overflow() */
/*-------------------------------------------------------------------------
@@ -281,14 +271,11 @@ H5MF_alloc_overflow(const H5F_t *f, hsize_t size)
* Purpose: Check if a block in the file can be extended.
*
* Return: Success: TRUE(1)/FALSE(0)
- *
* Failure: FAIL
*
* Programmer: Quincey Koziol
* Friday, June 11, 2004
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
htri_t
@@ -296,21 +283,17 @@ H5MF_can_extend(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, hsize_t e
{
htri_t ret_value; /* Return value */
- FUNC_ENTER_NOAPI(H5MF_can_extend, FAIL);
+ FUNC_ENTER_NOAPI(H5MF_can_extend, FAIL)
/* Convert old relative address to absolute address */
addr += H5F_BASE_ADDR(f);
/* Pass the request down to the virtual file layer */
- if((ret_value=H5FD_can_extend(f->shared->lf, type, addr, size, extra_requested))<0)
+ if((ret_value = H5FD_can_extend(f->shared->lf, type, addr, size, extra_requested)) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to allocate new file memory");
- /* Make sure there is enough addressable space to satisfy the request */
- if (ret_value == TRUE)
- ret_value = !H5MF_alloc_overflow(f, extra_requested);
-
done:
- FUNC_LEAVE_NOAPI(ret_value);
+ FUNC_LEAVE_NOAPI(ret_value)
} /* end H5MF_can_extend() */
@@ -320,14 +303,11 @@ done:
* Purpose: Extend a block in the file.
*
* Return: Success: Non-negative
- *
* Failure: Negative
*
* Programmer: Quincey Koziol
* Saturday, June 12, 2004
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -335,19 +315,16 @@ H5MF_extend(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, hsize_t extra
{
herr_t ret_value; /* Return value */
- FUNC_ENTER_NOAPI(H5MF_extend, FAIL);
-
- /* Make sure there is enough addressable space to satisfy the request */
- if ( H5MF_alloc_overflow(f, extra_requested) )
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to allocate new file memory: out of address space");
+ FUNC_ENTER_NOAPI(H5MF_extend, FAIL)
- /* Convert old relative address to absolute address */
+ /* Convert relative address to absolute address */
addr += H5F_BASE_ADDR(f);
/* Pass the request down to the virtual file layer */
- if((ret_value=H5FD_extend(f->shared->lf, type, addr, size, extra_requested))<0)
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to allocate new file memory");
+ if((ret_value = H5FD_extend(f->shared->lf, type, addr, size, extra_requested)) < 0)
+ HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to allocate new file memory")
done:
- FUNC_LEAVE_NOAPI(ret_value);
+ FUNC_LEAVE_NOAPI(ret_value)
} /* end H5MF_extend() */
+