1997-08-08 03:23:41 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Copyright (C) 1997 National Center for Supercomputing Applications.
|
1997-08-08 03:23:41 +08:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Created: tohdr.c
|
|
|
|
|
* Aug 6 1997
|
|
|
|
|
* Robb Matzke <robb@maya.nuance.com>
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Purpose:
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Modifications:
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-08-16 00:53:11 +08:00
|
|
|
|
#include <testhdf5.h>
|
1997-08-08 03:23:41 +08:00
|
|
|
|
|
1997-08-16 00:53:11 +08:00
|
|
|
|
#include <H5private.h>
|
1998-01-23 00:41:32 +08:00
|
|
|
|
#include <H5Aprivate.h>
|
1997-08-16 00:53:11 +08:00
|
|
|
|
#include <H5ACprivate.h>
|
1998-02-26 03:13:49 +08:00
|
|
|
|
#include <H5Pprivate.h>
|
1997-08-16 00:53:11 +08:00
|
|
|
|
#include <H5Fprivate.h>
|
|
|
|
|
#include <H5Gprivate.h>
|
|
|
|
|
#include <H5Oprivate.h>
|
1997-08-08 03:23:41 +08:00
|
|
|
|
|
1997-09-22 10:09:16 +08:00
|
|
|
|
/*
|
|
|
|
|
* This file needs to access private datatypes from the H5G package.
|
|
|
|
|
*/
|
|
|
|
|
#define H5G_PACKAGE
|
|
|
|
|
#include <H5Gpkg.h>
|
1997-08-08 03:23:41 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Function: test_ohdr
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Purpose: Test object headers.
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Return: void
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* robb@maya.nuance.com
|
|
|
|
|
* Aug 6 1997
|
1997-08-08 03:23:41 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
void
|
1998-01-17 06:23:43 +08:00
|
|
|
|
test_ohdr(void)
|
1997-08-08 03:23:41 +08:00
|
|
|
|
{
|
1998-01-17 06:23:43 +08:00
|
|
|
|
hid_t fid;
|
|
|
|
|
H5F_t *f;
|
|
|
|
|
H5G_entry_t oh_ent;
|
|
|
|
|
H5O_stab_t stab, ro;
|
|
|
|
|
herr_t status;
|
|
|
|
|
void *ptr;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
MESSAGE(5, ("Testing Object Headers\n"));
|
|
|
|
|
|
|
|
|
|
/* create the file */
|
1998-02-26 03:13:49 +08:00
|
|
|
|
fid = H5Fcreate("tohdr.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
CHECK(fid, FAIL, "H5Fcreate");
|
1998-01-23 00:41:32 +08:00
|
|
|
|
f = H5A_object(fid);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
CHECK(f, NULL, "H5Aatom_object");
|
|
|
|
|
|
|
|
|
|
/* the new object header */
|
|
|
|
|
MESSAGE(8, ("Creating new object header...\n"));
|
|
|
|
|
status = H5O_create(f, 64, &oh_ent /*out */ );
|
|
|
|
|
CHECK_I(status, "H5O_new");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test creation of a new message.
|
|
|
|
|
*/
|
|
|
|
|
MESSAGE(8, ("Creating new message...\n"));
|
|
|
|
|
stab.btree_addr.offset = 11111111;
|
|
|
|
|
stab.heap_addr.offset = 22222222;
|
|
|
|
|
status = H5O_modify(&oh_ent, H5O_STAB, H5O_NEW_MESG, 0, &stab);
|
|
|
|
|
VERIFY(status, 0, "H5O_modify");
|
|
|
|
|
|
|
|
|
|
H5AC_flush(f, NULL, 0, TRUE);
|
|
|
|
|
ptr = H5O_read(&oh_ent, H5O_STAB, 0, &ro);
|
|
|
|
|
CHECK_PTR(ptr, "H5O_read");
|
|
|
|
|
VERIFY(ptr, &ro, "H5O_read");
|
|
|
|
|
VERIFY(ro.btree_addr.offset, stab.btree_addr.offset, "H5O_read");
|
|
|
|
|
VERIFY(ro.heap_addr.offset, stab.heap_addr.offset, "H5O_read");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test modification of an existing message.
|
|
|
|
|
*/
|
|
|
|
|
MESSAGE(8, ("Modifying message...\n"));
|
|
|
|
|
stab.btree_addr.offset = 33333333;
|
|
|
|
|
stab.heap_addr.offset = 44444444;
|
|
|
|
|
status = H5O_modify(&oh_ent, H5O_STAB, 0, 0, &stab);
|
|
|
|
|
VERIFY(status, 0, "H5O_modify");
|
|
|
|
|
|
|
|
|
|
H5AC_flush(f, NULL, 0, TRUE);
|
|
|
|
|
ptr = H5O_read(&oh_ent, H5O_STAB, 0, &ro);
|
|
|
|
|
CHECK_PTR(ptr, "H5O_read");
|
|
|
|
|
VERIFY(ptr, &ro, "H5O_read");
|
|
|
|
|
VERIFY(ro.btree_addr.offset, stab.btree_addr.offset, "H5O_read");
|
|
|
|
|
VERIFY(ro.heap_addr.offset, stab.heap_addr.offset, "H5O_read");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test creation of a second message of the same type with a symbol
|
|
|
|
|
* table.
|
|
|
|
|
*/
|
|
|
|
|
MESSAGE(8, ("Creating a duplicate message...\n"));
|
|
|
|
|
stab.btree_addr.offset = 55555555;
|
|
|
|
|
stab.heap_addr.offset = 66666666;
|
|
|
|
|
status = H5O_modify(&oh_ent, H5O_STAB, H5O_NEW_MESG, 0, &stab);
|
|
|
|
|
VERIFY(status, 1, "H5O_modify");
|
|
|
|
|
|
|
|
|
|
H5AC_flush(f, NULL, 0, TRUE);
|
|
|
|
|
ptr = H5O_read(&oh_ent, H5O_STAB, 1, &ro);
|
|
|
|
|
CHECK_PTR(ptr, "H5O_read");
|
|
|
|
|
VERIFY(ptr, &ro, "H5O_read");
|
|
|
|
|
VERIFY(ro.btree_addr.offset, stab.btree_addr.offset, "H5O_read");
|
|
|
|
|
VERIFY(ro.heap_addr.offset, stab.heap_addr.offset, "H5O_read");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test modification of the second message with a symbol table.
|
|
|
|
|
*/
|
|
|
|
|
MESSAGE(8, ("Modifying the duplicate message...\n"));
|
|
|
|
|
stab.btree_addr.offset = 77777777;
|
|
|
|
|
stab.heap_addr.offset = 88888888;
|
|
|
|
|
status = H5O_modify(&oh_ent, H5O_STAB, 1, 0, &stab);
|
|
|
|
|
VERIFY(status, 1, "H5O_modify");
|
|
|
|
|
|
|
|
|
|
H5AC_flush(f, NULL, 0, TRUE);
|
|
|
|
|
ptr = H5O_read(&oh_ent, H5O_STAB, 1, &ro);
|
|
|
|
|
CHECK_PTR(ptr, "H5O_read");
|
|
|
|
|
VERIFY(ptr, &ro, "H5O_read");
|
|
|
|
|
VERIFY(ro.btree_addr.offset, stab.btree_addr.offset, "H5O_read");
|
|
|
|
|
VERIFY(ro.heap_addr.offset, stab.heap_addr.offset, "H5O_read");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test creation of a bunch of messages one after another to see
|
|
|
|
|
* what happens when the object header overflows in core.
|
|
|
|
|
*/
|
|
|
|
|
MESSAGE(8, ("Overflowing header in core...\n"));
|
|
|
|
|
for (i = 0; i < 40; i++) {
|
|
|
|
|
stab.btree_addr.offset = (i + 1) * 1000 + 1;
|
|
|
|
|
stab.heap_addr.offset = (i + 1) * 1000 + 2;
|
|
|
|
|
status = H5O_modify(&oh_ent, H5O_STAB, H5O_NEW_MESG, 0, &stab);
|
|
|
|
|
VERIFY(status, 2 + i, "H5O_modify");
|
|
|
|
|
}
|
|
|
|
|
H5AC_flush(f, NULL, 0, TRUE);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test creation of a bunch of messages one after another to see
|
|
|
|
|
* what happens when the object header overflows on disk.
|
|
|
|
|
*/
|
|
|
|
|
MESSAGE(8, ("Overflowing header on disk...\n"));
|
|
|
|
|
for (i = 0; i < 10; i++) {
|
|
|
|
|
stab.btree_addr.offset = (i + 1) * 1000 + 10;
|
|
|
|
|
stab.heap_addr.offset = (i + 1) * 1000 + 20;
|
|
|
|
|
status = H5O_modify(&oh_ent, H5O_STAB, H5O_NEW_MESG, 0, &stab);
|
|
|
|
|
VERIFY(status, 42 + i, "H5O_modify");
|
|
|
|
|
H5AC_flush(f, NULL, 0, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Delete all symbol table messages.
|
|
|
|
|
*/
|
|
|
|
|
status = H5O_remove(&oh_ent, H5O_STAB, H5O_ALL);
|
|
|
|
|
CHECK_I(status, "H5O_remove");
|
|
|
|
|
|
|
|
|
|
/* release resources */
|
|
|
|
|
H5O_close(&oh_ent);
|
|
|
|
|
H5Fclose(fid);
|
1997-08-08 03:23:41 +08:00
|
|
|
|
}
|