c++ - 使用 Boost::interprocess 在共享内存中映射 <int, void*>

标签 c++ boost ipc shared-memory

我正在尝试在以下类型的共享内存中构造一个映射

我这样创建共享内存区域:

 managed_shared_memory segment(create_only ,"MyMap"  ,size);       

ShMemAllocator_t alloc_inst (segment.get_segment_manager());

 map =   segment.construct<MyMap_t>("MyMap")      
                             (std::less<int>() 
                             ,alloc_inst); 

map 中的值如下:

       typedef pair<MutexType, boost::interprocess::offset_ptr<void> > ValueType ; 

MutexType 本身是一个包含读取和写入互斥量的结构(使用 read_lock 和 write_lock); 定义如下:

typedef struct  mutex_struct{ 
   sharable_lock<interprocess_mutex> read_lock(interprocess_mutex, defer_lock); 
  scoped_lock<interprocess_mutex> write_lock(interprocess_mutex, defer_lock); 
} MutexType;

“size”是映射的总大小(就对象而言,因此是所有 void 指针指向的数据大小的总和)。

如何确保这个 void* 数据也位于我创建的这个内存段中,我如何在现有的共享内存区域中实例化它)。这样做的原因是我只想分配这个大缓冲区一次,但要反复向其中删除/添加对象( map 模拟缓存)我还没有找到可以在同一内存段内分配多个对象的方法在一张 map 内。此外,寻求分配 MutexType 对会返回编译错误,指出未提供“调用”运算符。

最佳答案

你基本上已经在那里了。调用您在共享内存 SecondValue_t 中分配的任何对象类型。代替 ShMemAllocator_t,定义一个不同的进程间分配器类型,例如 SecondValueAllocator_t,用于分配 SecondValue_t 对象。每当您想要将 ValueType 对象插入到映射中时,ValueType 对象的第二个值将使用 SecondValueAllocator_t 实例进行分配。

这是一个完整的示例,部分使用了 my answer 中的代码对于 Interprocess reader/writer lock with Boost :

#include <cstdlib>
#include <functional>
#include <iostream>
#include <string>
#include <utility>

#include <boost/scope_exit.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/allocators/allocator.hpp>
#include <boost/interprocess/allocators/private_node_allocator.hpp>
#include <boost/interprocess/containers/map.hpp>
#include <boost/interprocess/sync/interprocess_upgradable_mutex.hpp>
#include <boost/interprocess/sync/scoped_lock.hpp>
#include <boost/interprocess/sync/sharable_lock.hpp>
#include <boost/interprocess/sync/upgradable_lock.hpp>

#define SHARED_MEMORY_NAME "SO13783012-MyMap"

// https://stackoverflow.com/questions/13783012/map-of-int-void-in-shared-memory-using-boostinterprocess

using namespace boost::interprocess;

typedef int SecondValue_t;
typedef allocator<SecondValue_t, managed_shared_memory::segment_manager> SecondValueAllocator_t;

typedef struct mutex_struct {
    //...
} MutexType;

typedef std::pair<MutexType, SecondValueAllocator_t::pointer> ValueType;

typedef map<int, ValueType>::value_type MyMapValueType;
typedef allocator<MyMapValueType, managed_shared_memory::segment_manager> MyMapEntryAllocator_t;
typedef map<int, ValueType, std::less<int>, MyMapEntryAllocator_t> MyMap_t;

struct shared_data {
private:
    typedef boost::interprocess::interprocess_upgradable_mutex upgradable_mutex_type;

    mutable upgradable_mutex_type mutex;
    MyMap_t my_map;

public:
    shared_data(const MyMapEntryAllocator_t& alloc)
        : my_map(MyMap_t::key_compare(), alloc)
    {
    }

    // Tries to get the mapped value for the given key `k'. If successful, the mapped value is
    // copied into `out' and `true' is returned. Otherwise, returns `false' and does not modify
    // `out'.
    bool try_get(MyMap_t::mapped_type& out, MyMap_t::key_type k) const {
        boost::interprocess::sharable_lock<upgradable_mutex_type> lock(mutex);
        MyMap_t::const_iterator pos = my_map.find(k);
        if (pos != my_map.end()) {
            out = pos->second;
            return true;
        }
        return false;
    }

