c++ 如何将std::vector容器最好地< std::string >写入HDF5数据集?

qc6wkl3g  于 2023-05-20  发布在  其他
关注(0)|答案(9)|浏览(184)

给定一个字符串向量,将它们写入HDF5数据集的最佳方法是什么?现在我正在做如下的事情:

const unsigned int MaxStrLength = 512;

  struct TempContainer {
    char string[MaxStrLength];
  };

  void writeVector (hid_t group, std::vector<std::string> const & v)
  {
    //
    // Firstly copy the contents of the vector into a temporary container
    std::vector<TempContainer> tc;
    for (std::vector<std::string>::const_iterator i = v.begin ()
                                              , end = v.end ()
      ; i != end
      ; ++i)
    {
      TempContainer t;
      strncpy (t.string, i->c_str (), MaxStrLength);
      tc.push_back (t);
    }

    //
    // Write the temporary container to a dataset
    hsize_t     dims[] = { tc.size () } ;
    hid_t dataspace = H5Screate_simple(sizeof(dims)/sizeof(*dims)
                               , dims
                               , NULL);

    hid_t strtype = H5Tcopy (H5T_C_S1);
    H5Tset_size (strtype, MaxStrLength);

    hid_t datatype = H5Tcreate (H5T_COMPOUND, sizeof (TempConainer));
    H5Tinsert (datatype
      , "string"
      , HOFFSET(TempContainer, string)
      , strtype);

    hid_t dataset = H5Dcreate1 (group
                          , "files"
                          , datatype
                          , dataspace
                          , H5P_DEFAULT);

    H5Dwrite (dataset, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, &tc[0] );

    H5Dclose (dataset);
    H5Sclose (dataspace);
    H5Tclose (strtype);
    H5Tclose (datatype);
}

最后,我真的很想改变上面的内容,以便:
1.它使用可变长度字符串
1.我不需要一个临时容器
我对如何存储数据没有限制,例如,如果有更好的方法,它不必是 COMPOUND 数据类型。

**编辑:**只是为了缩小问题,我对C++端的数据比较熟悉,我需要大部分帮助的是HDF5端。

谢谢你的帮助。

vnjpjtjt

vnjpjtjt1#

