有问题。我有一个文件,其内容看起来像number:error_description。现在我需要把这个文件放到共享内存(POSIX)。如果修改了任何内容,应该将其保存到基本文件中。需要在共享内存中的内容中进行搜索(结果将通过消息队列发送给客户机)。我如何实现这一切?首先,我认为我必须打开(fopen("my_file","r")),然后我必须创建共享内存和mmap文件。有人能帮帮我吗?
编辑:#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <unistd.h>
#include <semaphore.h>
/*
* /tmp/errors -> Error File
*/
#define MSGQ_HANDLER "/error_handler"
#define PATH_TO_FILE "/tmp/errors"
#define FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
int main(void) {
int fd = open(PATH_TO_FILE, O_RDWR);
struct stat file_stat;
fstat(fd, &file_stat);
printf("File size: %zdn", file_stat.st_size);
char *byte_ptr = mmap(NULL, file_stat.st_size, PROT_READ | PROT_WRITE,
MAP_SHARED, fd, 0);
if(byte_ptr == MAP_FAILED){
perror("error:");
}
while(1){
printf("%sn", byte_ptr);
if(byte_ptr)
exit(1);
}
return EXIT_SUCCESS;
}
到目前为止,这是我现在所拥有的。读台词是有效的。如何更改内容?
不要使用fopen
而忘记共享内存(我指的是sh*
API)。mmap
是所有需要的。
使用open
和正确的选项(读/写)打开文件。然后使用mmap
和选项MAP_SHARED
。文件中的所有更改将直接反映出来,并且对于映射同一文件的所有进程都是可见的。在Linux和Solaris上(在其他系统上,我不知道,但POSIX或任何标准都不能保证),您甚至可以与read
/write
并发访问文件。但这是个坏主意。当然,来自不同进程的并发内存访问需要同步(互斥锁、信号量等)。