gpt4 book ai didi

C++ Boost 为两个不同的进程创建共享内存

转载 作者:可可西里 更新时间:2023-11-01 10:06:54 28 4
gpt4 key购买 nike

因此,我尝试在 C++ 程序中创建一个共享内存段,这样我就可以在其中写入一个简单的字符,然后从另一个 C++ 程序中读取该字符。

我已经下载了 Boost 库,因为我看到它简化了这个过程。基本上我有两个问题:首先,创建后如何写入它?那我应该在第二个程序中写些什么来识别段并读取其中的信息?

这就是我到目前为止所得到的。不是很多,但我对这个(第一个程序)还是很陌生:

#include "stdafx.h"
#include <boost/interprocess/windows_shared_memory.hpp>
#include <boost/interprocess/mapped_region.hpp>

int main(int argc, char *argv[])
{
using namespace boost::interprocess;

windows_shared_memory shared (create_only, "shm", read_write, 65536);
//created shared memory using the windows native library
mapped_region region (shared, read_write, 0 , 0 , (void*)0x3F000000);
//mapping it to a region using HEX

//Here I should write to the segment

return 0;
}

提前致谢。我将非常乐意提供任何信息,以便获得适当的帮助。

最佳答案

以下是基于 Boost documentation on Shared Memory 稍作修改的示例

注意 当使用windows_shared_memory 时请记住,共享内存块将在最后一个使用它的进程存在时自动销毁。在下面的示例中,这意味着,如果在客户端更改打开共享内存块之前服务器已存在,则客户端将抛出异常。

服务器端:

#include <boost/interprocess/windows_shared_memory.hpp>
#include <boost/interprocess/mapped_region.hpp>
#include <cstring>
#include <cstdlib>
#include <string>

int main(int argc, char *argv[])
{
using namespace boost::interprocess;

//Create a native windows shared memory object.
windows_shared_memory shm (create_only, "shm", read_write, 65536);

//Map the whole shared memory in this process
mapped_region region(shm, read_write);

//Write a character to region
char myChar = 'A';
std::memset(region.get_address(), myChar , sizeof(myChar));

... it's important that the server sticks around, otherwise the shared memory
block is destroyed and the client will throw exception when trying to open

return 0;
}

客户端:

#include <boost/interprocess/windows_shared_memory.hpp>
#include <boost/interprocess/mapped_region.hpp>
#include <cstring>
#include <cstdlib>
#include <string>

int main(int argc, char *argv[])
{
using namespace boost::interprocess;

//Open already created shared memory object.
windows_shared_memory shm (open_only, "shm", read_only);

//Map the whole shared memory in this process
mapped_region region(shm, read_only);

//read character from region
char *myChar= static_cast<char*>(region.get_address());


return 0;
}

不是memset在共享内存中设置原始字节,你可能最好使用Boost.Interprocess .它旨在简化通用进程间通信和同步机制的使用,并提供范围广泛的机制——包括共享内存。例如你可以 create a vector in shared memory .

关于C++ Boost 为两个不同的进程创建共享内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17115099/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com