[svn-r9539]

Purpose:  Correction to previous bug fix.  This checkin is mainly to let user
test his program.

Description:   For family driver bug(#213), the previous fix was imperfect.  The problem
was when user create family file, the member size information wasn't saved in file.  When
the file was re-opened, the library simply use the size of 1st member file as member size.

Solution:
              When file is re-opened, member size passed in from access property
              is checked to see if it's reasonable.  If there is only 1 member
              file, member size can't be smaller than current member size.
              If there are at least 2 member files, member size can only be equal
              to the 1st member size.

Platforms tested:  h5committest and fuss
This commit is contained in:
Raymond Lu 2004-11-18 11:52:12 -05:00
parent 1878ad9c2c
commit 7016b6e5ed
2 changed files with 31 additions and 19 deletions

View File

@ -567,6 +567,13 @@ done:
* Wednesday, August 4, 1999
*
* Modifications:
* Raymond Lu
* Thursday, November 18, 2004
* When file is re-opened, member size passed in from access property
* is checked to see if it's reasonable. If there is only 1 member
* file, member size can't be smaller than current member size.
* If there are at least 2 member files, member size can only be equal
* the 1st member size.
*
*-------------------------------------------------------------------------
*/
@ -577,7 +584,7 @@ H5FD_family_open(const char *name, unsigned flags, hid_t fapl_id,
H5FD_family_t *file=NULL;
H5FD_t *ret_value=NULL;
char memb_name[4096], temp[4096];
hsize_t eof;
hsize_t eof1=HADDR_UNDEF, eof2=HADDR_UNDEF;
unsigned t_flags = flags & ~H5F_ACC_CREAT;
H5P_genplist_t *plist; /* Property list pointer */
@ -659,16 +666,26 @@ H5FD_family_open(const char *name, unsigned flags, hid_t fapl_id,
}
/*
* Check if user sets member size smaller than existing first member file size.
* Return failure if so. If the member size coming from access property list is
* 0, then set the member size to be the current first member file size.
* Get file size of the first 2 member files if exist. Check if user sets
* reasonable member size.
*/
if(HADDR_UNDEF==(eof = H5FD_get_eof(file->memb[0])))
HGOTO_ERROR(H5E_VFL, H5E_CANTINIT, NULL, "file get eof request failed")
if(file->memb_size==0 && eof)
file->memb_size = eof;
if(eof && file->memb_size<eof)
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "trying to set member size smaller than existing member file size")
if(HADDR_UNDEF==(eof1 = H5FD_get_eof(file->memb[0])))
HGOTO_ERROR(H5E_VFL, H5E_CANTINIT, NULL, "file get eof1 request failed")
if(file->memb[1] && (HADDR_UNDEF==(eof2 = H5FD_get_eof(file->memb[1]))))
HGOTO_ERROR(H5E_VFL, H5E_CANTINIT, NULL, "file get eof2 request failed")
if(eof1 && (eof2==HADDR_UNDEF || !eof2)) {
/* If there is only 1 member file, new member size can't be smaller than
* current member size.
*/
if(file->memb_size<eof1)
file->memb_size = eof1;
} else if(eof1 && eof2) {
/* If there are at least 2 member files, new member size can only be equal
* to the 1st member size
*/
file->memb_size = eof1;
}
ret_value=(H5FD_t *)file;

View File

@ -243,16 +243,11 @@ test_family(void)
goto error;
/* Tries to reopen the file with member file size smaller than
* actual 1st member file size(976 bytes). Supposed to fail. */
* actual 1st member file size(976 bytes). The library is
* supposed to adjust the member size to 976 bytes. */
if(H5Pset_fapl_family(fapl, (hsize_t)512, H5P_DEFAULT)<0)
goto error;
H5E_BEGIN_TRY {
H5Fopen(filename, H5F_ACC_RDWR, fapl);
} H5E_END_TRY;
/* Reopen the file with original member file size */
if(H5Pset_fapl_family(fapl, (hsize_t)FAMILY_SIZE, H5P_DEFAULT)<0)
goto error;
if((file=H5Fopen(filename, H5F_ACC_RDWR, fapl))<0)
goto error;
@ -315,7 +310,7 @@ test_family(void)
if(file_size<32*KB || file_size>40*KB)
goto error;
}
if(H5Sclose(space)<0)
goto error;
if(H5Dclose(dset)<0)