gpt4 book ai didi

C++ 在内存中按字节移动

转载 作者:太空宇宙 更新时间:2023-11-03 10:46:42 24 4
gpt4 key购买 nike

我有这个结构的共享内存(见代码片段 1),所有值都是十六进制值:

Position 00:  55; // memory overall, byte 00 to 03;
Position 01: 00;
Position 02: 00;
Position 03: 00;
Position 04: 47; // memory for header information, byte 04 to 07;
Position 05: 00
Position 06: 00;
Position 07: 00;
Position 08: 00; // version, byte 08, 09;
Position 09: 00;
Position 0A: 64; // rate of refreshing memory between processes
Position 0B: 00;
Position 0C: 00;
Position 0D: 00;
Position 0E: 00;
Position 0F: 4L;
...

正如您在评论中看到的那样,我知道哪个字节代表什么信息。无论如何,我将内存转换为一个结构(参见代码片段 2)。此结构中的属性当前是整数值。值 55 和 47 存储在前两个属性中。看起来,“00”将被忽略,我无法逐字节读取整个内存。如何按字节读取内存?

代码片段 2:

struct Shm {
int memorySize; // size of memory space; min 4 bytes, Position 00 - 03; ie 55 is a hex value and means 84
int headerSize; // size of header space; min 4 bytes, Position 04 - 07; ie 47 (hex), so 71 (dec) same number as config-dialog
int byte3; // version number
int byte4; // refreshing interval in msec
...

此外,内存中有一些区域包含一些字符 - 如何将这些字节值转换为字符并创建它们的单词,目前我只能转换为 int 值(参见代码片段 3)

int main(void){
std::cout << "*** Start SharedMemory ***\n";
HANDLE hMapFile;
...
Shm * pBuf = (Shm *) MapViewOfFile(hMapFile, FILE_MAP_ALL_ACCESS, 0, 0, BUF_SIZE);
std::cout << " Debug memorySize " << ": " << dec << pBuf->memorySize << " (dec); " << hex << pBuf->memorySize << " (hex); " << &pBuf->memorySize << " (Adresse);\n"; // 84 Bytes
std::cout << " Debug headerSize " << ": " << dec << pBuf->headerSize << " (dec); << hex << pBuf->headerSize << " (hex);\n"; // 71 Bytes
std::cout << " Debug byte3 " << ": " << dec << pBuf->byte3 << " (dec); " << hex << pBuf->byte3 << " (hex);\n";
...

最佳答案

备注:将文件转换为结构是个坏主意。对齐方式、int 的大小、endian 在不同的系统中可能不同。

转换到文件的任何部分:

const char  * pBuf = (const char *) MapViewOfFile...
const Mytype * myVar = (const Mytype *)(pBuf + myVarOffset);

因此,对于字符串,只需将偏移量添加到 pBuf(pBuf + myVarOffset - 就是您所需要的)- 您将获得指向字符串的起始指针。 (希望文件中字符串的末尾有一个零字节。)

如果您的结构应该有一个未指定长度的缓冲区/字符串变量,以下代码可能会有所帮助:

struct MyStruct
{
int size_of_string;
char my_string[1]; //can be used as a long string of size size_of_string
};

请注意,在这种情况下,sizeof(MyStruct) 不会为您提供正确的值,因此您不能使用“new”分配此对象并将其放在堆栈上(改为使用 malloc/free)。

我建议您阅读有关序列化的内容。

关于C++ 在内存中按字节移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19882706/

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