c++从内存中读取文件内容,内容写到内存 实现文件的内存共享代码实例
使用c++代码进行内存共享操作,内存共享可以通过key value的形式来保存内存,后面可以使用key值来直接读取内存,效率会很高/
函数说明:
shmget(key_t key, size_t size, int shmflg)(得到一个共享内存标识符或创建一个共享内存对象)
shmflg参数为模式标志参数,使用时需要与IPC对象存取权限(如0600)进行|运算来确定信号量集的存取权限
shmat(int shmid, const void *shmaddr, int shmflg)(把共享内存区对象映射到调用进程的地址空间)
shmdt(const void *shmaddr)(断开共享内存连接)
shmctl(int shmid, int cmd, struct shmid_ds *buf)(共享内存管理)
cmd
IPC_RMID:删除这片共享内存
把内容写到内存代码:
write.cpp文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | #include <string.h> //#include <math.h> //#include <climits> //#include <regex.h> //#include <sstream> #include <iostream> #include <stdio.h> //#include <list> //#include <vector> //#include <time.h> //#include <set> //#include <algorithm> //#include <iterator> //#include <sys/time.h> #include <sys/ipc.h> #include <sys/shm.h> #include <sys/types.h> //#include <unistd.h> //#include <string.h> //#include <io.h> using namespace std; typedef struct { char name[8]; int age; } people; #define IPCKEY 0x11 #define SHMNAME "shm_ram" #define OPEN_FLAG O_RDWR|O_CREAT #define OPEN_MODE 00777 #define FILE_SIZE 4096 * 4 #define LINE_SIZE 1024 * 3 int main() { // char buff[LINE_SIZE]; // // FILE* fp = fopen("sightline.xml", "r"); // if (NULL == fp) { // cout << "open failure" << endl; // return 0; // } // // while(!feof(fp)){ // memset(buff, 0, LINE_SIZE); // fgets(buff, 1024, fp); // cout << buff; // } // // fclose(fp); cout << "Content-type: text/html; charset=\"utf-8\" \n\n" ; int shm_id, i; key_t key; char temp[8]; people *p_map; char pathname[30]; strcpy (pathname, "." ); key = ftok(pathname, 0); if (key == -1) { // perror("ftok error"); cout << "ftok error" << endl; return 0; } cout << "key=" << key << endl; //printf("key=%d\n", key); shm_id = shmget(key, 1024 * 4, IPC_CREAT | 0666); if (shm_id == -1) { // perror("shmget error"); cout << "shmget error" << endl; return 0; } //delete shmctl(shm_id, IPC_RMID, NULL) ; shm_id = shmget(key, 1024 * 4, IPC_CREAT | 0666); if (shm_id == -1) { // perror("shmget error"); cout << "shmget error" << endl; return 0; } cout << "shm_id=" << shm_id << endl; // printf("shm_id=%d\n", shm_id); p_map = (people*)shmat(shm_id, NULL, 0); memset (temp, 0x00, sizeof (temp)); strcpy (temp, "test" ); temp[4] = '0' ; for (i = 0; i < 7; i++) { temp[4] += 1; strncpy ((p_map + i)->name, temp, 5); (p_map + i)->age = 0 + i + 1; } shmdt(p_map); cout << "success" << endl; // int shm_id, i; // key_t key; // people *p_map; //// char pathname[30]; //// strcpy(pathname, "/tmp"); // key = ftok("../test", IPCKEY); // if (key == -1) { //// cout << "ftok error"); // cout << "ftok error" << endl; // return -1; // } //// printf("key=%d\n", key); // cout << "key=" << key << endl; // shm_id = shmget(key, 0, 0); // if (shm_id == -1) { //// cout << "shmget error"); // cout << "shmget error" << endl; // return -1; // } //// printf("shm_id=%d\n", shm_id); // cout << "shm_id=" << shm_id << endl; // p_map = (people*) shmat(shm_id, NULL, 0); // for (i = 0; i < 3; i++) { //// printf("name:%s\n", (*(p_map + i)).name); //// printf("age %d\n", (*(p_map + i)).age); // cout << "name=" << (*(p_map + i)).name << endl; // cout << "age=" << (*(p_map + i)).age << endl; // } // if (shmdt(p_map) == -1) { // cout << "detach error"); // return -1; // } return 0; } |
编译 g++ write.cpp -o write
执行 ./write
read.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | #include <string.h> #include <math.h> #include <climits> #include <regex.h> #include <sstream> #include <iostream> #include <stdio.h> #include <list> #include <vector> #include <time.h> #include <set> #include <algorithm> #include <iterator> #include <sys/time.h> #include <fstream> #include <iomanip> //#include <stdio.h> #include <sys/ipc.h> #include <sys/shm.h> #include <sys/types.h> #include <unistd.h> //#include <string.h> //#include <io.h> #include <sys/stat.h> #include <fcntl.h> #include <sys/mman.h> #include <unistd.h> using namespace std; typedef struct { char name[8]; int age; } people; #define IPCKEY 0x11 #define SHMNAME "shm_ram" #define OPEN_FLAG O_RDWR|O_CREAT #define OPEN_MODE 00777 #define FILE_SIZE 4096 * 4 #define LINE_SIZE 1024 * 3 int main() { // char buff[LINE_SIZE]; // // FILE* fp = fopen("sightline.xml", "r"); // if (NULL == fp) { // cout << "open failure" << endl; // return 0; // } // // while(!feof(fp)){ // memset(buff, 0, LINE_SIZE); // fgets(buff, 1024, fp); // cout << buff; // } // // fclose(fp); cout << "Content-type: text/html; charset=\"utf-8\" \n\n" ; int shm_id, i; key_t key; people *p_map; char pathname[30]; strcpy (pathname, "." ); key = ftok(pathname, 0); if (key == -1) { cout << "ftok error" << endl; return 0; } cout << "key=" << key << endl; shm_id = shmget(key, 0, 0); if (shm_id == -1) { cout << "shmget error" << endl; return -1; } cout << "shm_id=" << shm_id << endl; p_map = (people*) shmat(shm_id, NULL, 0); for (i = 0; i < 3; i++) { cout << "name=" << (*(p_map + i)).name << endl; cout << "age=" << (*(p_map + i)).age << endl; } if (shmdt(p_map) == -1) { cout << "detach error" << endl; return -1; } return 0; } |
编译 g++ read.cpp -o read
执行 ./read
来源://作者:/更新时间:2014-03-18
顶
踩
相关文章:
- 解决cgiMain.o(.text+0x8d): In function `main': :
- c/c++语言sprintf函数使用详解
- c/c++ 占位符使用及说明
- grails the action accept a parmeter of type which
- java中处理json数据方法_ jsonobject使用详解
- (解决)定义了重复的“system.web.extensions/scriptin
- python SyntaxError: Non-ASCII character '\xe6'
- error no 'server' jvm at 'C:\..\jre6\bin\jv
- Grails Config配置文件设置【Grails中文教程】
- eclipse 安装groovy grails 插件 (图文) 【groovy基础