HdfAttribute_priv.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //
  2. // Created by patrik on 11.08.17.
  3. //
  4. #ifndef HDF4CPP_HDFATTRIBUTE_PRIV_H
  5. #define HDF4CPP_HDFATTRIBUTE_PRIV_H
  6. #include "HdfAttribute.h"
  7. #include <hdf4cpp/HdfException.h>
  8. #include <hdf4cpp/HdfObject.h>
  9. #include <hdf4cpp/HdfDestroyer.h>
  10. #include <hdf/hdf.h>
  11. #include <hdf/mfhdf.h>
  12. #include <string>
  13. #include <vector>
  14. #include <map>
  15. #include <memory>
  16. namespace hdf4cpp {
  17. class HdfAttributeBase : public HdfObject {
  18. public:
  19. HdfAttributeBase(int32 id, int32 index, Type type, const HdfDestroyerChain& chain) : HdfObject(type,
  20. ATTRIBUTE,
  21. chain),
  22. id(id),
  23. index(index) {
  24. if (id == FAIL || index == FAIL) {
  25. raiseException(INVALID_ID);
  26. }
  27. }
  28. virtual ~HdfAttributeBase() {}
  29. virtual intn size() const = 0;
  30. virtual int32 getDataType() const = 0;
  31. virtual void get(void* dest) = 0;
  32. protected:
  33. int32 id;
  34. int32 index;
  35. };
  36. class HdfDatasetAttribute : public HdfAttributeBase {
  37. public:
  38. HdfDatasetAttribute(int32 id, const std::string& name, const HdfDestroyerChain& chain);
  39. intn size() const;
  40. private:
  41. intn _size;
  42. int32 dataType;
  43. void get(void *dest);
  44. int32 getDataType() const;
  45. };
  46. class HdfGroupAttribute : public HdfAttributeBase {
  47. public:
  48. HdfGroupAttribute(int32 id, const std::string& name, const HdfDestroyerChain& chain);
  49. intn size() const;
  50. private:
  51. intn _size;
  52. int32 dataType;
  53. void get(void *dest);
  54. int32 getDataType() const;
  55. };
  56. class HdfDataAttribute : public HdfAttributeBase {
  57. public:
  58. HdfDataAttribute(int32 id, const std::string& name, const HdfDestroyerChain& chain);
  59. intn size() const;
  60. private:
  61. intn _size;
  62. int32 dataType;
  63. void get(void *dest);
  64. int32 getDataType() const;
  65. };
  66. }
  67. #endif //HDF4CPP_HDFATTRIBUTE_PRIV_H