    void put(MyMap_t::key_type k, MyMap_t::mapped_type v) {
        boost::interprocess::scoped_lock<upgradable_mutex_type> lock(mutex);
        my_map.insert(MyMap_t::value_type(my_map.size(), v));
    }
};

int main(int argc, char *argv[])
{
    if (argc != 2) {
        std::cerr << "Usage: " << argv[0] << " WHICH\n";
        return EXIT_FAILURE;
    }

    const std::string which = argv[1];

    if (which == "parent") {
        shared_memory_object::remove(SHARED_MEMORY_NAME);
        BOOST_SCOPE_EXIT(argc) {
            shared_memory_object::remove(SHARED_MEMORY_NAME);
        } BOOST_SCOPE_EXIT_END;
        managed_shared_memory shm(create_only, SHARED_MEMORY_NAME, 65536);

        MyMapEntryAllocator_t entry_alloc(shm.get_segment_manager());
        shared_data& d = *shm.construct<shared_data>("theSharedData")(entry_alloc);

        SecondValueAllocator_t second_value_alloc(shm.get_segment_manager());

        // Insert some test data.
        SecondValueAllocator_t::pointer p;
        p = second_value_alloc.allocate(1);
        second_value_alloc.construct(p, -3);
        d.put(0, std::make_pair(MutexType(), p));
        p = second_value_alloc.allocate(1);
        second_value_alloc.construct(p, 70);
        d.put(1, std::make_pair(MutexType(), p));
        p = second_value_alloc.allocate(1);
        second_value_alloc.construct(p, -18);
        d.put(2, std::make_pair(MutexType(), p));
        p = second_value_alloc.allocate(1);
        second_value_alloc.construct(p, 44);
        d.put(3, std::make_pair(MutexType(), p));
        p = second_value_alloc.allocate(1);
        second_value_alloc.construct(p, 0);
        d.put(4, std::make_pair(MutexType(), p));

        // Go to sleep for a minute - gives us a chance to start a child process.
        sleep(60);
    } else {
        managed_shared_memory shm(open_only, SHARED_MEMORY_NAME);
        std::pair<shared_data *, std::size_t> find_res = shm.find<shared_data>("theSharedData");
        if (!find_res.first) {
            std::cerr << "Failed to find `theSharedData'.\n";
            return EXIT_FAILURE;
        }
        shared_data& d = *find_res.first;

        MyMap_t::mapped_type v;
        int i = 0;
        for (; d.try_get(v, i); ++i) {
            std::cout << i << ": " << *v.second << '\n';
        }

        // Add an entry.
        srand(time(NULL));
        SecondValueAllocator_t second_value_alloc(shm.get_segment_manager());
        SecondValueAllocator_t::pointer p = second_value_alloc.allocate(1);
        second_value_alloc.construct(p, (rand() % 200) - 100);
        d.put(i, v = std::make_pair(MutexType(), p));
        std::cout << "placed " << *v.second << " into the map.\n";
    }

    return EXIT_SUCCESS;
}

首先启动父进程来测试它:

./SO13783012 parent

然后是一些 child :

./SO13783012 child

示例输出:

> ./SO13783012 child
0: -3
1: 70
2: -18
3: 44
4: 0
placed 5: -63 into the map.
> ./SO13783012 child
0: -3
1: 70
2: -18
3: 44
4: 0
5: -63
placed 6: -42 into the map.
> ./SO13783012 child
0: -3
1: 70
2: -18
3: 44
4: 0
5: -63
6: -42
placed 7: -28 into the map.

关于c++ - 使用 Boost::interprocess 在共享内存中映射 <int, void*>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13783012/

相关文章:

c++ - 如何将 char 数组(或其一部分)存储到 const char* 中?

c++ - 使用多个 QGLWidgets (QT) 来显示(相同的)3D 纹理?

c++ boost asio 异步函数不能在 dll 中工作

稀疏矩阵实现的 C++11 兼容性

c++ - IPC 消息队列如何发送成对的 vector

c - 杀死运行系统 shell 命令的子进程

Android:AIDL 的安全 IPC 替代品?

c++ - 读取文本文件时如何在每行中找到的最后一个数字之后跳到下一行?

c++ - Mongodb 客户端的 SCons 找不到 libboost_system

c++ - 编译器错误 C2766: "explicit specialization; ' specialization' has already been defined"when using boost::disable_if