/usr/include/Field3D/Hdf5Util.h is in libfield3d-dev 1.7.2-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | //----------------------------------------------------------------------------//
/*
* Copyright (c) 2009 Sony Pictures Imageworks Inc
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution. Neither the name of Sony Pictures Imageworks nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
//----------------------------------------------------------------------------//
/*! \file Hdf5Util.h
\brief Contains various utility functions for Hdf5
\todo Clean up the attribute read/write functions. Make them throw
exceptions when failing.
*/
//----------------------------------------------------------------------------//
#ifndef _INCLUDED_Field3D_Hdf5Util_H_
#define _INCLUDED_Field3D_Hdf5Util_H_
//----------------------------------------------------------------------------//
#include <string>
#include <exception>
#include <vector>
#include <boost/lexical_cast.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/recursive_mutex.hpp>
#include <hdf5.h>
#include "Exception.h"
#include "Traits.h"
#include "Field.h"
//----------------------------------------------------------------------------//
#include "ns.h"
FIELD3D_NAMESPACE_OPEN
//----------------------------------------------------------------------------//
// Global HDF5 Mutex
//----------------------------------------------------------------------------//
FIELD3D_API extern boost::recursive_mutex g_hdf5Mutex;
typedef boost::recursive_mutex::scoped_lock GlobalLock;
//----------------------------------------------------------------------------//
// Hdf5Util classes
//----------------------------------------------------------------------------//
//! Contains utility functions and classes for Hdf5 files
//! \ingroup hdf5
namespace Hdf5Util {
//----------------------------------------------------------------------------//
//! Base class for all scoped Hdf5 util classes
//! \ingroup hdf5
class H5Base
{
public:
// Constructor
H5Base()
: m_id(-1)
{ /* Empty */ }
//! Query the hid_t value
hid_t id() const
{ return m_id; }
//! Implicit cast to hid_t
operator hid_t ()
{ return m_id; }
protected:
hid_t m_id;
};
//----------------------------------------------------------------------------//
//! Scoped object - Opens attribute by name and closes it on destruction.
//! \ingroup hdf5
class H5ScopedAopen : public H5Base
{
public:
H5ScopedAopen(hid_t location, const std::string &name)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Aopen(location, name.c_str(), H5P_DEFAULT);
if (m_id < 0)
throw Exc::MissingAttributeException("Couldn't open attribute " + name);
}
H5ScopedAopen(hid_t location, const std::string &name, hid_t aapl_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Aopen(location, name.c_str(), aapl_id);
if (m_id < 0)
throw Exc::MissingAttributeException("Couldn't open attribute " + name);
}
~H5ScopedAopen()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Aclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - Opens attribute by index and closes it on destruction.
//! \ingroup hdf5
class H5ScopedAopenIdx : public H5Base
{
public:
H5ScopedAopenIdx(hid_t location, unsigned idx)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Aopen_idx(location, idx);
if (m_id < 0)
throw Exc::MissingAttributeException("Couldn't open attribute at index: " +
boost::lexical_cast<std::string>(idx));
}
~H5ScopedAopenIdx()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Aclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - creates a group on creation and closes it on destruction.
//! \ingroup hdf5
class H5ScopedGcreate : public H5Base
{
public:
H5ScopedGcreate(hid_t parentLocation, const std::string &name)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Gcreate(parentLocation, name.c_str(),
H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
}
H5ScopedGcreate(hid_t parentLocation, const std::string &name,
hid_t lcpl_id, hid_t gcpl_id, hid_t gapl_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Gcreate(parentLocation, name.c_str(),
lcpl_id, gcpl_id, gapl_id);
}
~H5ScopedGcreate()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Gclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens a group on creation and closes it on destruction.
//! \ingroup hdf5
class H5ScopedGopen : public H5Base
{
public:
H5ScopedGopen()
: H5Base()
{
// Empty
}
H5ScopedGopen(hid_t parentLocation, const std::string &name)
{
open(parentLocation, name);
}
H5ScopedGopen(hid_t parentLocation, const std::string &name, hid_t gapl_id)
{
open(parentLocation, name, gapl_id);
}
void open(hid_t parentLocation, const std::string &name)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Gopen(parentLocation, name.c_str(), H5P_DEFAULT);
}
void open(hid_t parentLocation, const std::string &name, hid_t gapl_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Gopen(parentLocation, name.c_str(), gapl_id);
}
~H5ScopedGopen()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Gclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - creates a dataspace on creation and closes it on
//! destruction.
//! \ingroup hdf5
class H5ScopedScreate : public H5Base
{
public:
H5ScopedScreate()
: H5Base()
{
// Empty
}
H5ScopedScreate(H5S_class_t type)
{
create(type);
}
void create(H5S_class_t type)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Screate(type);
}
~H5ScopedScreate()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Sclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - creates a dataset on creation and closes it on destruction.
//! \ingroup hdf5
class H5ScopedDcreate : public H5Base
{
public:
H5ScopedDcreate(hid_t parentLocation, const std::string &name,
hid_t dtype_id, hid_t space_id, hid_t lcpl_id,
hid_t dcpl_id, hid_t dapl_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Dcreate(parentLocation, name.c_str(), dtype_id, space_id,
lcpl_id, dcpl_id, dapl_id);
}
~H5ScopedDcreate()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Dclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens an attribute data space on creation and closes it on
//! destruction.
//! \ingroup hdf5
class H5ScopedAget_space : public H5Base
{
public:
H5ScopedAget_space(hid_t dataset_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Aget_space(dataset_id);
if (m_id < 0)
throw Exc::AttrGetSpaceException("Couldn't get attribute space");
}
~H5ScopedAget_space()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Sclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens an attribute data type on creation and closes it on
//! destruction.
//! \ingroup hdf5
class H5ScopedAget_type : public H5Base
{
public:
H5ScopedAget_type(hid_t dataset_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Aget_type(dataset_id);
if (m_id < 0)
throw Exc::AttrGetTypeException("Couldn't get attribute type");
}
~H5ScopedAget_type()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Tclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens an native type id on creation and closes it on
//! destruction.
//! \ingroup hdf5
class H5ScopedTget_native_type : public H5Base
{
public:
H5ScopedTget_native_type(hid_t dataset_id, H5T_direction_t direction)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Tget_native_type(dataset_id, direction);
if (m_id < 0)
throw Exc::AttrGetNativeTypeException("Couldn't get native attribute type");
}
~H5ScopedTget_native_type()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Tclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens a dataset on creation and closes it on
//! destruction.
//! \ingroup hdf5
class H5ScopedDopen : public H5Base
{
public:
H5ScopedDopen()
: H5Base()
{
// Empty
}
H5ScopedDopen(hid_t parentLocation, const std::string &name, hid_t dapl_id)
{
open(parentLocation, name, dapl_id);
}
void open(hid_t parentLocation, const std::string &name, hid_t dapl_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Dopen(parentLocation, name.c_str(), dapl_id);
}
~H5ScopedDopen()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0) {
H5Dclose(m_id);
}
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens a dataset on creation and closes it on destruction.
//! \ingroup hdf5
class H5ScopedDget_space : public H5Base
{
public:
H5ScopedDget_space()
: H5Base()
{
// Empty
}
H5ScopedDget_space(hid_t dataset_id)
{
open(dataset_id);
}
void open(hid_t dataset_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Dget_space(dataset_id);
}
~H5ScopedDget_space()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Sclose(m_id);
}
};
//----------------------------------------------------------------------------//
//! Scoped object - opens a dataset on creation and closes it on
//! destruction.
//! \ingroup hdf5
class H5ScopedDget_type : public H5Base
{
public:
H5ScopedDget_type()
: H5Base()
{
// Empty
}
H5ScopedDget_type(hid_t dataset_id)
{
open(dataset_id);
}
void open(hid_t dataset_id)
{
GlobalLock lock(g_hdf5Mutex);
m_id = H5Dget_type(dataset_id);
}
~H5ScopedDget_type()
{
GlobalLock lock(g_hdf5Mutex);
if (m_id >= 0)
H5Tclose(m_id);
}
};
//----------------------------------------------------------------------------//
// Hdf5Util functions
//----------------------------------------------------------------------------//
/*! \name Read/write simple data to hdf5 location
\{
*/
//! Writes a simple linear data set to the given location
//! \ingroup hdf5
template <typename T>
void writeSimpleData(hid_t location, const std::string &name,
const std::vector<T> &data);
//! Reads a simple linear data set from the given location
//! \ingroup hdf5
template <typename T>
void readSimpleData(hid_t location, const std::string &name,
std::vector<T> &data);
//! \}
//----------------------------------------------------------------------------//
/*! \name Attribute reading
\{
*/
//! Reads a string attribute
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
std::string& value);
//! Reads an int attribute of arbitrary size
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
unsigned int attrSize, int &value);
//! Reads a float attribute of arbitrary size
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
unsigned int attrSize, float &value);
//! Reads a double attribute of arbitrary size
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
unsigned int attrSize, double &value);
//! Reads a int attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
int &value);
//! Reads a float attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
float &value);
//! Reads a double attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool readAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
double &value);
//! \}
//----------------------------------------------------------------------------//
/*! \name Attribute writing
\{
*/
//! Writes a string attribute
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
const std::string& value);
//! Writes an int attribute of arbitrary size
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
unsigned int attrSize, const int &value);
//! Writes a float attribute of arbitrary size
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
unsigned int attrSize, const float &value);
//! Writes a double attribute of arbitrary size
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
unsigned int attrSize, const double &value);
//! Writes a float attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
const int &value);
//! Writes a float attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
const int &value);
//! Writes a float attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
const float &value);
//! Writes a double attribute of arbitrary size and rank
//! \ingroup hdf5
FIELD3D_API bool writeAttribute(hid_t location, const std::string& attrName,
std::vector<unsigned int> &attrSize,
const double &value);
//! \}
//----------------------------------------------------------------------------//
//! Checks whether gzip is available in the current hdf5 library
//! \ingroup hdf5
FIELD3D_API bool checkHdf5Gzip();
//----------------------------------------------------------------------------//
// Templated functions and classes
//----------------------------------------------------------------------------//
template <typename T>
void writeSimpleData(hid_t location, const std::string &name,
const std::vector<T> &data)
{
using namespace Exc;
GlobalLock lock(g_hdf5Mutex);
// Calculate the total number of entries. This factors in that
// V3f uses 3 components per value, etc.
hsize_t totalSize[1];
int components = FieldTraits<T>::dataDims();
totalSize[0] = data.size() * components;
// Get the internal data type
hid_t type = DataTypeTraits<T>::h5type();
H5ScopedScreate dataSpace(H5S_SIMPLE);
if (dataSpace.id() < 0)
throw WriteSimpleDataException("Couldn't create data space");
H5Sset_extent_simple(dataSpace.id(), 1, totalSize, NULL);
H5ScopedDcreate dataSet(location, name.c_str(), type, dataSpace.id(),
H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
if (dataSet.id() < 0)
throw WriteSimpleDataException("Couldn't create data set");
hid_t err = H5Dwrite(dataSet.id(), type, H5S_ALL, H5S_ALL,
H5P_DEFAULT, &data[0]);
if (err < 0)
throw WriteSimpleDataException("Couldn't write data");
}
//----------------------------------------------------------------------------//
template <typename T>
void readSimpleData(hid_t location, const std::string &name,
std::vector<T> &data)
{
using namespace Exc;
GlobalLock lock(g_hdf5Mutex);
int components = FieldTraits<T>::dataDims();
hsize_t dims[1];
H5ScopedDopen dataSet(location, name.c_str(), H5P_DEFAULT);
if (dataSet.id() < 0)
throw OpenDataSetException("Couldn't open data set: " + name);
H5ScopedDget_space dataSpace(dataSet.id());
H5ScopedDget_type dataType(dataSet.id());
H5Sget_simple_extent_dims(dataSpace.id(), dims, NULL);
if (dataSpace.id() < 0)
throw GetDataSpaceException("Couldn't get data space");
if (dataType.id() < 0)
throw GetDataTypeException("Couldn't get data type");
int reportedSize = dims[0] / components;
// Resize target
data.clear();
data.resize(reportedSize);
// Get the internal data type
hid_t type = DataTypeTraits<T>::h5type();
if (H5Dread(dataSet.id(), type, H5S_ALL, H5S_ALL,
H5P_DEFAULT, &data[0]) < 0) {
throw Hdf5DataReadException("Couldn't read simple data");
}
}
//----------------------------------------------------------------------------//
} // namespace Hdf5Util
//----------------------------------------------------------------------------//
FIELD3D_NAMESPACE_HEADER_CLOSE
//----------------------------------------------------------------------------//
#endif
|