[Many感谢dirkgently帮助回答这个问题。
要在HDF 5中写入可变长度字符串,请使用以下命令:

// Create the datatype as follows
hid_t datatype = H5Tcopy (H5T_C_S1);
H5Tset_size (datatype, H5T_VARIABLE);

// 
// Pass the string to be written to H5Dwrite
// using the address of the pointer!
const char * s = v.c_str ();
H5Dwrite (dataset
  , datatype
  , H5S_ALL
  , H5S_ALL
  , H5P_DEFAULT
  , &s );

编写容器的一种解决方案是单独编写每个元素。这可以通过hyperslabs来实现。
例如:

class WriteString
{
public:
  WriteString (hid_t dataset, hid_t datatype
      , hid_t dataspace, hid_t memspace)
    : m_dataset (dataset), m_datatype (datatype)
    , m_dataspace (dataspace), m_memspace (memspace)
    , m_pos () {}

private:
  hid_t m_dataset;
  hid_t m_datatype;
  hid_t m_dataspace;
  hid_t m_memspace;
  int m_pos;

//...

public:
  void operator ()(std::vector<std::string>::value_type const & v)
  {
    // Select the file position, 1 record at position 'pos'
    hsize_t count[] = { 1 } ;
    hsize_t offset[] = { m_pos++ } ;
    H5Sselect_hyperslab( m_dataspace
      , H5S_SELECT_SET
      , offset
      , NULL
      , count
      , NULL );

    const char * s = v.c_str ();
    H5Dwrite (m_dataset
      , m_datatype
      , m_memspace
      , m_dataspace
      , H5P_DEFAULT
      , &s );
    }    
};

//我的朋友

void writeVector (hid_t group, std::vector<std::string> const & v)
{
  hsize_t     dims[] = { m_files.size ()  } ;
  hid_t dataspace = H5Screate_simple(sizeof(dims)/sizeof(*dims)
                                    , dims, NULL);

  dims[0] = 1;
  hid_t memspace = H5Screate_simple(sizeof(dims)/sizeof(*dims)
                                    , dims, NULL);

  hid_t datatype = H5Tcopy (H5T_C_S1);
  H5Tset_size (datatype, H5T_VARIABLE);

  hid_t dataset = H5Dcreate1 (group, "files", datatype
                             , dataspace, H5P_DEFAULT);

  // 
  // Select the "memory" to be written out - just 1 record.
  hsize_t offset[] = { 0 } ;
  hsize_t count[] = { 1 } ;
  H5Sselect_hyperslab( memspace, H5S_SELECT_SET, offset
                     , NULL, count, NULL );

  std::for_each (v.begin ()
      , v.end ()
      , WriteStrings (dataset, datatype, dataspace, memspace));

  H5Dclose (dataset);
  H5Sclose (dataspace);
  H5Sclose (memspace);
  H5Tclose (datatype);
}
mlnl4t2r

mlnl4t2r2#

下面是一些使用HDF5 c++ API编写可变长度字符串向量的工作代码。
我在其他帖子中引用了一些建议:
1.使用H5T_C_S1和H5T_VARIABLE
1.使用string::c_str()获取指向字符串的指针
1.将指针放入char*vector中,并传递给HDF5 API
创建昂贵的字符串副本是不必要的(例如strdup())。c_str()返回一个指向基础字符串的null终止数据的指针。这正是该功能的目的。当然,带有嵌入空值的字符串将不能与此...
std::vector保证具有连续的底层存储,因此使用vectorvector::data()与使用原始数组相同,但当然比笨重的老式c方式更整洁和安全。

#include "H5Cpp.h"
void write_hdf5(H5::H5File file, const std::string& data_set_name,
                const std::vector<std::string>& strings )
{
    H5::Exception::dontPrint();

    try
    {
        // HDF5 only understands vector of char* :-(
        std::vector<const char*> arr_c_str;
        for (unsigned ii = 0; ii < strings.size(); ++ii) 
            arr_c_str.push_back(strings[ii].c_str());

        //
        //  one dimension
        // 
        hsize_t     str_dimsf[1] {arr_c_str.size()};
        H5::DataSpace   dataspace(1, str_dimsf);

        // Variable length string
        H5::StrType datatype(H5::PredType::C_S1, H5T_VARIABLE); 
        H5::DataSet str_dataset = file.createDataSet(data_set_name, datatype, dataspace);

        str_dataset.write(arr_c_str.data(), datatype);
    }
    catch (H5::Exception& err)
    {
        throw std::runtime_error(string("HDF5 Error in " ) 
                                    + err.getFuncName()
                                    + ": "
                                    + err.getDetailMsg());

    }
}
but5z9lq

but5z9lq3#

如果你正在寻找更干净的代码:我建议你创建一个仿函数,它将接受一个字符串并将其保存到HDF 5容器(以所需的模式)。理查德,我用错了算法,请重新检查!

std::for_each(v.begin(), v.end(), write_hdf5);

struct hdf5 : public std::unary_function<std::string, void> {
    hdf5() : _dataset(...) {} // initialize the HDF5 db
    ~hdf5() : _dataset(...) {} // close the the HDF5 db
    void operator(std::string& s) {
            // append 
            // use s.c_str() ?
    }
};

这有助于开始吗?

ulmd4ohb

ulmd4ohb4#

我也遇到过类似的问题,但需要注意的是,我希望将字符串的向量存储为一个 * 属性 *。属性的棘手之处在于,我们不能使用像hyperlabs这样的花哨的数据空间特性(至少在C++ API中是这样)。
但无论哪种情况,将字符串向量输入到数据集中的单个条目中可能都很有用(例如,如果您总是希望一起读取它们)。在这种情况下,所有的魔力都来自 type,而不是数据空间本身。
基本上有四个步骤:
1.创建一个指向字符串的vector<const char*>
1.创建一个hvl_t结构,指向该向量并包含其长度。
1.创建数据类型。这是一个H5::VarLenType包裹一个(可变长度)H5::StrType
1.将hvl_t类型写入数据集。
这个方法真正好的部分是,你把整个条目填充到HDF5认为是标量值的地方。这意味着使其成为属性(而不是数据集)是微不足道的。
无论您选择此解决方案还是在其自己的数据集条目中包含每个字符串的解决方案,可能也是所需性能的问题:如果你正在寻找对特定字符串的随机访问,最好将这些字符串写在数据集中,这样它们就可以被索引。如果你总是要把它们一起读出来,这个解决方案也可以。
这里有一个简短的例子,使用C++ API和一个简单的标量数据集来实现这一点:

#include <vector>
#include <string>
#include "H5Cpp.h"

int main(int argc, char* argv[]) {
  // Part 0: make up some data
  std::vector<std::string> strings;
  for (int iii = 0; iii < 10; iii++) {
    strings.push_back("this is " + std::to_string(iii));
  }

  // Part 1: grab pointers to the chars
  std::vector<const char*> chars;
  for (const auto& str: strings) {
    chars.push_back(str.data());
  }

  // Part 2: create the variable length type
  hvl_t hdf_buffer;
  hdf_buffer.p = chars.data();
  hdf_buffer.len = chars.size();

  // Part 3: create the type
  auto s_type = H5::StrType(H5::PredType::C_S1, H5T_VARIABLE);
  s_type.setCset(H5T_CSET_UTF8); // just for fun, you don't need this
  auto svec_type = H5::VarLenType(&s_type);

  // Part 4: write the output to a scalar dataset
  H5::H5File out_file("vtest.h5", H5F_ACC_EXCL);
  H5::DataSet dataset(
    out_file.createDataSet("the_ds", svec_type, H5S_SCALAR));
  dataset.write(&hdf_buffer, svec_type);

  return 0;
}
t3psigkw

t3psigkw5#

我迟到了,但我已经修改了利奥古德斯塔特的答案的基础上的评论有关segfaults。我用的是linux,但我没有这样的问题。我写了两个函数,一个是将std::string的向量写入到打开的H5File中给定名称的数据集,另一个是将结果数据集读回std::string的向量。请注意,在类型之间可能会有不必要的复制,但可以进行更优化。下面是用于编写和阅读的工作代码:

void write_varnames( const std::string& dsetname, const std::vector<std::string>& strings, H5::H5File& f)
  {
    H5::Exception::dontPrint();

    try
      {
        // HDF5 only understands vector of char* :-(
        std::vector<const char*> arr_c_str;
        for (size_t ii = 0; ii < strings.size(); ++ii)
      {
        arr_c_str.push_back(strings[ii].c_str());
      }

        //
        //  one dimension
        // 
        hsize_t     str_dimsf[1] {arr_c_str.size()};
        H5::DataSpace   dataspace(1, str_dimsf);

        // Variable length string
        H5::StrType datatype(H5::PredType::C_S1, H5T_VARIABLE); 
        H5::DataSet str_dataset = f.createDataSet(dsetname, datatype, dataspace);

        str_dataset.write(arr_c_str.data(), datatype);
      }
    catch (H5::Exception& err)
      {
        throw std::runtime_error(std::string("HDF5 Error in ")  
                 + err.getFuncName()
                 + ": "
                 + err.getDetailMsg());

      }
  }

并阅读:

std::vector<std::string> read_string_dset( const std::string& dsname, H5::H5File& f )
  {
    H5::DataSet cdataset = f.openDataSet( dsname );

    H5::DataSpace space = cdataset.getSpace();

    int rank = space.getSimpleExtentNdims();

    hsize_t dims_out[1];

    int ndims = space.getSimpleExtentDims( dims_out, NULL);

    size_t length = dims_out[0];

    std::vector<const char*> tmpvect( length, NULL );

    fprintf(stdout, "In read STRING dataset, got number of strings: [%ld]\n", length );

    std::vector<std::string> strs(length);
    H5::StrType datatype(H5::PredType::C_S1, H5T_VARIABLE); 
    cdataset.read( tmpvect.data(), datatype);

    for(size_t x=0; x<tmpvect.size(); ++x)
      {
        fprintf(stdout, "GOT STRING [%s]\n", tmpvect[x] );
        strs[x] = tmpvect[x];
      }

    return strs;
  }
p8ekf7hl

p8ekf7hl6#

如你所知,hdf5文件只接受char* 格式的数据,这是一个地址。所以最自然的方法是动态创建连续的地址(空间大小是给定的),并复制向量的值到它。

char* strs = NULL;
strs = (char*)malloc(date.size() * (date[0].size() + 1) * (char)sizeof(char));

for (int i = 0; i < date.size(); i++) {
    string s = date[i];
    strcpy(strs + i * (date[0].size() + 1), date[i].c_str());
}

完整代码如下所示,

bool writeString(hid_t file_id, vector<string>& date, string dateSetName) {
    hid_t dataset_id, dataspace_id;  /* identifiers */
    herr_t status;
    hid_t dtype;
    size_t size;
    hsize_t dims[1] = { date.size() };
    dataspace_id = H5Screate_simple(1, dims, NULL);

    dtype = H5Tcopy(H5T_C_S1);
    size = (date[0].size() + 1) * sizeof(char);
    status = H5Tset_size(dtype, size);

    char* strs = NULL;
    strs = (char*)malloc(date.size() * (date[0].size() + 1) * (char)sizeof(char));

    for (int i = 0; i < date.size(); i++) {
        string s = date[i];
        strcpy(strs + i * (date[0].size() + 1), date[i].c_str());
        
    }

    dataset_id = H5Dcreate(file_id, dateSetName.c_str(), dtype, dataspace_id, H5P_DEFAULT,
        H5P_DEFAULT, H5P_DEFAULT);

    status = H5Dwrite(dataset_id, dtype, H5S_ALL, H5S_ALL, H5P_DEFAULT, strs);

    status = H5Dclose(dataset_id);
    status = H5Sclose(dataspace_id);
    status = H5Tclose(dtype);
    free(strs);
    return true;
}

别忘了释放指针

weylhg0b

weylhg0b7#

你可以使用一个简单的std::vector来代替TempContainer(你也可以将它模板化以匹配T -> basic_string)。就像这样:

#include <algorithm>
#include <vector>
#include <string>
#include <functional>

class StringToVector
  : std::unary_function<std::vector<char>, std::string> {
public:
  std::vector<char> operator()(const std::string &s) const {
    // assumes you want a NUL-terminated string
    const char* str = s.c_str();
    std::size_t size = 1 + std::strlen(str);
    // s.size() != strlen(s.c_str())
    std::vector<char> buf(&str[0], &str[size]);
    return buf;
  }
};

void conv(const std::vector<std::string> &vi,
          std::vector<std::vector<char> > &vo)
{
  // assert vo.size() == vi.size()
  std::transform(vi.begin(), vi.end(),
                 vo.begin(),
                 StringToVector());
}
l2osamch

l2osamch8#

为了能够 * 读取 * std::vector<std::string>,我发布了我的解决方案,基于Leo的提示https://stackoverflow.com/a/15220532/364818
我混合了C和C++ API。请随意编辑此内容并使其更简单。
请注意,当您调用read时,HDF5 API返回char*指针列表。这些char*指针必须在使用后释放,否则会出现内存泄漏。
使用示例

H5::Attribute Foo = file.openAttribute("Foo");
std::vector<std::string> foos
Foo >> foos;

这是密码

const H5::Attribute& operator>>(const H5::Attribute& attr0, std::vector<std::string>& array)
  {
      H5::Exception::dontPrint();

      try
      {
          hid_t attr = attr0.getId();

          hid_t atype = H5Aget_type(attr);
          hid_t aspace = H5Aget_space(attr);
          int rank = H5Sget_simple_extent_ndims(aspace);
          if (rank != 1) throw PBException("Attribute " + attr0.getName() + " is not a string array");

          hsize_t sdim[1];
          herr_t ret = H5Sget_simple_extent_dims(aspace, sdim, NULL);
          size_t size = H5Tget_size (atype);
          if (size != sizeof(void*))
          {
              throw PBException("Internal inconsistency. Expected pointer size element");
          }

          // HDF5 only understands vector of char* :-(
          std::vector<char*> arr_c_str(sdim[0]);

          H5::StrType stringType(H5::PredType::C_S1, H5T_VARIABLE);
          attr0.read(stringType, arr_c_str.data());
          array.resize(sdim[0]);
          for(int i=0;i<sdim[0];i++)
          {
              // std::cout << i << "=" << arr_c_str[i] << std::endl;
              array[i] = arr_c_str[i];
              free(arr_c_str[i]);
          }

      }
      catch (H5::Exception& err)
      {
          throw std::runtime_error(string("HDF5 Error in " )
                                    + err.getFuncName()
                                    + ": "
                                    + err.getDetailMsg());

      }

      return attr0;
  }
tgabmvqs

tgabmvqs9#

我不知道HDF5,但你可以使用

struct TempContainer {
    char* string;
};

然后这样复制字符串:

TempContainer t;
t.string = strdup(i->c_str());
tc.push_back (t);

这将分配一个具有确切大小的字符串,并且在插入或阅读容器时也有很大改进(在您的示例中,复制了一个数组,在本例中只有一个指针)。也可以使用std::vector:

std::vector<char *> tc;
...
tc.push_back(strdup(i->c_str());

相关问题