【发布时间】:2015-04-13 09:45:39
【问题描述】:
我正在尝试将任意元素的向量存储在内存映射文件中(现在我正在尝试使用整数向量取得成功,但它应该与任意对象的向量一起使用)。我找到了很多关于使用共享内存这样做的文档,但没有找到正确的内存映射文件。由于我已经成功地在内存映射文件中制作并使用了 R-trees(如在that example 中),我尝试使用向量复制该过程,但我想我错过了一些关键元素,因为它不起作用。这是我的代码:
namespace bi = boost::interprocess;
typedef bi::allocator<std::vector<int>, bi::managed_mapped_file::segment_manager> allocator_vec;
std::string vecFile = "/path/to/my/file/vector.dat";
bi::managed_mapped_file file_vec(bi::open_or_create,vecFile.c_str(), 1000);
allocator_vec alloc_vec(file_vec.get_segment_manager());
std::vector<int> * vecptr = file_vec.find_or_construct<std::vector<int> >("myvector")(alloc_vec);
可能我的最后一行是错误的,因为“alloc_vec”作为参数传递给了向量构造函数,它并不期望它
(我得到了错误/usr/include/c++/4.8/bits/stl_vector.h:248:7: note: candidate expects 0 arguments, 1 provided)。
但是,我不知道如何将分配器传递给 find_or_construc(),我认为这对于在内存映射文件中正确创建向量至关重要。删除最后一行末尾的 (alloc_vec) 会导致另一个错误,我很难解决:
error: cannot convert ‘boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index>::construct_proxy<std::vector<int> >::type {aka boost::interprocess::ipcdetail::named_proxy<boost::interprocess::segment_manager<char, boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family>, boost::interprocess::iset_index>, std::vector<int>, false>}’ to ‘std::vector<int>*’ in initialization
std::vector<int> * vecptr = file_vec.find_or_construct<std::vector<int> >("myvector");
任何帮助将不胜感激。`
【问题讨论】:
-
总是有重载占用分配器,只是分配器与默认的
Allocator模板参数类型(std::allocator<T>)不匹配(见en.cppreference.com/w/cpp/container/vector) -
你为什么要尝试这个?为什么(为什么)你想要一个内存映射文件(一个低级的东西)中的向量(一个“高级容器”)。请编辑你的问题以改进它。
标签: c++ boost memory-mapped-files boost-interprocess