我想'演员' MapViewOfFile的返回值(据我所知,指向void的指针)到我自己的类,这样我就可以使用这个对象了。我知道内存是如何构建的。 headerSize位于字节编号4到字节编号8,十六进制值写入字节,例如十六进制47,因此大小应为71字节。我希望得到71作为我的属性值#header;标题'。什么代码必须替换' TODO'在我的片段?我不知道如何读取字节以及如何创建属性。
main.cpp中的代码:
// MapViewOfFile return a pointer to void, so you need to cast it to a suitable structure
pBuf = (FILE*) MapViewOfFile(hMapFile, FILE_MAP_ALL_ACCESS, 0, 0, BUF_SIZE);
// create object
JobaShm jobaShm(pBuf);
int headerSize = jobaShm.getHeaderSize();
std::cout << " HeaderSize " << headerSize << ";\n";
jobashm.h中的代码
#ifndef JOBASHM_H
#define JOBASHM
class JobaShm {
public:
JobaShm(FILE* handle);
int getHeaderSize();
private:
int headerSize;
};
#endif
jobashm.cpp中的代码
#include <stdio.h>
#include "jobashm.h"
JobaShm::JobaShm(FILE* handle){
// TODO
}
int JobaShm::getHeaderSize(){
return headerSize;
}
更新:由于本教程http://www.cplusplus.com/forum/general/54381/,我试图在我自己的结构中转换MapViewOfFile的返回值。
的main.cpp
struct Shm {
int firstByte;
};
int main(void){
std::cout << "*** Start SharedMemory ***\n";
HANDLE hMapFile;
hMapFile = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, szName);
if (hMapFile == NULL){
MessageBox(NULL, TEXT("Could not open file mapping object"), TEXT("ERROR"), MB_OK);
return 1;
}
Shm * pBuf = (Shm *) MapViewOfFile(hMapFile, FILE_MAP_ALL_ACCESS, 0, 0, BUF_SIZE); // ggf. besser size_of Shm, statt BUF_SIZE
std::cout << " Debug " << pBuf->firstByte << ";\n";
UnmapViewOfFile(&pBuf);
CloseHandle(hMapFile);
std::cout << "*** close app by typing a number. ***\n";
int a = 0;
cin >> a;
return 0;
}
答案 0 :(得分:1)
我认为您必须阅读有关MapViewOfFile的更多信息。
http://msdn.microsoft.com/en-us/library/windows/desktop/aa366551(v=vs.85).aspx
它返回一个指向数据的指针。
LPCTSTR pBuf;
pBuf = (LPTSTR) MapViewOfFile(hMapFile, FILE_MAP_ALL_ACCESS, 0, 0, BUF_SIZE);
JobaShm(pBuf)
然后,既然您知道数据是什么,那么您应该为它创建一个结构并进行投射。
struct FileData {
int space;
int headerSize;
// etc...
}
JobaShm::JobaShm(LPTSTR* pBuf) {
FileData fd;
CopyMemory((PVOID)pBuf, &fd, sizeof(fd));
headerSize = fd.headerSize;
}