2003-04-01 01:59:04 +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 *
|
|
|
|
|
* http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
|
* access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
|
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***********************************************************
|
|
|
|
|
*
|
|
|
|
|
* Test program: tmeta
|
|
|
|
|
*
|
|
|
|
|
* Test the basic meta-data encode/decode macros calls.
|
|
|
|
|
*
|
|
|
|
|
*************************************************************/
|
|
|
|
|
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "testhdf5.h"
|
1997-08-16 00:53:11 +08:00
|
|
|
|
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "H5private.h"
|
|
|
|
|
#include "H5Fprivate.h"
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
#define TEST_INT16_VALUE -7641
|
|
|
|
|
#define TEST_UINT16_VALUE 45002
|
|
|
|
|
#define TEST_INT32_VALUE -981236
|
|
|
|
|
#define TEST_UINT32_VALUE 3476589
|
|
|
|
|
|
1998-11-19 02:40:09 +08:00
|
|
|
|
uint8_t compar_buffer[] =
|
1998-01-17 06:23:43 +08:00
|
|
|
|
{
|
1997-07-31 05:17:56 +08:00
|
|
|
|
/* Little-endian encoded version of the 16-bit signed integer */
|
1998-11-19 02:40:09 +08:00
|
|
|
|
(uint8_t) ((TEST_INT16_VALUE) & 0xff), (uint8_t) ((TEST_INT16_VALUE >> 8) & 0xff),
|
1997-07-31 05:17:56 +08:00
|
|
|
|
/* Little-endian encoded version of the 16-bit unsigned integer */
|
1998-11-19 02:40:09 +08:00
|
|
|
|
(uint8_t) ((TEST_UINT16_VALUE) & 0xff), (uint8_t) ((TEST_UINT16_VALUE >> 8) & 0xff),
|
1997-07-31 05:17:56 +08:00
|
|
|
|
/* Little-endian encoded version of the 32-bit signed integer */
|
1998-11-19 02:40:09 +08:00
|
|
|
|
(uint8_t) ((TEST_INT32_VALUE) & 0xff), (uint8_t) ((TEST_INT32_VALUE >> 8) & 0xff),
|
|
|
|
|
(uint8_t) ((TEST_INT32_VALUE >> 16) & 0xff), (uint8_t) ((TEST_INT32_VALUE >> 24) & 0xff),
|
1997-07-31 05:17:56 +08:00
|
|
|
|
/* Little-endian encoded version of the 32-bit unsigned integer */
|
1998-11-19 02:40:09 +08:00
|
|
|
|
(uint8_t) ((TEST_UINT32_VALUE) & 0xff), (uint8_t) ((TEST_UINT32_VALUE >> 8) & 0xff),
|
|
|
|
|
(uint8_t) ((TEST_UINT32_VALUE >> 16) & 0xff), (uint8_t) ((TEST_UINT32_VALUE >> 24) & 0xff),
|
1998-01-17 06:23:43 +08:00
|
|
|
|
};
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
1998-11-19 02:40:09 +08:00
|
|
|
|
uint8_t encode_buffer[sizeof(compar_buffer)];
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
|
**
|
|
|
|
|
** test_metadata(): Main meta-data encode/decode testing routine.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************/
|
1998-01-17 06:23:43 +08:00
|
|
|
|
void
|
|
|
|
|
test_metadata(void)
|
1997-07-31 05:17:56 +08:00
|
|
|
|
{
|
1998-11-19 02:40:09 +08:00
|
|
|
|
int16_t ei16 = TEST_INT16_VALUE; /* variables to hold the values to encode */
|
|
|
|
|
uint16_t eu16 = TEST_UINT16_VALUE;
|
|
|
|
|
int32_t ei32 = TEST_INT32_VALUE;
|
|
|
|
|
uint32_t eu32 = TEST_UINT32_VALUE;
|
|
|
|
|
int16_t di16; /* variables to hold the decoded values */
|
|
|
|
|
uint16_t du16;
|
|
|
|
|
int32_t di32;
|
|
|
|
|
uint32_t du32;
|
|
|
|
|
uint8_t *p; /* pointer into the buffer being en/de-coded */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
/* Output message about test being performed */
|
1997-08-30 00:59:28 +08:00
|
|
|
|
MESSAGE(5, ("Testing Metadata encode/decode code\n"));
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
/* Start by encoding the values above */
|
1998-01-17 06:23:43 +08:00
|
|
|
|
p = encode_buffer;
|
|
|
|
|
INT16ENCODE(p, ei16); /* Encode the int16 value */
|
|
|
|
|
UINT16ENCODE(p, eu16); /* Encode the uint16 value */
|
|
|
|
|
INT32ENCODE(p, ei32); /* Encode the int32 value */
|
|
|
|
|
UINT32ENCODE(p, eu32); /* Encode the uint32 value */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
/* Check if we got what we asked for */
|
1998-01-17 06:23:43 +08:00
|
|
|
|
if (HDmemcmp(encode_buffer, compar_buffer, sizeof(compar_buffer)) != 0) {
|
2001-08-15 06:09:56 +08:00
|
|
|
|
unsigned u; /* local counting variable */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
for (u = 0; u < sizeof(compar_buffer); u++) {
|
2004-01-10 09:41:13 +08:00
|
|
|
|
if (compar_buffer[u] != encode_buffer[u])
|
|
|
|
|
TestErrPrintf("Error encoding meta-data at offset %u, wanted: %u, got: %u\n", (unsigned) u, (unsigned) compar_buffer[u], (unsigned) encode_buffer[u]);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
} /* end for */
|
|
|
|
|
} /* end if */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
/* Test decoding macros */
|
1998-01-17 06:23:43 +08:00
|
|
|
|
p = encode_buffer;
|
|
|
|
|
INT16DECODE(p, di16); /* Decode the int16 value */
|
|
|
|
|
UINT16DECODE(p, du16); /* Decode the uint16 value */
|
|
|
|
|
INT32DECODE(p, di32); /* Decode the int32 value */
|
|
|
|
|
UINT32DECODE(p, du32); /* Decode the uint32 value */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
|
|
/* Check the values decoded */
|
2004-01-10 09:41:13 +08:00
|
|
|
|
if (di16 != TEST_INT16_VALUE)
|
|
|
|
|
TestErrPrintf("Error decoding int16 meta-data wanted: %d, got: %d "
|
1998-02-10 21:15:46 +08:00
|
|
|
|
"at %s:%d\n", (int) TEST_INT16_VALUE, (int) di16,
|
|
|
|
|
__FILE__, __LINE__);
|
2004-01-10 09:41:13 +08:00
|
|
|
|
if (du16 != TEST_UINT16_VALUE)
|
|
|
|
|
TestErrPrintf("Error decoding uint16 meta-data wanted: %u, got: %u "
|
1998-02-10 21:15:46 +08:00
|
|
|
|
"at %s:%d\n", (unsigned) TEST_UINT16_VALUE, (unsigned) du16,
|
|
|
|
|
__FILE__, __LINE__);
|
2004-01-10 09:41:13 +08:00
|
|
|
|
if (di32 != TEST_INT32_VALUE)
|
|
|
|
|
TestErrPrintf("Error decoding int32 meta-data wanted: %ld, got: %ld "
|
1998-02-10 21:15:46 +08:00
|
|
|
|
"at %s:%d\n", (long) TEST_INT32_VALUE, (long) di32,
|
|
|
|
|
__FILE__, __LINE__);
|
2004-01-10 09:41:13 +08:00
|
|
|
|
if (du32 != TEST_UINT32_VALUE)
|
|
|
|
|
TestErrPrintf("Error decoding uint32 meta-data wanted: %lu, got: %lu "
|
1998-02-10 21:15:46 +08:00
|
|
|
|
"at %s:%d\n", (unsigned long) TEST_UINT32_VALUE, (unsigned long) du32,
|
|
|
|
|
__FILE__, __LINE__);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
} /* test_metadata() */
|
1998-07-03 08:57:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: cleanup_metadata
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Cleanup temporary test files
|
|
|
|
|
*
|
|
|
|
|
* Return: none
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Albert Cheng
|
|
|
|
|
* July 2, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
cleanup_metadata(void)
|
|
|
|
|
{
|
|
|
|
|
/* no file to clean */
|
|
|
|
|
}
|
|
|
|
|
|