|
@@ -1,18 +1,19 @@
|
|
/// \copyright Copyright (c) Catalysts GmbH
|
|
/// \copyright Copyright (c) Catalysts GmbH
|
|
/// \author Patrik Kovacs, Catalysts GmbH
|
|
/// \author Patrik Kovacs, Catalysts GmbH
|
|
|
|
|
|
|
|
+
|
|
#ifndef HDF4CPP_HDFITEM_H
|
|
#ifndef HDF4CPP_HDFITEM_H
|
|
#define HDF4CPP_HDFITEM_H
|
|
#define HDF4CPP_HDFITEM_H
|
|
|
|
|
|
#include <hdf4cpp/HdfDefines.h>
|
|
#include <hdf4cpp/HdfDefines.h>
|
|
-#include <hdf4cpp/HdfFile.h>
|
|
|
|
#include <hdf4cpp/HdfException.h>
|
|
#include <hdf4cpp/HdfException.h>
|
|
|
|
+#include <hdf4cpp/HdfFile.h>
|
|
|
|
|
|
#include <algorithm>
|
|
#include <algorithm>
|
|
|
|
+#include <hdf/hdf.h>
|
|
#include <map>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <vector>
|
|
-#include <hdf/hdf.h>
|
|
|
|
|
|
|
|
namespace hdf4cpp {
|
|
namespace hdf4cpp {
|
|
|
|
|
|
@@ -23,10 +24,15 @@ struct Range {
|
|
int32 begin;
|
|
int32 begin;
|
|
/// The number of data to be read
|
|
/// The number of data to be read
|
|
int32 quantity;
|
|
int32 quantity;
|
|
- /// The increasing number (stride = 1 : every data, stride = 2 : every second data, ...)
|
|
|
|
|
|
+ /// The increasing number (stride = 1 : every data, stride = 2 : every second
|
|
|
|
+ /// data, ...)
|
|
int32 stride;
|
|
int32 stride;
|
|
|
|
|
|
- Range(int32 begin = 0, int32 quantity = 0, int32 stride = 1) : begin(begin), quantity(quantity), stride(stride) {}
|
|
|
|
|
|
+ Range(int32 begin = 0, int32 quantity = 0, int32 stride = 1)
|
|
|
|
+ : begin(begin)
|
|
|
|
+ , quantity(quantity)
|
|
|
|
+ , stride(stride) {
|
|
|
|
+ }
|
|
|
|
|
|
/// What would be the number of data to read, if we read in this range
|
|
/// What would be the number of data to read, if we read in this range
|
|
intn size() const {
|
|
intn size() const {
|
|
@@ -37,16 +43,12 @@ struct Range {
|
|
}
|
|
}
|
|
|
|
|
|
/// Checks if the range is correct for a specific dimension
|
|
/// Checks if the range is correct for a specific dimension
|
|
- bool check(const int32& dim) const {
|
|
|
|
- return begin >= 0 ||
|
|
|
|
- begin < dim ||
|
|
|
|
- quantity >= 0 ||
|
|
|
|
- begin + quantity <= dim ||
|
|
|
|
- stride > 0;
|
|
|
|
|
|
+ bool check(const int32 &dim) const {
|
|
|
|
+ return begin >= 0 || begin < dim || quantity >= 0 || begin + quantity <= dim || stride > 0;
|
|
}
|
|
}
|
|
|
|
|
|
/// Fills a range vector with a dimension array
|
|
/// Fills a range vector with a dimension array
|
|
- static void fill(std::vector<Range>& ranges, const std::vector<int32>& dims) {
|
|
|
|
|
|
+ static void fill(std::vector<Range> &ranges, const std::vector<int32> &dims) {
|
|
for (size_t i = ranges.size(); i < dims.size(); ++i) {
|
|
for (size_t i = ranges.size(); i < dims.size(); ++i) {
|
|
ranges.push_back(Range(0, dims[i]));
|
|
ranges.push_back(Range(0, dims[i]));
|
|
}
|
|
}
|
|
@@ -57,11 +59,11 @@ class HdfAttribute;
|
|
|
|
|
|
/// Represents an hdf item
|
|
/// Represents an hdf item
|
|
class HdfItem : public HdfObject {
|
|
class HdfItem : public HdfObject {
|
|
-public:
|
|
|
|
- HdfItem(const HdfItem& item) = delete;
|
|
|
|
- HdfItem(HdfItem&& item);
|
|
|
|
- HdfItem& operator=(const HdfItem& item) = delete;
|
|
|
|
- HdfItem& operator=(HdfItem&& it);
|
|
|
|
|
|
+ public:
|
|
|
|
+ HdfItem(const HdfItem &item) = delete;
|
|
|
|
+ HdfItem(HdfItem &&item);
|
|
|
|
+ HdfItem &operator=(const HdfItem &item) = delete;
|
|
|
|
+ HdfItem &operator=(HdfItem &&it);
|
|
|
|
|
|
/// \returns The name of the item
|
|
/// \returns The name of the item
|
|
std::string getName() const;
|
|
std::string getName() const;
|
|
@@ -75,35 +77,36 @@ public:
|
|
|
|
|
|
/// \returns the attribute of the item with the given name
|
|
/// \returns the attribute of the item with the given name
|
|
/// \param name the name of the attribute
|
|
/// \param name the name of the attribute
|
|
- /// \note If there are multiple attributes with the same name then the first will be returned
|
|
|
|
- HdfAttribute getAttribute(const std::string& name) const;
|
|
|
|
|
|
+ /// \note If there are multiple attributes with the same name then the first
|
|
|
|
+ /// will be returned
|
|
|
|
+ HdfAttribute getAttribute(const std::string &name) const;
|
|
|
|
|
|
/// Reads the entire data from the item
|
|
/// Reads the entire data from the item
|
|
/// \param dest the destination vector in which the data will be stored
|
|
/// \param dest the destination vector in which the data will be stored
|
|
- template <class T> void read(std::vector<T>& dest) {
|
|
|
|
- switch(item->getType()) {
|
|
|
|
- case SDATA: {
|
|
|
|
- HdfDatasetItem *dItem = dynamic_cast<HdfDatasetItem *>(item.get());
|
|
|
|
- dItem->read(dest);
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- default:
|
|
|
|
- raiseException(INVALID_OPERATION);
|
|
|
|
|
|
+ template <class T> void read(std::vector<T> &dest) {
|
|
|
|
+ switch (item->getType()) {
|
|
|
|
+ case SDATA: {
|
|
|
|
+ HdfDatasetItem *dItem = dynamic_cast<HdfDatasetItem *>(item.get());
|
|
|
|
+ dItem->read(dest);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ default:
|
|
|
|
+ raiseException(INVALID_OPERATION);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/// Reads the data from the item in a specified range
|
|
/// Reads the data from the item in a specified range
|
|
/// \param dest the destination vector in which the data will be stored
|
|
/// \param dest the destination vector in which the data will be stored
|
|
/// \param ranges specifies the range in which the data will be read
|
|
/// \param ranges specifies the range in which the data will be read
|
|
- template <class T> void read(std::vector<T>& dest, std::vector<Range> ranges) {
|
|
|
|
- switch(item->getType()) {
|
|
|
|
- case SDATA: {
|
|
|
|
- HdfDatasetItem *dItem = dynamic_cast<HdfDatasetItem *>(item.get());
|
|
|
|
- dItem->read(dest, ranges);
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- default:
|
|
|
|
- raiseException(INVALID_OPERATION);
|
|
|
|
|
|
+ template <class T> void read(std::vector<T> &dest, std::vector<Range> ranges) {
|
|
|
|
+ switch (item->getType()) {
|
|
|
|
+ case SDATA: {
|
|
|
|
+ HdfDatasetItem *dItem = dynamic_cast<HdfDatasetItem *>(item.get());
|
|
|
|
+ dItem->read(dest, ranges);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ default:
|
|
|
|
+ raiseException(INVALID_OPERATION);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -111,15 +114,15 @@ public:
|
|
/// \param dest the destination vector in which the data will be stored
|
|
/// \param dest the destination vector in which the data will be stored
|
|
/// \param field the name of the field
|
|
/// \param field the name of the field
|
|
/// \param records the number of records to be read
|
|
/// \param records the number of records to be read
|
|
- template <class T> void read(std::vector<T>& dest, const std::string& field, int32 records = 0) {
|
|
|
|
- switch(item->getType()) {
|
|
|
|
- case VDATA: {
|
|
|
|
- HdfDataItem *vItem = dynamic_cast<HdfDataItem*>(item.get());
|
|
|
|
- vItem->read(dest, field, records);
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- default:
|
|
|
|
- raiseException(INVALID_OPERATION);
|
|
|
|
|
|
+ template <class T> void read(std::vector<T> &dest, const std::string &field, int32 records = 0) {
|
|
|
|
+ switch (item->getType()) {
|
|
|
|
+ case VDATA: {
|
|
|
|
+ HdfDataItem *vItem = dynamic_cast<HdfDataItem *>(item.get());
|
|
|
|
+ vItem->read(dest, field, records);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ default:
|
|
|
|
+ raiseException(INVALID_OPERATION);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -127,22 +130,24 @@ public:
|
|
Iterator begin() const;
|
|
Iterator begin() const;
|
|
Iterator end() const;
|
|
Iterator end() const;
|
|
|
|
|
|
- friend HdfItem HdfFile::get(const std::string& name) const;
|
|
|
|
- friend std::vector<HdfItem> HdfFile::getAll(const std::string& name) const;
|
|
|
|
|
|
+ friend HdfItem HdfFile::get(const std::string &name) const;
|
|
|
|
+ friend std::vector<HdfItem> HdfFile::getAll(const std::string &name) const;
|
|
friend HdfItem HdfFile::Iterator::operator*();
|
|
friend HdfItem HdfFile::Iterator::operator*();
|
|
friend class HdfAttribute;
|
|
friend class HdfAttribute;
|
|
|
|
|
|
-private:
|
|
|
|
|
|
+ private:
|
|
/// The base class of the item classes
|
|
/// The base class of the item classes
|
|
class HdfItemBase : public HdfObject {
|
|
class HdfItemBase : public HdfObject {
|
|
- public:
|
|
|
|
-
|
|
|
|
- HdfItemBase(int32 id, const Type& type, const HdfDestroyerChain& chain) : HdfObject(type, ITEM, chain), id(id) {
|
|
|
|
|
|
+ public:
|
|
|
|
+ HdfItemBase(int32 id, const Type &type, const HdfDestroyerChain &chain)
|
|
|
|
+ : HdfObject(type, ITEM, chain)
|
|
|
|
+ , id(id) {
|
|
if (id == FAIL) {
|
|
if (id == FAIL) {
|
|
raiseException(INVALID_ID);
|
|
raiseException(INVALID_ID);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- virtual ~HdfItemBase() {}
|
|
|
|
|
|
+ virtual ~HdfItemBase() {
|
|
|
|
+ }
|
|
|
|
|
|
/// Get the id which is held by this object
|
|
/// Get the id which is held by this object
|
|
virtual int32 getId() const = 0;
|
|
virtual int32 getId() const = 0;
|
|
@@ -153,30 +158,29 @@ private:
|
|
/// Get the number of data from the item
|
|
/// Get the number of data from the item
|
|
virtual intn size() const = 0;
|
|
virtual intn size() const = 0;
|
|
/// Get the attribute from the item given by its name
|
|
/// Get the attribute from the item given by its name
|
|
- virtual HdfAttribute getAttribute(const std::string& name) const = 0;
|
|
|
|
|
|
+ virtual HdfAttribute getAttribute(const std::string &name) const = 0;
|
|
|
|
|
|
- protected:
|
|
|
|
|
|
+ protected:
|
|
int32 id;
|
|
int32 id;
|
|
|
|
|
|
virtual int32 getDataType() const = 0;
|
|
virtual int32 getDataType() const = 0;
|
|
};
|
|
};
|
|
/// Item class for the SData items
|
|
/// Item class for the SData items
|
|
class HdfDatasetItem : public HdfItemBase {
|
|
class HdfDatasetItem : public HdfItemBase {
|
|
- public:
|
|
|
|
- HdfDatasetItem(int32 id, const HdfDestroyerChain& chain);
|
|
|
|
|
|
+ public:
|
|
|
|
+ HdfDatasetItem(int32 id, const HdfDestroyerChain &chain);
|
|
~HdfDatasetItem();
|
|
~HdfDatasetItem();
|
|
|
|
|
|
int32 getId() const;
|
|
int32 getId() const;
|
|
std::string getName() const;
|
|
std::string getName() const;
|
|
std::vector<int32> getDims();
|
|
std::vector<int32> getDims();
|
|
intn size() const;
|
|
intn size() const;
|
|
- HdfAttribute getAttribute(const std::string& name) const;
|
|
|
|
|
|
+ HdfAttribute getAttribute(const std::string &name) const;
|
|
|
|
|
|
/// Reads the data in a specific range. See Range
|
|
/// Reads the data in a specific range. See Range
|
|
/// \param dest The destination vector
|
|
/// \param dest The destination vector
|
|
/// \param ranges The vector of ranges
|
|
/// \param ranges The vector of ranges
|
|
- template <class T>
|
|
|
|
- void read(std::vector<T>& dest, std::vector<Range>& ranges) {
|
|
|
|
|
|
+ template <class T> void read(std::vector<T> &dest, std::vector<Range> &ranges) {
|
|
std::vector<int32> dims = getDims();
|
|
std::vector<int32> dims = getDims();
|
|
Range::fill(ranges, dims);
|
|
Range::fill(ranges, dims);
|
|
intn length = 1;
|
|
intn length = 1;
|
|
@@ -196,7 +200,7 @@ private:
|
|
}
|
|
}
|
|
dest.resize(length);
|
|
dest.resize(length);
|
|
std::vector<int32> start, quantity, stride;
|
|
std::vector<int32> start, quantity, stride;
|
|
- for (const auto& range : ranges) {
|
|
|
|
|
|
+ for (const auto &range : ranges) {
|
|
start.push_back(range.begin);
|
|
start.push_back(range.begin);
|
|
quantity.push_back(range.quantity);
|
|
quantity.push_back(range.quantity);
|
|
stride.push_back(range.stride);
|
|
stride.push_back(range.stride);
|
|
@@ -209,17 +213,16 @@ private:
|
|
|
|
|
|
/// Reads the whole data
|
|
/// Reads the whole data
|
|
/// \param dest The destination vector
|
|
/// \param dest The destination vector
|
|
- template <class T>
|
|
|
|
- void read(std::vector<T>& dest) {
|
|
|
|
|
|
+ template <class T> void read(std::vector<T> &dest) {
|
|
std::vector<int32> dims = getDims();
|
|
std::vector<int32> dims = getDims();
|
|
std::vector<Range> ranges;
|
|
std::vector<Range> ranges;
|
|
- for (const auto& dim : dims) {
|
|
|
|
|
|
+ for (const auto &dim : dims) {
|
|
ranges.push_back(Range(0, dim));
|
|
ranges.push_back(Range(0, dim));
|
|
}
|
|
}
|
|
read(dest, ranges);
|
|
read(dest, ranges);
|
|
}
|
|
}
|
|
|
|
|
|
- private:
|
|
|
|
|
|
+ private:
|
|
intn _size;
|
|
intn _size;
|
|
int32 dataType;
|
|
int32 dataType;
|
|
std::string name;
|
|
std::string name;
|
|
@@ -229,8 +232,8 @@ private:
|
|
};
|
|
};
|
|
/// Item class for VGroup items
|
|
/// Item class for VGroup items
|
|
class HdfGroupItem : public HdfItemBase {
|
|
class HdfGroupItem : public HdfItemBase {
|
|
- public:
|
|
|
|
- HdfGroupItem(int32 id, const HdfDestroyerChain& chain);
|
|
|
|
|
|
+ public:
|
|
|
|
+ HdfGroupItem(int32 id, const HdfDestroyerChain &chain);
|
|
~HdfGroupItem();
|
|
~HdfGroupItem();
|
|
|
|
|
|
int32 getId() const;
|
|
int32 getId() const;
|
|
@@ -238,17 +241,17 @@ private:
|
|
std::vector<int32> getDims();
|
|
std::vector<int32> getDims();
|
|
intn size() const;
|
|
intn size() const;
|
|
|
|
|
|
- HdfAttribute getAttribute(const std::string& name) const;
|
|
|
|
|
|
+ HdfAttribute getAttribute(const std::string &name) const;
|
|
|
|
|
|
- private:
|
|
|
|
|
|
+ private:
|
|
std::string name;
|
|
std::string name;
|
|
|
|
|
|
int32 getDataType() const;
|
|
int32 getDataType() const;
|
|
};
|
|
};
|
|
/// Item class for VData items
|
|
/// Item class for VData items
|
|
class HdfDataItem : public HdfItemBase {
|
|
class HdfDataItem : public HdfItemBase {
|
|
- public:
|
|
|
|
- HdfDataItem(int32 id, const HdfDestroyerChain& chain);
|
|
|
|
|
|
+ public:
|
|
|
|
+ HdfDataItem(int32 id, const HdfDestroyerChain &chain);
|
|
|
|
|
|
~HdfDataItem();
|
|
~HdfDataItem();
|
|
|
|
|
|
@@ -260,15 +263,14 @@ private:
|
|
|
|
|
|
intn size() const;
|
|
intn size() const;
|
|
|
|
|
|
- HdfAttribute getAttribute(const std::string& name) const;
|
|
|
|
|
|
+ HdfAttribute getAttribute(const std::string &name) const;
|
|
|
|
|
|
/// Reads a specific number of the data of a specific field
|
|
/// Reads a specific number of the data of a specific field
|
|
/// The records are simple values
|
|
/// The records are simple values
|
|
/// \param dest The destination vector
|
|
/// \param dest The destination vector
|
|
/// \param field The specific field name
|
|
/// \param field The specific field name
|
|
/// \param records The number of records to be read
|
|
/// \param records The number of records to be read
|
|
- template <class T>
|
|
|
|
- void read(std::vector<T>& dest, const std::string& field, int32 records) {
|
|
|
|
|
|
+ template <class T> void read(std::vector<T> &dest, const std::string &field, int32 records) {
|
|
if (!records) {
|
|
if (!records) {
|
|
records = nrRecords;
|
|
records = nrRecords;
|
|
}
|
|
}
|
|
@@ -277,8 +279,8 @@ private:
|
|
raiseException(STATUS_RETURN_FAIL);
|
|
raiseException(STATUS_RETURN_FAIL);
|
|
}
|
|
}
|
|
|
|
|
|
- int32 fieldSize = VSsizeof(id, (char*)field.c_str());
|
|
|
|
- if (sizeof(T) < (size_t) fieldSize) {
|
|
|
|
|
|
+ int32 fieldSize = VSsizeof(id, (char *)field.c_str());
|
|
|
|
+ if (sizeof(T) < (size_t)fieldSize) {
|
|
raiseException(BUFFER_SIZE_NOT_ENOUGH);
|
|
raiseException(BUFFER_SIZE_NOT_ENOUGH);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -291,7 +293,8 @@ private:
|
|
dest.resize(records);
|
|
dest.resize(records);
|
|
VOIDP buffptrs[1];
|
|
VOIDP buffptrs[1];
|
|
buffptrs[0] = dest.data();
|
|
buffptrs[0] = dest.data();
|
|
- if (VSfpack(id, _HDF_VSUNPACK, field.c_str(), buff.data(), size, records, field.c_str(), buffptrs) == FAIL) {
|
|
|
|
|
|
+ if (VSfpack(id, _HDF_VSUNPACK, field.c_str(), buff.data(), size, records, field.c_str(), buffptrs) ==
|
|
|
|
+ FAIL) {
|
|
raiseException(STATUS_RETURN_FAIL);
|
|
raiseException(STATUS_RETURN_FAIL);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -301,8 +304,7 @@ private:
|
|
/// \param dest The destination matrix (every record is a vector)
|
|
/// \param dest The destination matrix (every record is a vector)
|
|
/// \param field The specific field name
|
|
/// \param field The specific field name
|
|
/// \param records The number of records to be read
|
|
/// \param records The number of records to be read
|
|
- template <class T>
|
|
|
|
- void read(std::vector<std::vector<T> >& dest, const std::string& field, int32 records) {
|
|
|
|
|
|
+ template <class T> void read(std::vector<std::vector<T>> &dest, const std::string &field, int32 records) {
|
|
if (!records) {
|
|
if (!records) {
|
|
records = nrRecords;
|
|
records = nrRecords;
|
|
}
|
|
}
|
|
@@ -311,7 +313,7 @@ private:
|
|
raiseException(STATUS_RETURN_FAIL);
|
|
raiseException(STATUS_RETURN_FAIL);
|
|
}
|
|
}
|
|
|
|
|
|
- int32 fieldSize = VSsizeof(id, (char*)field.c_str());
|
|
|
|
|
|
+ int32 fieldSize = VSsizeof(id, (char *)field.c_str());
|
|
if (fieldSize % sizeof(T) != 0) {
|
|
if (fieldSize % sizeof(T) != 0) {
|
|
raiseException(BUFFER_SIZE_NOT_DIVISIBLE);
|
|
raiseException(BUFFER_SIZE_NOT_DIVISIBLE);
|
|
}
|
|
}
|
|
@@ -340,7 +342,7 @@ private:
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- private:
|
|
|
|
|
|
+ private:
|
|
intn _size;
|
|
intn _size;
|
|
std::string name;
|
|
std::string name;
|
|
|
|
|
|
@@ -361,20 +363,26 @@ private:
|
|
int32 vId;
|
|
int32 vId;
|
|
};
|
|
};
|
|
|
|
|
|
-/// HdfItem iterator, gives the possibility to iterate over the items from the item
|
|
|
|
|
|
+/// HdfItem iterator, gives the possibility to iterate over the items from the
|
|
|
|
+/// item
|
|
class HdfItem::Iterator : public HdfObject, public std::iterator<std::bidirectional_iterator_tag, HdfItem> {
|
|
class HdfItem::Iterator : public HdfObject, public std::iterator<std::bidirectional_iterator_tag, HdfItem> {
|
|
-public:
|
|
|
|
- Iterator(int32 sId, int32 vId, int32 key, int32 index, Type type, const HdfDestroyerChain& chain) :
|
|
|
|
- HdfObject(type, ITERATOR, chain),
|
|
|
|
- sId(sId),
|
|
|
|
- vId(vId),
|
|
|
|
- key(key),
|
|
|
|
- index(index) {}
|
|
|
|
-
|
|
|
|
- bool operator!=(const Iterator& it) { return index != it.index; }
|
|
|
|
- bool operator==(const Iterator& it) { return index == it.index; }
|
|
|
|
-
|
|
|
|
- Iterator& operator++() {
|
|
|
|
|
|
+ public:
|
|
|
|
+ Iterator(int32 sId, int32 vId, int32 key, int32 index, Type type, const HdfDestroyerChain &chain)
|
|
|
|
+ : HdfObject(type, ITERATOR, chain)
|
|
|
|
+ , sId(sId)
|
|
|
|
+ , vId(vId)
|
|
|
|
+ , key(key)
|
|
|
|
+ , index(index) {
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ bool operator!=(const Iterator &it) {
|
|
|
|
+ return index != it.index;
|
|
|
|
+ }
|
|
|
|
+ bool operator==(const Iterator &it) {
|
|
|
|
+ return index == it.index;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Iterator &operator++() {
|
|
++index;
|
|
++index;
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
@@ -383,7 +391,7 @@ public:
|
|
++index;
|
|
++index;
|
|
return it;
|
|
return it;
|
|
}
|
|
}
|
|
- Iterator& operator--() {
|
|
|
|
|
|
+ Iterator &operator--() {
|
|
--index;
|
|
--index;
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
@@ -395,13 +403,13 @@ public:
|
|
|
|
|
|
HdfItem operator*() {
|
|
HdfItem operator*() {
|
|
int32 tag, ref;
|
|
int32 tag, ref;
|
|
- if(Vgettagref(key, index, &tag, &ref) == FAIL) {
|
|
|
|
|
|
+ if (Vgettagref(key, index, &tag, &ref) == FAIL) {
|
|
raiseException(OUT_OF_RANGE);
|
|
raiseException(OUT_OF_RANGE);
|
|
}
|
|
}
|
|
- if(Visvs(key, ref)) {
|
|
|
|
|
|
+ if (Visvs(key, ref)) {
|
|
int32 id = VSattach(vId, ref, "r");
|
|
int32 id = VSattach(vId, ref, "r");
|
|
return HdfItem(new HdfDataItem(id, chain), sId, vId);
|
|
return HdfItem(new HdfDataItem(id, chain), sId, vId);
|
|
- } else if(Visvg(key, ref)) {
|
|
|
|
|
|
+ } else if (Visvg(key, ref)) {
|
|
int32 id = Vattach(vId, ref, "r");
|
|
int32 id = Vattach(vId, ref, "r");
|
|
return HdfItem(new HdfGroupItem(id, chain), sId, vId);
|
|
return HdfItem(new HdfGroupItem(id, chain), sId, vId);
|
|
} else {
|
|
} else {
|
|
@@ -410,7 +418,7 @@ public:
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-private:
|
|
|
|
|
|
+ private:
|
|
int32 sId;
|
|
int32 sId;
|
|
int32 vId;
|
|
int32 vId;
|
|
int32 key;
|
|
int32 key;
|
|
@@ -419,4 +427,4 @@ private:
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
-#endif //HDF4CPP_HDFITEM_H
|
|
|
|
|
|
+#endif // HDF4CPP_HDFITEM_H
|