Проблема в том, что вектор не может быть создан без распределителя (в основном ему нужно знать, в каком сегменте он должен распределяться - он может отличаться от сегмента, в котором находится карта). Одним из способов обойти это является создание нового типа, который использует mmfile
глобальный объект в конструкторе:
bi::managed_mapped_file mmfile(bi::open_or_create, "map_iv.dat", 10000000);
int main() {
typedef bi::allocator<int, bi::managed_mapped_file::segment_manager> int_allocator;
struct MyVec : public boost::container::vector<int, int_allocator>{
MyVec() : boost::container::vector<int, int_allocator>{mmfile.get_segment_manager()}{};
};
//..
}
, или вы можете вызвать emplace
вместо push_back
, как показано здесь .
Кроме того, я предполагаю, что было бы ошибкой использовать std::string
в mapped_file - просто заметка. Ниже приведен пример boost , который был изменен для использования той же структуры данных при выделении строки в сегменте:
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/allocators/allocator.hpp>
#include <boost/interprocess/containers/map.hpp>
#include <boost/interprocess/containers/vector.hpp>
#include <boost/interprocess/containers/string.hpp>
int main ()
{
using namespace boost::interprocess;
//Typedefs of allocators and containers
typedef managed_shared_memory::segment_manager segment_manager_t;
typedef allocator<void, segment_manager_t> void_allocator;
typedef allocator<int, segment_manager_t> int_allocator;
typedef vector<int, int_allocator> int_vector;
typedef allocator<char, segment_manager_t> char_allocator;
typedef basic_string<char, std::char_traits<char>, char_allocator> char_string;
//Definition of the map holding a string as key and complex_data as mapped type
typedef std::pair<const char_string, int_vector> map_value_type;
typedef std::pair<char_string, int_vector> movable_to_map_value_type;
typedef allocator<map_value_type, segment_manager_t> map_value_type_allocator;
typedef map< char_string, int_vector, std::less<char_string>, map_value_type_allocator> complex_map_type;
shared_memory_object::remove("MySharedMemory");
remove_shared_memory_on_destroy remove_on_destroy("MySharedMemory");
{
//Create shared memory
managed_shared_memory segment(create_only,"MySharedMemory", 65536);
//An allocator convertible to any allocator<T, segment_manager_t> type
void_allocator alloc_inst (segment.get_segment_manager());
//Construct the shared memory map and fill it
complex_map_type *mymap = segment.construct<complex_map_type>
//(object name), (first ctor parameter, second ctor parameter)
("MyMap")(std::less<char_string>(), alloc_inst);
for(int i = 0; i < 100; ++i){
//Both key(string) and value(complex_data) need an allocator in their constructors
char_string key_object(alloc_inst);
int_vector mapped_object(alloc_inst);
mapped_object.push_back(i);
map_value_type value(key_object, mapped_object);
//Modify values and insert them in the map
mymap->insert(value);
}
}
return 0;
}
Попробуйте сами