00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _H5DataSpace_H
00018 #define _H5DataSpace_H
00019
00020 #ifndef H5_NO_NAMESPACE
00021 namespace H5 {
00022 #endif
00023
00024 class H5_DLLCPP DataSpace : public IdComponent {
00025 public:
00026
00027 static const DataSpace ALL;
00028
00029
00030 DataSpace(H5S_class_t type = H5S_SCALAR);
00031
00032
00033 DataSpace(int rank, const hsize_t * dims, const hsize_t * maxdims = NULL);
00034
00035
00036 DataSpace& operator=( const DataSpace& rhs );
00037
00038
00039 virtual void close();
00040
00041
00042 void copy(const DataSpace& like_space);
00043
00044
00045 void extentCopy( DataSpace& dest_space ) const;
00046
00047
00048 void getSelectBounds( hsize_t* start, hsize_t* end ) const;
00049
00050
00051 hssize_t getSelectElemNpoints() const;
00052
00053
00054 void getSelectElemPointlist( hsize_t startpoint, hsize_t numpoints, hsize_t *buf ) const;
00055
00056
00057 void getSelectHyperBlocklist( hsize_t startblock, hsize_t numblocks, hsize_t *buf ) const;
00058
00059
00060 hssize_t getSelectHyperNblocks() const;
00061
00062
00063 hssize_t getSelectNpoints() const;
00064
00065
00066 int getSimpleExtentDims( hsize_t *dims, hsize_t *maxdims = NULL ) const;
00067
00068
00069 int getSimpleExtentNdims() const;
00070
00071
00072
00073 hssize_t getSimpleExtentNpoints() const;
00074
00075
00076 H5S_class_t getSimpleExtentType() const;
00077
00078
00079 bool isSimple() const;
00080
00081
00082 void offsetSimple( const hssize_t* offset ) const;
00083
00084
00085 void selectAll() const;
00086
00087
00088
00089 void selectElements( H5S_seloper_t op, const size_t num_elements, const hsize_t *coord) const;
00090
00091
00092 void selectHyperslab( H5S_seloper_t op, const hsize_t *count, const hsize_t *start, const hsize_t *stride = NULL, const hsize_t *block = NULL ) const;
00093
00094
00095 void selectNone() const;
00096
00097
00098 bool selectValid() const;
00099
00100
00101 void setExtentNone() const;
00102
00103
00104 void setExtentSimple( int rank, const hsize_t *current_size, const hsize_t *maximum_size = NULL ) const;
00105
00107 virtual H5std_string fromClass () const { return("DataSpace"); }
00108
00109
00110 DataSpace(const hid_t space_id);
00111
00112
00113 DataSpace(const DataSpace& original);
00114
00115
00116 virtual hid_t getId() const;
00117
00118
00119 virtual ~DataSpace();
00120
00121 private:
00122 hid_t id;
00123
00124 protected:
00125
00126 virtual void p_setId(const hid_t new_id);
00127 };
00128 #ifndef H5_NO_NAMESPACE
00129 }
00130 #endif
00131 #endif