|
@@ -5,18 +5,93 @@
|
|
|
#define HDF4CPP_HDFATTRIBUTE_H
|
|
|
|
|
|
#include <hdf/hdfi.h>
|
|
|
-#include <hdf4cpp/HdfObject.h>
|
|
|
#include <hdf4cpp/HdfItem.h>
|
|
|
+#include <hdf4cpp/HdfObject.h>
|
|
|
|
|
|
namespace hdf4cpp {
|
|
|
|
|
|
/// Represents an hdf attribute
|
|
|
class HdfAttribute : public HdfObject {
|
|
|
+ private:
|
|
|
+ /// The base class of the attribute classes
|
|
|
+ class HdfAttributeBase : public HdfObject {
|
|
|
+ public:
|
|
|
+ HdfAttributeBase(int32 id, int32 index, Type type, const HdfDestroyerChain &chain)
|
|
|
+ : HdfObject(type, ATTRIBUTE, chain)
|
|
|
+ , id(id)
|
|
|
+ , index(index) {
|
|
|
+ if (id == FAIL || index == FAIL) {
|
|
|
+ raiseException(INVALID_ID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ virtual ~HdfAttributeBase() {
|
|
|
+ }
|
|
|
+
|
|
|
+ /// \returns The number of existing data in the attribute
|
|
|
+ virtual intn size() const = 0;
|
|
|
+
|
|
|
+ /// \returns The data type number of the data held by the attribute
|
|
|
+ virtual int32 getDataType() const = 0;
|
|
|
+
|
|
|
+ /// Reads the data from the attribute
|
|
|
+ /// \param dest The destination vector
|
|
|
+ virtual void get(void *dest) = 0;
|
|
|
+
|
|
|
+ protected:
|
|
|
+ int32 id;
|
|
|
+
|
|
|
+ int32 index;
|
|
|
+ };
|
|
|
+
|
|
|
+ /// Attribute class for the SData attributes
|
|
|
+ class HdfDatasetAttribute : public HdfAttributeBase {
|
|
|
+ public:
|
|
|
+ HdfDatasetAttribute(int32 id, const std::string &name, const HdfDestroyerChain &chain);
|
|
|
+
|
|
|
+ intn size() const;
|
|
|
+
|
|
|
+ private:
|
|
|
+ intn _size;
|
|
|
+ int32 dataType;
|
|
|
+
|
|
|
+ void get(void *dest);
|
|
|
+ int32 getDataType() const;
|
|
|
+ };
|
|
|
+
|
|
|
+ /// Attribute class for the VGroup attributes
|
|
|
+ class HdfGroupAttribute : public HdfAttributeBase {
|
|
|
+ public:
|
|
|
+ HdfGroupAttribute(int32 id, const std::string &name, const HdfDestroyerChain &chain);
|
|
|
+
|
|
|
+ intn size() const;
|
|
|
+
|
|
|
+ private:
|
|
|
+ intn _size;
|
|
|
+ int32 dataType;
|
|
|
+
|
|
|
+ void get(void *dest);
|
|
|
+ int32 getDataType() const;
|
|
|
+ };
|
|
|
+
|
|
|
+ /// Attribute class for the VData attributes
|
|
|
+ class HdfDataAttribute : public HdfAttributeBase {
|
|
|
+ public:
|
|
|
+ HdfDataAttribute(int32 id, const std::string &name, const HdfDestroyerChain &chain);
|
|
|
+
|
|
|
+ intn size() const;
|
|
|
+
|
|
|
+ private:
|
|
|
+ intn _size;
|
|
|
+ int32 dataType;
|
|
|
+ void get(void *dest);
|
|
|
+ int32 getDataType() const;
|
|
|
+ };
|
|
|
+
|
|
|
public:
|
|
|
- HdfAttribute(const HdfAttribute&) = delete;
|
|
|
- HdfAttribute(HdfAttribute&& attr);
|
|
|
- HdfAttribute& operator=(const HdfAttribute& attribute) = delete;
|
|
|
- HdfAttribute& operator=(HdfAttribute&& attribute);
|
|
|
+ HdfAttribute(const HdfAttribute &) = delete;
|
|
|
+ HdfAttribute(HdfAttribute &&attr);
|
|
|
+ HdfAttribute &operator=(const HdfAttribute &attribute) = delete;
|
|
|
+ HdfAttribute &operator=(HdfAttribute &&attribute);
|
|
|
/// \returns the number of elements of the attribute data
|
|
|
intn size() const;
|
|
|
|
|
@@ -42,11 +117,6 @@ class HdfAttribute : public HdfObject {
|
|
|
friend HdfAttribute HdfItem::HdfDataItem::getAttribute(const std::string &name) const;
|
|
|
|
|
|
private:
|
|
|
- class HdfAttributeBase;
|
|
|
- class HdfDatasetAttribute;
|
|
|
- class HdfGroupAttribute;
|
|
|
- class HdfDataAttribute;
|
|
|
-
|
|
|
HdfAttribute(HdfAttributeBase *attribute);
|
|
|
|
|
|
/// An internal get function
|
|
@@ -58,4 +128,4 @@ class HdfAttribute : public HdfObject {
|
|
|
};
|
|
|
}
|
|
|
|
|
|
-#endif //HDF4CPP_HDFATTRIBUTE_H
|
|
|
+#endif // HDF4CPP_HDFATTRIBUTE_H
|