2003-01-07 12:22:12 +08:00
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
|
* Copyright by The HDF Group. *
|
2005-10-01 23:29:18 +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 *
|
2007-02-07 22:56:24 +08:00
|
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
|
* access to either file, you may request a copy from help@hdfgroup.org. *
|
2005-10-01 23:29:18 +08:00
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2001-03-06 07:09:59 +08:00
|
|
|
|
|
2003-01-07 12:22:12 +08:00
|
|
|
|
/*****************************************************************************
|
|
|
|
|
FILE
|
|
|
|
|
tfile.cpp - HDF5 C++ testing the file I/O features
|
|
|
|
|
|
|
|
|
|
EXTERNAL ROUTINES/VARIABLES:
|
|
|
|
|
These routines are in the test directory of the C library:
|
|
|
|
|
h5_fileaccess() -- in h5test.c, returns a file access template
|
|
|
|
|
|
|
|
|
|
***************************************************************************/
|
2001-03-06 07:09:59 +08:00
|
|
|
|
|
2003-03-18 00:41:02 +08:00
|
|
|
|
#ifdef OLD_HEADER_FILENAME
|
|
|
|
|
#include <iostream.h>
|
|
|
|
|
#else
|
2001-03-10 06:15:28 +08:00
|
|
|
|
#include <iostream>
|
2003-03-18 00:41:02 +08:00
|
|
|
|
#endif
|
2005-12-03 20:27:14 +08:00
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
#ifndef H5_NO_NAMESPACE
|
|
|
|
|
#ifndef H5_NO_STD
|
|
|
|
|
using std::cerr;
|
|
|
|
|
using std::endl;
|
|
|
|
|
#endif // H5_NO_STD
|
|
|
|
|
#endif
|
2003-03-18 00:41:02 +08:00
|
|
|
|
|
2005-03-20 12:01:25 +08:00
|
|
|
|
#include "H5Cpp.h" // C++ API header file
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
#ifndef H5_NO_NAMESPACE
|
2006-03-31 02:06:58 +08:00
|
|
|
|
using namespace H5;
|
2001-03-14 21:27:13 +08:00
|
|
|
|
#endif
|
2001-03-06 07:09:59 +08:00
|
|
|
|
|
2005-03-20 12:01:25 +08:00
|
|
|
|
#include "h5cpputil.h" // C++ utilility header file
|
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
const hsize_t F1_USERBLOCK_SIZE = (hsize_t)0;
|
|
|
|
|
const size_t F1_OFFSET_SIZE = sizeof(haddr_t);
|
|
|
|
|
const size_t F1_LENGTH_SIZE = sizeof(hsize_t);
|
|
|
|
|
const unsigned F1_SYM_LEAF_K = 4;
|
|
|
|
|
const unsigned F1_SYM_INTERN_K = 16;
|
2006-04-06 00:50:56 +08:00
|
|
|
|
const H5std_string FILE1("tfile1.h5");
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
const hsize_t F2_USERBLOCK_SIZE = (hsize_t)512;
|
|
|
|
|
const size_t F2_OFFSET_SIZE = 8;
|
|
|
|
|
const size_t F2_LENGTH_SIZE = 8;
|
|
|
|
|
const unsigned F2_SYM_LEAF_K = 8;
|
|
|
|
|
const unsigned F2_SYM_INTERN_K = 32;
|
2006-04-06 00:50:56 +08:00
|
|
|
|
const H5std_string FILE2("tfile2.h5");
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
const hsize_t F3_USERBLOCK_SIZE = (hsize_t)0;
|
|
|
|
|
const size_t F3_OFFSET_SIZE = F2_OFFSET_SIZE;
|
|
|
|
|
const size_t F3_LENGTH_SIZE = F2_LENGTH_SIZE;
|
|
|
|
|
const unsigned F3_SYM_LEAF_K = F2_SYM_LEAF_K;
|
|
|
|
|
const unsigned F3_SYM_INTERN_K = F2_SYM_INTERN_K;
|
2006-04-06 00:50:56 +08:00
|
|
|
|
const H5std_string FILE3("tfile3.h5");
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
|
|
|
|
const int KB = 1024;
|
2006-04-06 00:50:56 +08:00
|
|
|
|
const H5std_string FILE4("tfile4.h5");
|
2004-06-30 21:45:07 +08:00
|
|
|
|
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_file_create
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test file and template creations
|
|
|
|
|
*
|
|
|
|
|
* Return: None
|
|
|
|
|
*
|
2001-03-14 21:27:13 +08:00
|
|
|
|
* Programmer: Binh-Minh Ribler (use C version)
|
2001-03-02 02:07:25 +08:00
|
|
|
|
* January, 2001
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2005-01-10 12:40:51 +08:00
|
|
|
|
* January, 2005: C tests' macro VERIFY casts values to 'long' for all
|
|
|
|
|
* cases. Since there are no operator<< for 'long long'
|
|
|
|
|
* or int64 in VS C++ ostream, I casted the hsize_t values
|
|
|
|
|
* passed to verify_val to 'long' as well. If problems
|
2005-06-20 05:02:21 +08:00
|
|
|
|
* arises later, this will have to be specificly handled
|
2005-01-10 12:40:51 +08:00
|
|
|
|
* with a special routine.
|
2001-03-02 02:07:25 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2007-03-18 00:26:53 +08:00
|
|
|
|
static void test_file_create()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
{
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Output message about test being performed
|
2010-02-27 00:55:49 +08:00
|
|
|
|
SUBTEST("File Creation I/O");
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Test create with various sequences of H5F_ACC_EXCL and
|
|
|
|
|
// H5F_ACC_TRUNC flags
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Create with H5F_ACC_EXCL
|
|
|
|
|
// First ensure the file does not exist
|
2004-12-21 04:01:46 +08:00
|
|
|
|
remove(FILE1.c_str());
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
// Setting this to NULL for cleaning up in failure situations
|
|
|
|
|
H5File* file1 = NULL;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
try {
|
2005-01-10 12:40:51 +08:00
|
|
|
|
// Create file FILE1
|
|
|
|
|
file1 = new H5File (FILE1, H5F_ACC_EXCL);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Try to create the same file with H5F_ACC_TRUNC. This should fail
|
|
|
|
|
// because file1 is the same file and is currently open. Skip it on
|
|
|
|
|
// OpenVMS because it creates another version of the file.
|
|
|
|
|
#ifndef H5_HAVE_FILE_VERSIONS
|
2001-03-14 21:27:13 +08:00
|
|
|
|
try {
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file2 (FILE1, H5F_ACC_TRUNC); // should throw E
|
2013-03-23 01:56:05 +08:00
|
|
|
|
|
2005-01-31 12:03:36 +08:00
|
|
|
|
// Should FAIL but didn't, so throw an invalid action exception
|
2005-06-20 05:02:21 +08:00
|
|
|
|
throw InvalidActionException("H5File constructor", "Attempted to create an existing file.");
|
2001-03-14 21:27:13 +08:00
|
|
|
|
}
|
2005-06-20 05:02:21 +08:00
|
|
|
|
catch( FileIException E ) // catch truncating existing file
|
|
|
|
|
{} // do nothing, FAIL expected
|
2013-10-15 13:31:20 +08:00
|
|
|
|
#endif // H5_HAVE_FILE_VERSIONS
|
2012-06-28 00:12:57 +08:00
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
|
// Close file1
|
2004-12-21 04:01:46 +08:00
|
|
|
|
delete file1;
|
2005-01-10 12:40:51 +08:00
|
|
|
|
file1 = NULL;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
|
// Try again with H5F_ACC_EXCL. This should fail because the file
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// already exists from the previous steps.
|
2005-08-14 04:53:35 +08:00
|
|
|
|
try {
|
2005-01-04 00:04:23 +08:00
|
|
|
|
H5File file2(FILE1, H5F_ACC_EXCL); // should throw E
|
2005-01-31 12:03:36 +08:00
|
|
|
|
|
|
|
|
|
// Should FAIL but didn't, so throw an invalid action exception
|
2005-06-20 05:02:21 +08:00
|
|
|
|
throw InvalidActionException("H5File constructor", "File already exists.");
|
2001-03-14 21:27:13 +08:00
|
|
|
|
}
|
2005-01-31 12:03:36 +08:00
|
|
|
|
catch( FileIException E ) // catching creating existing file
|
|
|
|
|
{} // do nothing, FAIL expected
|
2013-10-15 13:31:20 +08:00
|
|
|
|
|
2001-03-02 02:07:25 +08:00
|
|
|
|
// Test create with H5F_ACC_TRUNC. This will truncate the existing file.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
file1 = new H5File (FILE1, H5F_ACC_TRUNC);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Try to create first file again. This should fail because file1
|
|
|
|
|
// is the same file and is currently open. Skip it on OpenVMS because
|
|
|
|
|
// it creates another version of the file.
|
|
|
|
|
#ifndef H5_HAVE_FILE_VERSIONS
|
2001-03-14 21:27:13 +08:00
|
|
|
|
try {
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file2 (FILE1, H5F_ACC_TRUNC); // should throw E
|
2005-01-31 12:03:36 +08:00
|
|
|
|
|
|
|
|
|
// Should FAIL but didn't, so throw an invalid action exception
|
2005-06-20 05:02:21 +08:00
|
|
|
|
throw InvalidActionException("H5File constructor", "H5F_ACC_TRUNC attempt on an opened file.");
|
2001-03-14 21:27:13 +08:00
|
|
|
|
}
|
2005-01-31 12:03:36 +08:00
|
|
|
|
catch( FileIException E ) // catching truncating opened file
|
|
|
|
|
{} // do nothing, FAIL expected
|
2013-03-23 01:56:05 +08:00
|
|
|
|
|
2005-01-31 12:03:36 +08:00
|
|
|
|
// Try with H5F_ACC_EXCL. This should fail too because the file already
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// exists. Skip it on OpenVMS because it creates another version of the file.
|
2001-03-14 21:27:13 +08:00
|
|
|
|
try {
|
2013-03-23 01:56:05 +08:00
|
|
|
|
H5File file3 (FILE1, H5F_ACC_EXCL); // should throw E
|
2005-01-31 12:03:36 +08:00
|
|
|
|
|
|
|
|
|
// Should FAIL but didn't, so throw an invalid action exception
|
2005-06-20 05:02:21 +08:00
|
|
|
|
throw InvalidActionException("H5File constructor", "H5F_ACC_EXCL attempt on an existing file.");
|
2001-03-14 21:27:13 +08:00
|
|
|
|
}
|
2005-01-31 12:03:36 +08:00
|
|
|
|
catch( FileIException E ) // catching H5F_ACC_EXCL on existing file
|
|
|
|
|
{} // do nothing, FAIL expected
|
2013-10-15 13:31:20 +08:00
|
|
|
|
#endif /*H5_HAVE_FILE_VERSIONS*/
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
// Get the file-creation template
|
2004-12-21 04:01:46 +08:00
|
|
|
|
FileCreatPropList tmpl1 = file1->getCreatePlist();
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
hsize_t ublock = tmpl1.getUserblock();
|
2005-01-10 12:40:51 +08:00
|
|
|
|
verify_val((long)ublock, (long)F1_USERBLOCK_SIZE, "FileCreatPropList::getUserblock", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
size_t parm1, parm2; // file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
tmpl1.getSizes( parm1, parm2);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(parm1, F1_OFFSET_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
|
|
|
|
verify_val(parm2, F1_LENGTH_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
unsigned iparm1,iparm2; // file-creation parameters
|
2004-12-21 04:01:46 +08:00
|
|
|
|
tmpl1.getSymk( iparm1, iparm2);
|
|
|
|
|
verify_val(iparm1, F1_SYM_INTERN_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
|
|
|
|
verify_val(iparm2, F1_SYM_LEAF_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
// tmpl1 is automatically closed; if error occurs, it'll be
|
|
|
|
|
// caught in the catch block
|
|
|
|
|
|
2005-01-31 12:03:36 +08:00
|
|
|
|
// Close first file
|
2004-12-21 04:01:46 +08:00
|
|
|
|
delete file1;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
}
|
2005-01-31 12:03:36 +08:00
|
|
|
|
catch (InvalidActionException E)
|
|
|
|
|
{
|
2007-03-18 00:26:53 +08:00
|
|
|
|
cerr << " *FAILED*" << endl;
|
2005-01-31 12:03:36 +08:00
|
|
|
|
cerr << " <<< " << E.getDetailMsg() << " >>>" << endl << endl;
|
|
|
|
|
if (file1 != NULL) // clean up
|
|
|
|
|
delete file1;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
}
|
2005-01-31 12:03:36 +08:00
|
|
|
|
// catch all other exceptions
|
|
|
|
|
catch (Exception E)
|
|
|
|
|
{
|
2007-03-18 00:26:53 +08:00
|
|
|
|
issue_fail_msg("test_file_create()", __LINE__, __FILE__, E.getCDetailMsg());
|
2005-01-31 12:03:36 +08:00
|
|
|
|
if (file1 != NULL) // clean up
|
|
|
|
|
delete file1;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2005-01-10 12:40:51 +08:00
|
|
|
|
// Setting this to NULL for cleaning up in failure situations
|
|
|
|
|
FileCreatPropList* tmpl1 = NULL;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Create a new file with a non-standard file-creation template
|
2005-01-10 12:40:51 +08:00
|
|
|
|
tmpl1 = new FileCreatPropList;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Set the new file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
tmpl1->setUserblock (F2_USERBLOCK_SIZE);
|
|
|
|
|
tmpl1->setSizes( F2_OFFSET_SIZE, F2_LENGTH_SIZE );
|
|
|
|
|
tmpl1->setSymk( F2_SYM_INTERN_K, F2_SYM_LEAF_K );
|
|
|
|
|
|
2005-01-31 12:03:36 +08:00
|
|
|
|
// Try to create second file, with non-standard file-creation template
|
|
|
|
|
// params.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file2( FILE2, H5F_ACC_TRUNC, *tmpl1 );
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Release file-creation template
|
2001-03-02 02:07:25 +08:00
|
|
|
|
delete tmpl1;
|
2005-01-10 12:40:51 +08:00
|
|
|
|
tmpl1 = NULL;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Get the file-creation template
|
2004-12-21 04:01:46 +08:00
|
|
|
|
tmpl1 = new FileCreatPropList (file2.getCreatePlist());
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Get the file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
hsize_t ublock = tmpl1->getUserblock();
|
2005-01-10 12:40:51 +08:00
|
|
|
|
verify_val((long)ublock, (long)F2_USERBLOCK_SIZE, "FileCreatPropList::getUserblock", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
size_t parm1, parm2; // file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
tmpl1->getSizes( parm1, parm2);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(parm1, F2_OFFSET_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
|
|
|
|
verify_val(parm2, F2_LENGTH_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
unsigned iparm1,iparm2; // file-creation parameters
|
2004-12-21 04:01:46 +08:00
|
|
|
|
tmpl1->getSymk( iparm1, iparm2);
|
|
|
|
|
verify_val(iparm1, F2_SYM_INTERN_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
|
|
|
|
verify_val(iparm2, F2_SYM_LEAF_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Clone the file-creation template
|
2001-03-02 02:07:25 +08:00
|
|
|
|
FileCreatPropList tmpl2;
|
|
|
|
|
tmpl2.copy (*tmpl1);
|
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Release file-creation template
|
2001-03-02 02:07:25 +08:00
|
|
|
|
delete tmpl1;
|
2005-01-10 12:40:51 +08:00
|
|
|
|
tmpl1 = NULL;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Set the new file-creation parameter
|
2001-03-02 02:07:25 +08:00
|
|
|
|
tmpl2.setUserblock( F3_USERBLOCK_SIZE );
|
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Try to create second file, with non-standard file-creation template
|
|
|
|
|
// params
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file3( FILE3, H5F_ACC_TRUNC, tmpl2 );
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Get the file-creation template
|
2004-12-21 04:01:46 +08:00
|
|
|
|
tmpl1 = new FileCreatPropList (file3.getCreatePlist());
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Get the file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
ublock = tmpl1->getUserblock();
|
2005-01-10 12:40:51 +08:00
|
|
|
|
verify_val((long)ublock, (long)F3_USERBLOCK_SIZE, "FileCreatPropList::getUserblock", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
tmpl1->getSizes( parm1, parm2);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(parm1, F3_OFFSET_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
|
|
|
|
verify_val(parm2, F3_LENGTH_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
tmpl1->getSymk( iparm1, iparm2);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(iparm1, F3_SYM_INTERN_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
|
|
|
|
verify_val(iparm2, F3_SYM_LEAF_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Release file-creation template
|
2001-03-02 02:07:25 +08:00
|
|
|
|
delete tmpl1;
|
2007-03-18 00:26:53 +08:00
|
|
|
|
PASSED();
|
2001-03-02 02:07:25 +08:00
|
|
|
|
}
|
2005-01-31 12:03:36 +08:00
|
|
|
|
// catch all exceptions
|
|
|
|
|
catch (Exception E)
|
|
|
|
|
{
|
2007-03-18 00:26:53 +08:00
|
|
|
|
issue_fail_msg("test_file_create()", __LINE__, __FILE__, E.getCDetailMsg());
|
2005-06-20 05:02:21 +08:00
|
|
|
|
if (tmpl1 != NULL) // clean up
|
2005-01-10 12:40:51 +08:00
|
|
|
|
delete tmpl1;
|
2001-03-02 02:07:25 +08:00
|
|
|
|
}
|
2005-06-20 05:02:21 +08:00
|
|
|
|
} // test_file_create()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_file_open
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test file accesses
|
|
|
|
|
*
|
|
|
|
|
* Return: None
|
|
|
|
|
*
|
2001-03-14 21:27:13 +08:00
|
|
|
|
* Programmer: Binh-Minh Ribler (use C version)
|
2001-03-02 02:07:25 +08:00
|
|
|
|
* January, 2001
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2005-01-10 12:40:51 +08:00
|
|
|
|
* January, 2005: C tests' macro VERIFY casts values to 'long' for all
|
|
|
|
|
* cases. Since there are no operator<< for 'long long'
|
|
|
|
|
* or int64 in VS C++ ostream, I casted the hsize_t values
|
|
|
|
|
* passed to verify_val to 'long' as well. If problems
|
2005-06-20 05:02:21 +08:00
|
|
|
|
* arises later, this will have to be specificly handled
|
2005-01-10 12:40:51 +08:00
|
|
|
|
* with a special routine.
|
2001-03-02 02:07:25 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2007-03-18 00:26:53 +08:00
|
|
|
|
static void test_file_open()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
{
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Output message about test being performed
|
2010-02-27 00:55:49 +08:00
|
|
|
|
SUBTEST("File Opening I/O");
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Open first file
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file1 (FILE2, H5F_ACC_RDWR );
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Get the file-creation template
|
2004-12-21 04:01:46 +08:00
|
|
|
|
FileCreatPropList tmpl1 = file1.getCreatePlist();
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Get the file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
hsize_t ublock = tmpl1.getUserblock();
|
2005-01-10 12:40:51 +08:00
|
|
|
|
verify_val((long)ublock, (long)F2_USERBLOCK_SIZE, "FileCreatPropList::getUserblock", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
size_t parm1, parm2; // file-creation parameters
|
2001-03-02 02:07:25 +08:00
|
|
|
|
tmpl1.getSizes( parm1, parm2);
|
2004-12-21 04:01:46 +08:00
|
|
|
|
verify_val(parm1, F2_OFFSET_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
|
|
|
|
verify_val(parm2, F2_LENGTH_SIZE, "FileCreatPropList::getSizes", __LINE__, __FILE__);
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
unsigned iparm1,iparm2; // file-creation parameters
|
2004-12-21 04:01:46 +08:00
|
|
|
|
tmpl1.getSymk( iparm1, iparm2);
|
|
|
|
|
verify_val(iparm1, F2_SYM_INTERN_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
|
|
|
|
verify_val(iparm2, F2_SYM_LEAF_K, "FileCreatPropList::getSymk", __LINE__, __FILE__);
|
2012-09-28 07:26:16 +08:00
|
|
|
|
|
2007-03-18 00:26:53 +08:00
|
|
|
|
PASSED();
|
2001-03-02 02:07:25 +08:00
|
|
|
|
} // end of try block
|
|
|
|
|
|
2001-03-14 21:27:13 +08:00
|
|
|
|
catch( Exception E ) {
|
2007-03-18 00:26:53 +08:00
|
|
|
|
issue_fail_msg("test_file_open()", __LINE__, __FILE__, E.getCDetailMsg());
|
2001-03-02 02:07:25 +08:00
|
|
|
|
}
|
2005-06-20 05:02:21 +08:00
|
|
|
|
} // test_file_open()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2004-06-25 06:19:57 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_file_size
|
|
|
|
|
*
|
2005-08-14 04:53:35 +08:00
|
|
|
|
* Purpose: Test file size.
|
2004-06-25 06:19:57 +08:00
|
|
|
|
*
|
|
|
|
|
* Return: None
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* June, 2004
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2007-03-18 00:26:53 +08:00
|
|
|
|
static void test_file_size()
|
2004-06-25 06:19:57 +08:00
|
|
|
|
{
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Output message about test being performed
|
2010-02-27 00:55:49 +08:00
|
|
|
|
SUBTEST("File Size");
|
2004-06-25 06:19:57 +08:00
|
|
|
|
|
|
|
|
|
hid_t fapl_id;
|
|
|
|
|
fapl_id = h5_fileaccess(); // in h5test.c, returns a file access template
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
// Use the file access template id to create a file access prop.
|
|
|
|
|
// list object to pass in H5File::H5File
|
|
|
|
|
FileAccPropList fapl(fapl_id);
|
|
|
|
|
|
2004-12-21 04:01:46 +08:00
|
|
|
|
// Set to sec2 driver. Do we want to test other file drivers?
|
2004-06-25 06:19:57 +08:00
|
|
|
|
// They're not tested in C++.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
// File drivers seem not implemented.
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// fapl.setSec2();
|
2004-06-25 06:19:57 +08:00
|
|
|
|
|
|
|
|
|
// Create a file
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file4( FILE4, H5F_ACC_TRUNC, FileCreatPropList::DEFAULT, fapl);
|
2004-06-25 06:19:57 +08:00
|
|
|
|
|
|
|
|
|
// Get file size
|
2004-12-21 04:01:46 +08:00
|
|
|
|
hsize_t file_size = file4.getFileSize();
|
2004-06-25 06:19:57 +08:00
|
|
|
|
|
|
|
|
|
// Check if file size is reasonable. It's supposed to be 2KB now.
|
2012-09-28 07:26:16 +08:00
|
|
|
|
if (file_size < 1*KB || file_size > 4*KB)
|
|
|
|
|
issue_fail_msg("test_file_size()", __LINE__, __FILE__, "getFileSize() returned unreasonable value");
|
|
|
|
|
|
|
|
|
|
// Get the amount of free space in the file
|
|
|
|
|
hssize_t free_space = file4.getFreeSpace();
|
|
|
|
|
|
|
|
|
|
// Check if it's reasonable. It's 0 now.
|
|
|
|
|
if (free_space < 0 || free_space > 4*KB)
|
2013-10-15 13:31:20 +08:00
|
|
|
|
issue_fail_msg("test_file_size()", __LINE__, __FILE__, "getFreeSpace returned unreasonable value");
|
2012-09-28 07:26:16 +08:00
|
|
|
|
|
2007-03-18 00:26:53 +08:00
|
|
|
|
PASSED();
|
2004-06-25 06:19:57 +08:00
|
|
|
|
} // end of try block
|
|
|
|
|
|
|
|
|
|
catch( Exception E ) {
|
2007-03-18 00:26:53 +08:00
|
|
|
|
issue_fail_msg("test_file_size()", __LINE__, __FILE__, E.getCDetailMsg());
|
2004-06-25 06:19:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// use C test utility routine to close property list.
|
|
|
|
|
H5Pclose(fapl_id);
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
} // test_file_size()
|
2004-06-25 06:19:57 +08:00
|
|
|
|
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_file_name
|
|
|
|
|
*
|
2005-08-14 04:53:35 +08:00
|
|
|
|
* Purpose: Test getting file's name.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
*
|
|
|
|
|
* Return: None
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Binh-Minh Ribler
|
|
|
|
|
* July, 2004
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
const int RANK = 2;
|
|
|
|
|
const int NX = 4;
|
|
|
|
|
const int NY = 5;
|
2006-04-06 00:50:56 +08:00
|
|
|
|
const H5std_string GROUPNAME ("group");
|
|
|
|
|
const H5std_string DSETNAME ("dataset");
|
2012-09-28 07:26:16 +08:00
|
|
|
|
const H5std_string DATTRNAME ("dataset attribute");
|
|
|
|
|
const H5std_string FATTRNAME ("file attribute");
|
2006-04-06 00:50:56 +08:00
|
|
|
|
const H5std_string DTYPENAME ("compound");
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Compound datatype
|
2004-12-21 04:01:46 +08:00
|
|
|
|
typedef struct s1_t {
|
|
|
|
|
unsigned int a;
|
|
|
|
|
float b;
|
|
|
|
|
} s1_t;
|
|
|
|
|
|
2007-03-18 00:26:53 +08:00
|
|
|
|
static void test_file_name()
|
2004-12-21 04:01:46 +08:00
|
|
|
|
{
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Output message about test being performed.
|
2010-02-27 00:55:49 +08:00
|
|
|
|
SUBTEST("File Name");
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2006-04-06 00:50:56 +08:00
|
|
|
|
H5std_string file_name;
|
2004-12-21 04:01:46 +08:00
|
|
|
|
try {
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Create a file using default properties.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
H5File file4(FILE4, H5F_ACC_TRUNC);
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Get file name from the file instance.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
file_name = file4.getFileName();
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(file_name, FILE4, "H5File::getFileName", __LINE__, __FILE__);
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Create a group in the root group.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
Group group(file4.createGroup(GROUPNAME, 0));
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Get and verify file name via a group.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
file_name = group.getFileName();
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(file_name, FILE4, "Group::getFileName", __LINE__, __FILE__);
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Create the data space.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
hsize_t dims[RANK] = {NX, NY};
|
|
|
|
|
DataSpace space(RANK, dims);
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Create a new dataset.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
DataSet dataset(file4.createDataSet (DSETNAME, PredType::NATIVE_INT, space));
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Get and verify file name via a dataset.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
file_name = dataset.getFileName();
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(file_name, FILE4, "DataSet::getFileName", __LINE__, __FILE__);
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Create an attribute for the dataset.
|
2012-09-28 07:26:16 +08:00
|
|
|
|
Attribute attr(dataset.createAttribute(DATTRNAME, PredType::NATIVE_INT, space));
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Get and verify file name via an attribute.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
file_name = attr.getFileName();
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(file_name, FILE4, "Attribute::getFileName", __LINE__, __FILE__);
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Create a compound datatype.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
CompType comp_type (sizeof(s1_t));
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Insert fields.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
comp_type.insertMember("a", HOFFSET(s1_t, a), PredType::NATIVE_INT);
|
|
|
|
|
comp_type.insertMember("b", HOFFSET(s1_t, b), PredType::NATIVE_FLOAT);
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Save it on file.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
comp_type.commit(file4, DTYPENAME);
|
|
|
|
|
|
2013-10-15 13:31:20 +08:00
|
|
|
|
// Get and verify file name via a committed datatype.
|
2004-12-21 04:01:46 +08:00
|
|
|
|
comp_type.getFileName();
|
2004-12-29 22:26:20 +08:00
|
|
|
|
verify_val(file_name, FILE4, "CompType::getFileName", __LINE__, __FILE__);
|
2007-03-18 00:26:53 +08:00
|
|
|
|
PASSED();
|
2004-12-21 04:01:46 +08:00
|
|
|
|
} // end of try block
|
2005-01-31 12:03:36 +08:00
|
|
|
|
|
2004-12-21 04:01:46 +08:00
|
|
|
|
catch (Exception E) {
|
2007-03-18 00:26:53 +08:00
|
|
|
|
issue_fail_msg("test_file_name()", __LINE__, __FILE__, E.getCDetailMsg());
|
2004-12-21 04:01:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
} // test_file_name()
|
2004-12-21 04:01:46 +08:00
|
|
|
|
|
2012-09-28 07:26:16 +08:00
|
|
|
|
|
|
|
|
|
#define NUM_OBJS 4
|
|
|
|
|
#define NUM_ATTRS 3
|
|
|
|
|
const int RANK1 = 1;
|
|
|
|
|
const int ATTR1_DIM1 = 3;
|
|
|
|
|
const H5std_string FILE5("tfattrs.h5");
|
|
|
|
|
const H5std_string FATTR1_NAME ("file attribute 1");
|
|
|
|
|
const H5std_string FATTR2_NAME ("file attribute 2");
|
|
|
|
|
int fattr_data[ATTR1_DIM1]={512,-234,98123}; /* Test data for file attribute */
|
|
|
|
|
int dattr_data[ATTR1_DIM1]={256,-123,1000}; /* Test data for dataset attribute */
|
|
|
|
|
static void test_file_attribute()
|
|
|
|
|
{
|
|
|
|
|
int rdata[ATTR1_DIM1];
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
// Output message about test being performed
|
|
|
|
|
SUBTEST("File Attribute");
|
|
|
|
|
|
|
|
|
|
H5std_string file_name;
|
|
|
|
|
try {
|
|
|
|
|
// Create a file using default properties.
|
|
|
|
|
H5File file5(FILE5, H5F_ACC_TRUNC);
|
|
|
|
|
|
|
|
|
|
// Create the data space
|
|
|
|
|
hsize_t dims[RANK1] = {ATTR1_DIM1};
|
|
|
|
|
DataSpace space(RANK1, dims);
|
|
|
|
|
|
|
|
|
|
// Create two attributes for the file
|
|
|
|
|
Attribute fattr1(file5.createAttribute(FATTR1_NAME, PredType::NATIVE_FLOAT, space));
|
|
|
|
|
Attribute fattr2(file5.createAttribute(FATTR2_NAME, PredType::NATIVE_INT, space));
|
|
|
|
|
|
|
|
|
|
fattr2.write(PredType::NATIVE_INT, fattr_data);
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
// Try to create the same attribute again (should fail)
|
|
|
|
|
Attribute fattr_dup(file5.createAttribute(FATTR2_NAME, PredType::NATIVE_INT, space));
|
|
|
|
|
// Should FAIL but didn't, so throw an invalid action exception
|
|
|
|
|
throw InvalidActionException("H5File createAttribute", "Attempted to create an existing attribute.");
|
|
|
|
|
}
|
|
|
|
|
catch( AttributeIException E ) // catch creating existing attribute
|
|
|
|
|
{} // do nothing, FAIL expected
|
|
|
|
|
|
|
|
|
|
// Create a new dataset
|
|
|
|
|
DataSet dataset(file5.createDataSet (DSETNAME, PredType::NATIVE_INT, space));
|
|
|
|
|
|
|
|
|
|
// Create an attribute for the dataset
|
|
|
|
|
Attribute dattr(dataset.createAttribute(DATTRNAME, PredType::NATIVE_INT, space));
|
|
|
|
|
|
|
|
|
|
// Write data to the second file attribute
|
|
|
|
|
dattr.write(PredType::NATIVE_INT, dattr_data);
|
|
|
|
|
|
|
|
|
|
// Test flushing out the data from the attribute object
|
|
|
|
|
dattr.flush(H5F_SCOPE_GLOBAL);
|
|
|
|
|
|
|
|
|
|
// Get and verify the number of all objects in the file
|
|
|
|
|
// Current: 1 file, 2 file attr, 1 ds, and 1 ds attr.
|
|
|
|
|
ssize_t num_objs = file5.getObjCount(H5F_OBJ_ALL);
|
|
|
|
|
verify_val(num_objs, 5, "H5File::getObjCount", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
num_objs = file5.getObjCount(H5F_OBJ_GROUP);
|
|
|
|
|
verify_val(num_objs, 0, "H5File::getObjCount(H5F_OBJ_GROUP)", __LINE__, __FILE__);
|
|
|
|
|
num_objs = file5.getObjCount(H5F_OBJ_DATASET);
|
|
|
|
|
verify_val(num_objs, 1, "H5File::getObjCount(H5F_OBJ_DATASET)", __LINE__, __FILE__);
|
|
|
|
|
num_objs = file5.getObjCount(H5F_OBJ_ATTR);
|
|
|
|
|
verify_val(num_objs, 3, "H5File::getObjCount(H5F_OBJ_ATTR)", __LINE__, __FILE__);
|
|
|
|
|
num_objs = file5.getObjCount(H5F_OBJ_DATATYPE);
|
|
|
|
|
verify_val(num_objs, 0, "H5File::getObjCount(H5F_OBJ_DATATYPE)", __LINE__, __FILE__);
|
|
|
|
|
num_objs = file5.getObjCount(H5F_OBJ_FILE);
|
|
|
|
|
verify_val(num_objs, 1, "H5File::getObjCount(H5F_OBJ_FILE)", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
// Get the file name using the attributes
|
|
|
|
|
H5std_string fname = fattr1.getFileName();
|
|
|
|
|
verify_val(fname, FILE5, "H5File::getFileName()", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
fname.clear();
|
|
|
|
|
fname = dattr.getFileName();
|
|
|
|
|
verify_val(fname, FILE5, "H5File::getFileName()", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
// Get the class of a file attribute's datatype
|
|
|
|
|
H5T_class_t atclass = fattr1.getTypeClass();
|
|
|
|
|
verify_val(atclass, H5T_FLOAT, "Attribute::getTypeClass()", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
// Get and verify the number of attributes attached to a file
|
|
|
|
|
int n_attrs = file5.getNumAttrs();
|
|
|
|
|
verify_val(n_attrs, 2, "H5File::getNumAttrs()", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
// Get and verify the number of attributes attached to a dataset
|
|
|
|
|
n_attrs = 0;
|
|
|
|
|
n_attrs = dataset.getNumAttrs();
|
|
|
|
|
verify_val(n_attrs, 1, "DataSet::getNumAttrs()", __LINE__, __FILE__);
|
|
|
|
|
|
|
|
|
|
// Read back attribute's data
|
|
|
|
|
HDmemset(rdata, 0, sizeof(rdata));
|
|
|
|
|
dattr.read(PredType::NATIVE_INT, rdata);
|
|
|
|
|
/* Check results */
|
|
|
|
|
for (i = 0; i < ATTR1_DIM1; i++) {
|
|
|
|
|
if (rdata[i] != dattr_data[i]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
cerr << endl;
|
|
|
|
|
cerr << "element [" << i << "] is " << rdata[i] <<
|
|
|
|
|
"but should have been " << dattr_data[i] << endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
PASSED();
|
|
|
|
|
} // end of try block
|
|
|
|
|
|
|
|
|
|
catch (Exception E) {
|
|
|
|
|
issue_fail_msg("test_file_name()", __LINE__, __FILE__, E.getCDetailMsg());
|
|
|
|
|
}
|
|
|
|
|
} // test_file_attribute()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_file
|
|
|
|
|
*
|
2005-03-20 12:01:25 +08:00
|
|
|
|
* Purpose: Main file testing routine
|
2001-03-02 02:07:25 +08:00
|
|
|
|
*
|
|
|
|
|
* Return: None
|
|
|
|
|
*
|
2001-03-14 21:27:13 +08:00
|
|
|
|
* Programmer: Binh-Minh Ribler (use C version)
|
2001-03-06 07:09:59 +08:00
|
|
|
|
* January 2001
|
2001-03-02 02:07:25 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2007-03-08 17:50:55 +08:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C"
|
|
|
|
|
#endif
|
2007-03-18 00:26:53 +08:00
|
|
|
|
void test_file()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
{
|
2005-06-20 05:02:21 +08:00
|
|
|
|
// Output message about test being performed
|
2014-09-30 04:52:08 +08:00
|
|
|
|
MESSAGE(5, ("Testing File I/O Operations\n"));
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
2005-06-20 05:02:21 +08:00
|
|
|
|
test_file_create(); // Test file creation (also creation templates)
|
|
|
|
|
test_file_open(); // Test file opening
|
|
|
|
|
test_file_size(); // Test file size
|
|
|
|
|
test_file_name(); // Test getting file's name
|
2012-09-28 07:26:16 +08:00
|
|
|
|
test_file_attribute(); // Test file attribute feature
|
2005-06-20 05:02:21 +08:00
|
|
|
|
} // test_file()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: cleanup_file
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Cleanup temporary test files
|
|
|
|
|
*
|
|
|
|
|
* Return: none
|
|
|
|
|
*
|
2001-03-14 21:27:13 +08:00
|
|
|
|
* Programmer: (use C version)
|
2001-03-02 02:07:25 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2007-03-18 00:26:53 +08:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C"
|
|
|
|
|
#endif
|
|
|
|
|
void cleanup_file()
|
2001-03-02 02:07:25 +08:00
|
|
|
|
{
|
2007-03-18 00:26:53 +08:00
|
|
|
|
HDremove(FILE1.c_str());
|
|
|
|
|
HDremove(FILE2.c_str());
|
|
|
|
|
HDremove(FILE3.c_str());
|
|
|
|
|
HDremove(FILE4.c_str());
|
2014-04-07 06:36:15 +08:00
|
|
|
|
HDremove(FILE5.c_str());
|
2005-06-20 05:02:21 +08:00
|
|
|
|
} // cleanup_file
|