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 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* 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 COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://www.hdfgroup.org/licenses. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import hdf.hdf5lib.H5;
import hdf.hdf5lib.HDF5Constants;
import hdf.hdf5lib.exceptions.HDF5Exception;
import hdf.hdf5lib.exceptions.HDF5LibraryException;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
public class TestH5S {
@Rule public TestName testname = new TestName();
long H5sid = HDF5Constants.H5I_INVALID_HID;
int H5rank = 2;
long H5dims[] = {5, 5};
long H5maxdims[] = {10, 10};
@Before
public void createH5file()
throws NullPointerException, HDF5Exception {
assertTrue("H5 open ids is 0", H5.getOpenIDCount()==0);
System.out.print(testname.getMethodName());
H5sid = H5.H5Screate_simple(H5rank, H5dims, H5maxdims);
assertTrue("H5.H5Screate_simple_extent", H5sid > 0);
}
@After
public void deleteH5file() throws HDF5LibraryException {
if (H5sid > 0) {
try {H5.H5Sclose(H5sid);} catch (Exception ex) {}
}
System.out.println();
}
@Test
public void testH5Sget_simple_extent_ndims() {
int read_rank = -1;
try {
read_rank = H5.H5Sget_simple_extent_ndims(H5sid);
assertTrue("H5.H5Sget_simple_extent_ndims", H5rank == read_rank);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_simple_extent_ndims: " + err);
}
}
@Test
public void testH5Sget_simple_extent_dims_null() {
int read_rank = -1;
try {
read_rank = H5.H5Sget_simple_extent_dims(H5sid, null, null);
assertTrue("H5.H5Sget_simple_extent_dims", H5rank == read_rank);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_simple_extent_dims: " + err);
}
}
@Test
public void testH5Sget_simple_extent_dims() {
int read_rank = -1;
long dims[] = {5, 5};
long maxdims[] = {10, 10};
try {
read_rank = H5.H5Sget_simple_extent_dims(H5sid, dims, maxdims);
assertTrue("H5.H5Sget_simple_extent_dims", H5rank == read_rank);
assertTrue("H5.H5Sget_simple_extent_dims:dims", H5dims[0] == dims[0]);
assertTrue("H5.H5Sget_simple_extent_dims:maxdims", H5maxdims[0] == maxdims[0]);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_simple_extent_dims: " + err);
}
}
@Test
public void testH5Sget_simple_extent_npoints() {
long num_elements = -1;
try {
num_elements = H5.H5Sget_simple_extent_npoints(H5sid);
assertTrue("H5.H5Sget_simple_extent_npoints", (H5dims[0]*H5dims[1]) == num_elements);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_simple_extent_npoints: " + err);
}
}
@Test
public void testH5Sget_simple_extent_type() {
int read_type = -1;
try {
read_type = H5.H5Sget_simple_extent_type(H5sid);
assertTrue("H5.H5Sget_simple_extent_type", HDF5Constants.H5S_SIMPLE == read_type);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_simple_extent_type: " + err);
}
}
@Test
public void testH5Sis_simple() {
boolean result = false;
try {
result = H5.H5Sis_simple(H5sid);
assertTrue("H5.H5Sis_simple", result);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sis_simple: " + err);
}
}
@Test
public void testH5Sset_extent_simple() {
long num_elements = -1;
try {
H5.H5Sset_extent_simple(H5sid, H5rank, H5maxdims, H5maxdims);
num_elements = H5.H5Sget_simple_extent_npoints(H5sid);
assertTrue("H5.H5Sget_simple_extent_npoints", (H5maxdims[0]*H5maxdims[1]) == num_elements);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sset_extent_simple: " + err);
}
}
@Test
public void testH5Sget_select_type() {
int read_type = -1;
try {
read_type = H5.H5Sget_select_type(H5sid);
assertTrue("H5.H5Sget_select_type", HDF5Constants.H5S_SEL_ALL == read_type);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sset_extent_none: " + err);
}
}
@Test
public void testH5Sset_extent_none() {
int read_type = -1;
try {
H5.H5Sset_extent_none(H5sid);
read_type = H5.H5Sget_simple_extent_type(H5sid);
assertTrue("H5.H5Sget_simple_extent_type: "+read_type, HDF5Constants.H5S_NULL == read_type);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sset_extent_none: " + err);
}
}
@Test
public void testH5Scopy() {
long sid = HDF5Constants.H5I_INVALID_HID;
int read_rank = -1;
try {
sid = H5.H5Scopy(H5sid);
assertTrue("H5.H5Sis_simple", sid > 0);
read_rank = H5.H5Sget_simple_extent_ndims(sid);
assertTrue("H5.H5Screate_simple_extent_ndims", H5rank == read_rank);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Scopy: " + err);
}
finally {
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
@Test
public void testH5Sextent_copy() {
long sid = HDF5Constants.H5I_INVALID_HID;
int class_type = -1;
try {
sid = H5.H5Screate(HDF5Constants.H5S_NULL);
assertTrue("H5.H5Screate_null", sid > 0);
H5.H5Sextent_copy(sid, H5sid);
class_type = H5.H5Sget_simple_extent_type(sid);
assertTrue("H5.H5Screate_null: type", class_type == HDF5Constants.H5S_SIMPLE);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sextent_copy: " + err);
}
finally {
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
@Test
public void testH5Sextent_equal() {
long sid = HDF5Constants.H5I_INVALID_HID;
boolean result = false;
try {
sid = H5.H5Screate(HDF5Constants.H5S_NULL);
assertTrue("H5.H5Screate_null",sid > 0);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Screate: null " + err);
}
try {
result = H5.H5Sextent_equal(sid, H5sid);
assertFalse("H5.testH5Sextent_equal",result);
H5.H5Sextent_copy(sid, H5sid);
result = H5.H5Sextent_equal(sid, H5sid);
assertTrue("H5.testH5Sextent_equal", result);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sextent_copy " + err);
}
finally {
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
@Test
public void testH5Sencode_decode_null_dataspace() {
long sid = HDF5Constants.H5I_INVALID_HID;
long decoded_sid = HDF5Constants.H5I_INVALID_HID;
byte[] null_sbuf = null;
boolean result = false;
try {
sid = H5.H5Screate(HDF5Constants.H5S_NULL);
assertTrue("H5.H5Screate_null", sid > 0);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Screate: null " + err);
}
try {
null_sbuf = H5.H5Sencode(sid);
assertFalse("H5.testH5Sencode", null_sbuf==null);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sencode " + err);
}
finally {
if(null_sbuf == null) {
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
try {
decoded_sid = H5.H5Sdecode(null_sbuf);
assertTrue("H5.testH5Sdecode", decoded_sid>0);
result = H5.H5Sextent_equal(sid, decoded_sid);
assertTrue("H5.testH5Sextent_equal", result);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sdecode " + err);
}
finally {
try {H5.H5Sclose(decoded_sid);} catch (Exception ex) {}
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
@Test
public void testH5Sencode_decode_scalar_dataspace() {
long sid = HDF5Constants.H5I_INVALID_HID;
long decoded_sid = HDF5Constants.H5I_INVALID_HID;
byte[] scalar_sbuf = null;
boolean result = false;
int iresult = -1;
long lresult = -1;
try {
sid = H5.H5Screate(HDF5Constants.H5S_SCALAR);
assertTrue("H5.H5Screate_null", sid > 0);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Screate: null " + err);
}
try {
scalar_sbuf = H5.H5Sencode(sid);
assertFalse("H5.testH5Sencode", scalar_sbuf==null);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sencode " + err);
}
finally {
if(scalar_sbuf == null) {
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
try {
decoded_sid = H5.H5Sdecode(scalar_sbuf);
assertTrue("H5.testH5Sdecode", decoded_sid>0);
result = H5.H5Sextent_equal(sid, decoded_sid);
assertTrue("H5.testH5Sextent_equal", result);
/* Verify decoded dataspace */
lresult = H5.H5Sget_simple_extent_npoints(decoded_sid);
assertTrue("H5.testH5Sget_simple_extent_npoints", lresult==1);
iresult = H5.H5Sget_simple_extent_ndims(decoded_sid);
assertTrue("H5.testH5Sget_simple_extent_ndims", iresult==0);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sdecode " + err);
}
finally {
try {H5.H5Sclose(decoded_sid);} catch (Exception ex) {}
try {H5.H5Sclose(sid);} catch (Exception ex) {}
}
}
@Test
public void testH5Sselect_none() {
int read_type = -1;
try {
H5.H5Sselect_none(H5sid);
read_type = H5.H5Sget_select_type(H5sid);
assertTrue("H5.H5Sget_select_type: "+read_type, HDF5Constants.H5S_SEL_NONE == read_type);
H5.H5Sselect_all(H5sid);
read_type = H5.H5Sget_select_type(H5sid);
assertTrue("H5.H5Sget_select_type: "+read_type, HDF5Constants.H5S_SEL_ALL == read_type);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sset_extent_none: " + err);
}
}
@Test
public void testH5Sget_select_npoints() {
long coord[][] = {{0,1},{2,4},{5,6}}; /* Coordinates for point selection */
long num_elements = -1;
try {
H5.H5Sselect_elements(H5sid, HDF5Constants.H5S_SELECT_SET, 3, coord);
num_elements = H5.H5Sget_select_npoints(H5sid);
assertTrue("H5.H5Sget_select_npoints: "+num_elements, 3 == num_elements);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_select_npoints: " + err);
}
}
@Test(expected = IllegalArgumentException.class)
public void testH5Sget_select_elem_pointlist_invalid() throws Throwable {
long coord[][] = {{0,1},{2,4},{5,6}}; /* Coordinates for point selection */
long getcoord[] = {-1,-1}; /* Coordinates for get point selection */
try {
H5.H5Sselect_elements(H5sid, HDF5Constants.H5S_SELECT_SET, 3, coord);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_select_elem_pointlist: " + err);
}
H5.H5Sget_select_elem_pointlist(H5sid, 0, 3, getcoord);
}
@Test
public void testH5Sget_select_elem_pointlist() {
long coord[][] = {{0,1},{2,3},{4,5}}; /* Coordinates for point selection */
long getcoord[] = {-1,-1,-1,-1,-1,-1}; /* Coordinates for get point selection */
try {
H5.H5Sselect_elements(H5sid, HDF5Constants.H5S_SELECT_SET, 3, coord);
H5.H5Sget_select_elem_pointlist(H5sid, 0, 3, getcoord);
assertTrue("H5.H5Sget_select_elem_pointlist", coord[0][0] == getcoord[0]);
assertTrue("H5.H5Sget_select_elem_pointlist", coord[0][1] == getcoord[1]);
assertTrue("H5.H5Sget_select_elem_pointlist", coord[1][0] == getcoord[2]);
assertTrue("H5.H5Sget_select_elem_pointlist", coord[1][1] == getcoord[3]);
assertTrue("H5.H5Sget_select_elem_pointlist", coord[2][0] == getcoord[4]);
assertTrue("H5.H5Sget_select_elem_pointlist", coord[2][1] == getcoord[5]);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_select_elem_pointlist: " + err);
}
}
@Test
public void testH5Sget_select_bounds() {
long lowbounds[] = {-1,-1};
long hibounds[] = {-1,-1};
try {
H5.H5Sget_select_bounds(H5sid, lowbounds, hibounds);
assertTrue("H5.H5Sget_select_bounds", 0 == lowbounds[0]);
assertTrue("H5.H5Sget_select_bounds", 0 == lowbounds[1]);
assertTrue("H5.H5Sget_select_bounds", (H5dims[0]-1) == hibounds[0]);
assertTrue("H5.H5Sget_select_bounds", (H5dims[1]-1) == hibounds[1]);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_select_bounds: " + err);
}
}
@Test
public void testH5Soffset_simple() {
long coord[][] = {{2,2},{2,4},{4,2},{4,4}}; /* Coordinates for point selection */
long lowbounds[] = {-1,-1};
long hibounds[] = {-1,-1};
try {
H5.H5Sselect_elements(H5sid, HDF5Constants.H5S_SELECT_SET, 4, coord);
H5.H5Sget_select_bounds(H5sid, lowbounds, hibounds);
assertTrue("H5.H5Sget_select_bounds", 2 == lowbounds[0]);
assertTrue("H5.H5Sget_select_bounds", 2 == lowbounds[1]);
assertTrue("H5.H5Sget_select_bounds", (H5dims[0]-1) == hibounds[0]);
assertTrue("H5.H5Sget_select_bounds", (H5dims[1]-1) == hibounds[1]);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_select_bounds: " + err);
}
try {
long offset[] = {-1,-1};
H5.H5Soffset_simple(H5sid, offset);
H5.H5Sget_select_bounds(H5sid, lowbounds, hibounds);
assertTrue("H5.H5Sget_select_bounds", 1 == lowbounds[0]);
assertTrue("H5.H5Sget_select_bounds", 1 == lowbounds[1]);
assertTrue("H5.H5Sget_select_bounds", (H5dims[0]-2) == hibounds[0]);
assertTrue("H5.H5Sget_select_bounds", (H5dims[1]-2) == hibounds[1]);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Soffset_simple: " + err);
}
}
@Test
public void testH5Sget_select_hyper() {
long space1 = HDF5Constants.H5I_INVALID_HID;
long start[] = {0,0};
long stride[] = {1,1};
long count[] = {1,1};
long block[] = {4,4};
long nblocks; // Number of hyperslab blocks
long blocks[] = {-1, -1, -1, -1, -1, -1, -1, -1}; // List of blocks
try {
// Copy "all" selection & space
space1 = H5.H5Scopy(H5sid);
assertTrue("H5.H5Scopy", H5sid > 0);
// 'AND' "all" selection with another hyperslab
H5.H5Sselect_hyperslab(space1, HDF5Constants.H5S_SELECT_AND, start, stride, count, block);
// Verify that there is only one block
nblocks = H5.H5Sget_select_hyper_nblocks(space1);
assertTrue("H5Sget_select_hyper_nblocks", nblocks == 1);
// Retrieve the block defined
H5.H5Sget_select_hyper_blocklist(space1, 0, nblocks, blocks);
// Verify that the correct block is defined
assertTrue("H5.H5Sget_select_hyper_blocklist", start[0] == blocks[0]);
assertTrue("H5.H5Sget_select_hyper_blocklist", start[1] == blocks[1]);
assertTrue("H5.H5Sget_select_hyper_blocklist", (block[0]-1) == blocks[2]);
assertTrue("H5.H5Sget_select_hyper_blocklist", (block[1]-1) == blocks[3]);
}
catch (Throwable err) {
err.printStackTrace();
fail("H5.H5Sget_select_bounds: " + err);
}
finally {
try {H5.H5Sclose(space1);} catch (Exception ex) {}
}
}
@Test
public void testH5Sget_select_valid() {
long space1 = HDF5Constants.H5I_INVALID_HID;
long start[] = {1,0};
long stride[] = {1,1};
long count[] = {2,3};
long block[] = {1,1};
long offset[] = {0,0}; // Offset of selection
try {
// Copy "all" selection & space
space1 = H5.H5Scopy(H5sid);
assertTrue("H5.H5Scopy", H5sid > 0);
// 'AND' "all" selection with another hyperslab
H5.H5Sselect_hyperslab(space1, HDF5Constants.H5S_SELECT_SET, start, stride, count, block);
// Check a valid offset
offset[0]=-1;
offset[1]=0;
H5.H5Soffset_simple(space1, offset);
assertTrue("H5Sselect_valid", H5.H5Sselect_valid(space1));
// Check an invalid offset
offset[0]=10;
offset[1]=0;
H5.H5Soffset_simple(space1, offset);
assertFalse("H5Sselect_valid", H5.H5Sselect_valid(space1));
/* Reset offset */
offset[0]=0;
offset[1]=0;
H5.H5Soffset_simple(space1, offset);
assertTrue("H5Sselect_valid", H5.H5Sselect_valid(space1));
}
catch (Throwable err) {
err.printStackTrace();
fail("testH5Sget_select_valid: " + err);
}
finally {
try {H5.H5Sclose(space1);} catch (Exception ex) {}
}
}
@Test
public void testH5Shyper_regular() {
long start[] = {1,0};
long stride[] = {1,1};
long count[] = {2,3};
long block[] = {1,1};
long q_start[] = new long[2];
long q_stride[] = new long[2];
long q_count[] = new long[2];
long q_block[] = new long[2];
boolean is_regular = false;
try {
// Set "regular" hyperslab selection
H5.H5Sselect_hyperslab(H5sid, HDF5Constants.H5S_SELECT_SET, start, stride, count, block);
// Query if 'hyperslab' selection is regular hyperslab (should be TRUE)
is_regular = H5.H5Sis_regular_hyperslab(H5sid);
assertTrue("H5.H5Sis_regular_hyperslab", is_regular);
// Retrieve the hyperslab parameters
H5.H5Sget_regular_hyperslab(H5sid, q_start, q_stride, q_count, q_block);
/* Verify the hyperslab parameters */
for(int u = 0; u < H5rank; u++) {
assertTrue("H5Sget_regular_hyperslab, start", start[u] == q_start[u]);
assertTrue("H5Sget_regular_hyperslab, stride", stride[u] == q_stride[u]);
assertTrue("H5Sget_regular_hyperslab, count", count[u] == q_count[u]);
assertTrue("H5Sget_regular_hyperslab, block", block[u] == q_block[u]);
} /* end for */
}
catch (Throwable err) {
err.printStackTrace();
fail("testH5Sget_select_valid: " + err);
}
}
}
|