1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
comp.c - Test HDF compressed data I/O routines
These are written to test all combinations of modeling and
encoding layers with different number types.
*/
#include <time.h>
#include "tproto.h"
#include "hfile_priv.h"
#define TESTFILE_NAME "tcomp.hdf"
#define BUFSIZE 4096
/* last ditch attempt to define this value... */
#ifndef UINT_MAX
#define UINT_MAX (unsigned)(-1)
#endif /* UINT_MAX */
/* make a guess about RAND_MAX if it isn't defined... */
#ifndef RAND_MAX
#define RAND_MAX (UINT_MAX)
#endif /* RAND_MAX */
/* define aliases for random number generation */
#define RAND rand
#define SEED(a) srand((unsigned)(a))
#define COMP_TAG 1000
/* different modeling layers to test */
comp_model_t test_models[] = {COMP_MODEL_STDIO};
/* different compression layers to test */
comp_coder_t test_coders[] = {COMP_CODE_NONE,
COMP_CODE_RLE
/*,COMP_CODE_NBIT */ /* n-bit testing is done in it's own module, nbit.c */
,
COMP_CODE_SKPHUFF, COMP_CODE_DEFLATE};
int32 test_ntypes[] = {DFNT_INT8, DFNT_UINT8, DFNT_INT16, DFNT_UINT16, DFNT_INT32, DFNT_UINT32};
#define NUM_OUTBUFS 4 /* the number of different output buffers to test */
/* outbuf #1 is all zeros (very easy to compress) */
/* outbuf #2 is a fibonacci sequence (very hard to compress) */
/* outbuf #3 is random data (also hard to compress) */
/* outbuf #4 is random in the low byte and mostly static in the upper byte(s) */
static int8 *outbuf_int8[NUM_OUTBUFS];
static uint8 *outbuf_uint8[NUM_OUTBUFS];
static int16 *outbuf_int16[NUM_OUTBUFS];
static uint16 *outbuf_uint16[NUM_OUTBUFS];
static int32 *outbuf_int32[NUM_OUTBUFS];
static uint32 *outbuf_uint32[NUM_OUTBUFS];
/* only need one input buffer per type of data */
static int8 *inbuf_int8;
static uint8 *inbuf_uint8;
static int16 *inbuf_int16;
static uint16 *inbuf_uint16;
static int32 *inbuf_int32;
static uint32 *inbuf_uint32;
/* local function prototypes */
static void init_model_info(comp_model_t m_type, model_info *m_info, int32 test_ntype);
static void init_coder_info(comp_coder_t c_type, comp_info *c_info, int32 test_ntype);
static void allocate_buffers(void);
static void init_buffers(void);
static void free_buffers(void);
static uint16 write_data(int32 fid, comp_model_t m_type, model_info *m_info, comp_coder_t c_type,
comp_info *c_info, intn test_num, int32 ntype);
static void read_data(int32 fid, uint16 ref_num, intn test_num, int32 ntype);
static void
init_model_info(comp_model_t m_type, model_info *m_info, int32 test_ntype)
{
(void)m_type;
(void)m_info;
(void)test_ntype;
switch (m_type) {
case COMP_MODEL_STDIO:
default:
/* don't do anything for this case */
break;
} /* end switch */
} /* end init_model_info() */
static void
init_coder_info(comp_coder_t c_type, comp_info *c_info, int32 test_ntype)
{
switch (c_type) {
case COMP_CODE_SKPHUFF:
c_info->skphuff.skp_size = DFKNTsize(test_ntype);
break;
case COMP_CODE_RLE:
case COMP_CODE_NONE:
default:
/* don't do anything for this case */
break;
} /* end switch */
} /* end init_coder_info() */
static void
allocate_buffers(void)
{
intn i;
for (i = 0; i < NUM_OUTBUFS; i++) {
outbuf_int8[i] = (int8 *)malloc(BUFSIZE * sizeof(int8));
outbuf_uint8[i] = (uint8 *)malloc(BUFSIZE * sizeof(uint8));
outbuf_int16[i] = (int16 *)malloc(BUFSIZE * sizeof(int16));
outbuf_uint16[i] = (uint16 *)malloc(BUFSIZE * sizeof(uint16));
outbuf_int32[i] = (int32 *)malloc(BUFSIZE * sizeof(int32));
outbuf_uint32[i] = (uint32 *)malloc(BUFSIZE * sizeof(uint32));
} /* end for */
inbuf_int8 = (int8 *)calloc(BUFSIZE, sizeof(int8));
inbuf_uint8 = (uint8 *)calloc(BUFSIZE, sizeof(uint8));
inbuf_int16 = (int16 *)calloc(BUFSIZE, sizeof(int16));
inbuf_uint16 = (uint16 *)calloc(BUFSIZE, sizeof(uint16));
inbuf_int32 = (int32 *)calloc(BUFSIZE, sizeof(int32));
inbuf_uint32 = (uint32 *)calloc(BUFSIZE, sizeof(uint32));
} /* allocate_buffers() */
static void
init_buffers(void)
{
intn i, j;
for (i = 0; i < NUM_OUTBUFS; i++) {
switch (i) {
case 0: /* all zero filled */
memset(outbuf_int8[i], 0, BUFSIZE * sizeof(int8));
memset(outbuf_uint8[i], 0, BUFSIZE * sizeof(uint8));
memset(outbuf_int16[i], 0, BUFSIZE * sizeof(int16));
memset(outbuf_uint16[i], 0, BUFSIZE * sizeof(uint16));
memset(outbuf_int32[i], 0, BUFSIZE * sizeof(int32));
memset(outbuf_uint32[i], 0, BUFSIZE * sizeof(uint32));
break;
case 1: /* fibonacci sequence */
{
uint32 last_fib, curr_fib, next_fib;
for (j = 0, last_fib = 0, curr_fib = 1; j < BUFSIZE; j++) {
outbuf_int8[i][j] = (int8)curr_fib;
outbuf_uint8[i][j] = (uint8)curr_fib;
outbuf_int16[i][j] = (int16)curr_fib;
outbuf_uint16[i][j] = (uint16)curr_fib;
outbuf_int32[i][j] = (int32)curr_fib;
outbuf_uint32[i][j] = (uint32)curr_fib;
next_fib = curr_fib + last_fib;
last_fib = curr_fib;
curr_fib = next_fib;
} /* end for */
} /* end case */
break;
case 2: /* random #'s */
{
intn r;
SEED(time(NULL));
for (j = 0; j < BUFSIZE; j++) {
r = RAND();
outbuf_int8[i][j] = (int8)(r - RAND_MAX / 2);
outbuf_uint8[i][j] = (uint8)r;
outbuf_int16[i][j] = (int16)(r - RAND_MAX / 2);
outbuf_uint16[i][j] = (uint16)r;
outbuf_int32[i][j] = (int32)(r - RAND_MAX / 2);
outbuf_uint32[i][j] = (uint32)r;
} /* end for */
} /* end case */
break;
case 3: /* random in the low byte and static in the upper */
{
uint32 r;
SEED(time(NULL));
for (j = 0; j < BUFSIZE; j++) {
r = (uint32)RAND();
r &= (uint32)0xff; /* make the lower byte random */
r |= (uint32)(((j / 4) % 4) << 8); /* make the upper bytes change slowly */
outbuf_int8[i][j] = (int8)r;
outbuf_uint8[i][j] = (uint8)r;
outbuf_int16[i][j] = (int16)r;
outbuf_uint16[i][j] = (uint16)r;
outbuf_int32[i][j] = (int32)r;
outbuf_uint32[i][j] = (uint32)r;
} /* end for */
} /* end case */
break;
} /* end switch */
} /* end for */
} /* init_buffers() */
static void
free_buffers(void)
{
intn i;
for (i = 0; i < NUM_OUTBUFS; i++) {
free(outbuf_int8[i]);
free(outbuf_uint8[i]);
free(outbuf_int16[i]);
free(outbuf_uint16[i]);
free(outbuf_int32[i]);
free(outbuf_uint32[i]);
}
free(inbuf_int8);
free(inbuf_uint8);
free(inbuf_int16);
free(inbuf_uint16);
free(inbuf_int32);
free(inbuf_uint32);
} /* free_buffers() */
static uint16
write_data(int32 fid, comp_model_t m_type, model_info *m_info, comp_coder_t c_type, comp_info *c_info,
intn test_num, int32 ntype)
{
int32 aid;
uint16 ret_ref;
int32 err_ret;
int32 write_size;
void *data_ptr;
MESSAGE(8, {
char *s = HDgetNTdesc(ntype);
printf("Writing data for test %d, ntype=%s, model_type=%d, coder_type=%d\n", (int)test_num,
(s == NULL ? "Unknown" : s), (int)m_type, (int)c_type);
free(s);
})
ret_ref = Hnewref(fid);
aid = HCcreate(fid, COMP_TAG, ret_ref, m_type, m_info, c_type, c_info);
CHECK(aid, FAIL, "HCcreate");
if (aid == FAIL)
return 0;
switch (ntype) {
case DFNT_INT8:
data_ptr = (void *)outbuf_int8[test_num];
break;
case DFNT_UINT8:
data_ptr = (void *)outbuf_uint8[test_num];
break;
case DFNT_INT16:
data_ptr = (void *)outbuf_int16[test_num];
break;
case DFNT_UINT16:
data_ptr = (void *)outbuf_uint16[test_num];
break;
case DFNT_INT32:
data_ptr = (void *)outbuf_int32[test_num];
break;
case DFNT_UINT32:
data_ptr = (void *)outbuf_uint32[test_num];
break;
default:
return 0;
} /* end switch */
write_size = BUFSIZE * DFKNTsize(ntype);
err_ret = Hwrite(aid, write_size, data_ptr);
if (err_ret != write_size) {
fprintf(stderr, "ERROR(%d): Hwrite returned the wrong length: %d\n", __LINE__, (int)err_ret);
HEprint(stdout, 0);
num_errs++;
}
err_ret = Hendaccess(aid);
CHECK(err_ret, FAIL, "Hendaccess");
return ret_ref;
} /* end write_data() */
static void
read_data(int32 fid, uint16 ref_num, intn test_num, int32 ntype)
{
int32 aid;
int32 err_ret;
int32 read_size;
void *out_ptr;
void *in_ptr;
sp_info_block_t info_block;
intn i;
MESSAGE(8, {
char *s = HDgetNTdesc(ntype);
printf("Reading data for test %d, ntype=%s\n", (int)test_num, (s == NULL ? "Unknown" : s));
free(s);
})
aid = Hstartread(fid, COMP_TAG, ref_num);
CHECK_VOID(aid, FAIL, "Hstartread");
if (aid == FAIL)
return;
switch (ntype) {
case DFNT_INT8:
out_ptr = (void *)outbuf_int8[test_num];
in_ptr = (void *)inbuf_int8;
break;
case DFNT_UINT8:
out_ptr = (void *)outbuf_uint8[test_num];
in_ptr = (void *)inbuf_uint8;
break;
case DFNT_INT16:
out_ptr = (void *)outbuf_int16[test_num];
in_ptr = (void *)inbuf_int16;
break;
case DFNT_UINT16:
out_ptr = (void *)outbuf_uint16[test_num];
in_ptr = (void *)inbuf_uint16;
break;
case DFNT_INT32:
out_ptr = (void *)outbuf_int32[test_num];
in_ptr = (void *)inbuf_int32;
break;
case DFNT_UINT32:
out_ptr = (void *)outbuf_uint32[test_num];
in_ptr = (void *)inbuf_uint32;
break;
default:
return;
} /* end switch */
read_size = BUFSIZE * DFKNTsize(ntype);
err_ret = Hread(aid, read_size, in_ptr);
if (err_ret != read_size) {
fprintf(stderr, "ERROR(%d): Hwrite returned the wrong length: %d\n", __LINE__, (int)err_ret);
HEprint(stdout, 0);
num_errs++;
} /* end if */
if (memcmp(in_ptr, out_ptr, read_size) != 0) {
char *s = HDgetNTdesc(ntype);
HDget_special_info(aid, &info_block);
fprintf(stderr,
"ERROR: Data from test: %d, number type: %s, model type: %d, coder type: %d differs\n",
test_num, s, (int)info_block.model_type, (int)info_block.comp_type);
MESSAGE(
8, for (i = 0; i < read_size * DFKNTsize(ntype); i++) {
if (((char *)in_ptr)[i] != ((char *)out_ptr)[i])
printf("byte %i differs, written:%d, read in:%d\n", i, ((char *)out_ptr)[i],
((char *)in_ptr)[i]);
})
free(s);
num_errs++;
} /* end if */
err_ret = Hendaccess(aid);
CHECK_VOID(err_ret, FAIL, "Hendaccess");
} /* end read_data() */
void
test_comp(void)
{
model_info m_info;
comp_info c_info;
uint16 ref_num; /* reference number of the data written out */
int32 fid; /* file ID of HDF file for testing */
intn test_num, ntype_num, model_num, coder_num;
int32 ret;
MESSAGE(6, printf("Starting compression test\n");)
/* allocate room for the input and output buffers */
allocate_buffers();
/* fill the buffers with interesting data to compress */
init_buffers();
/* open the HDF file */
fid = Hopen(TESTFILE_NAME, DFACC_ALL, 0);
/* Cycle through the different testing data, the number types, */
/* the different modeling layers and the different coding layers, */
/* in that order */
for (test_num = 0; test_num < NUM_OUTBUFS; test_num++) {
for (ntype_num = 0; (size_t)ntype_num < (sizeof(test_ntypes) / sizeof(test_ntypes[0])); ntype_num++) {
for (model_num = 0; (size_t)model_num < (sizeof(test_models) / sizeof(test_models[0]));
model_num++) {
init_model_info(test_models[model_num], &m_info, test_ntypes[ntype_num]);
for (coder_num = 0; (size_t)coder_num < (sizeof(test_coders) / sizeof(test_coders[0]));
coder_num++) {
init_coder_info(test_coders[coder_num], &c_info, test_ntypes[ntype_num]);
ref_num = write_data(fid, test_models[model_num], &m_info, test_coders[coder_num],
&c_info, test_num, test_ntypes[ntype_num]);
read_data(fid, ref_num, test_num, test_ntypes[ntype_num]);
MESSAGE(6, {
int32 aid;
sp_info_block_t info_block;
aid = Hstartread(fid, COMP_TAG, ref_num);
HDget_special_info(aid, &info_block);
Hendaccess(aid);
printf("size of original HDF element=%ld\n", (long)Hlength(fid, COMP_TAG, ref_num));
printf("size of compressed HDF element=%ld\n", (long)info_block.comp_size);
})
} /* end for */
} /* end for */
} /* end for */
} /* end for */
/* close the HDF file */
ret = Hclose(fid);
CHECK_VOID(ret, FAIL, "Hclose");
/* free the input and output buffers */
free_buffers();
MESSAGE(6, printf("Finished compression test\n");)
} /* end test_comp() */
|