HDF5在磁盘上将32位无符号int写入64位,并读取32位无信号int

HDF5 write out 32 bit unsigned int to 64 bits on disk and read into 32 bit unsigned int

本文关键字:32位 int 读取 信号 64位 写入 无符号 HDF5 磁盘      更新时间:2023-10-16

我正试图使用HDF5在磁盘上写出一个32位unsigned int到64位unsigned long的矢量;然后将其读回存储器中的32位CCD_ 3中。为此,我的读写函数如下所示(我为32位unsigned int容器my_container实现了push_backresize等所有定义良好的函数):

bool write(const my_container<unsigned int>& p, const std::string& datapath, const H5::DateType& datatype):
    try {
       const hsize_t h5size[1] = { p.size() };
       const H5::DataSpace h5space(1, h5size);
       const H5::DataSet h5set = fileptr_->createDataSet(datapath, datatype, h5space);
       //-Tried using void* here for data, no difference
       const unsigned int* data = &(*p.begin()); 
       h5set.write(data, datatype);
    } 
    catch( H5::Exception& ) {
       //-Handle exception here
       return false;
    }
    return true;
}
read(my_container<unsigned int>& p, const H5::DataType& datatype, const std::string& datapath) {
    H5::DataType h5set_datatype = h5set.getDataType();
    const std::size_t size = (std::size_t)h5space.getSimpleExtentNpoints();
    try {
       if(h5set_datatype == H5::PredType::NATIVE_UINT64 && datatype == H5::PredType::NATIVE_UINT32 ) {
           typedef unsigned long long u64; 
           typedef std::vector<u64> u64vec;
           u64vec ivector;
           ivector.resize(size);
           void* data = (void*)(&(*ivector.begin()));
           h5set.read(data, h5set_datatype);
           p.resize(0);
           BOOST_FOREACH(const u64 &v, ivector) {
              //-I've handled the cast below using numeric cast separately
              p.push_back(v); 
           }
       } //-End compare datatypes on disk and memory
    } //-End try
    catch(const H5::Exception &e) {
        //-Handle exception
        return false;
    }
    return true;
}

我用实参调用write:对my_containerH5::Pred::NATIVE_UINT64read的const引用,用实参:对my_containerH5::Pred::NATIVE_UINT32的引用。这可能是问题的根源之一。如果需要进一步澄清,请告诉我。基本上,当我读回来的时候,我收到了垃圾。感谢任何HDF5专家的建议。谢谢你抽出时间。

解决方案在于更改写入函数以接受文件和内存数据类型:

bool write(const my_container<unsigned int>& p, const H5::DataType& file_datatype, const H5::DataType& mem_datatype, const std::string& datapath) const {
    try {
        const hsize_t h5size[1] = { p.size() };
        const H5::DataSpace h5space(1, h5size);
        const H5::DataSet h5set = fileptr_->createDataSet(datapath, file_datatype, h5space);
        const void* data = &(*p.begin());
        h5set.write(data, mem_datatype);
    } 
    catch( H5::Exception& ) {
        // Handle exception
        return false;
    }
    return true;
}

然后其余部分按预期工作-读取功能基本上没有变化;即使对于包含无符号整数对的容器也能做到这一点。