进程相关(五)--进程间通信(共享内存映射文件)

2018-05-11  本文已影响0人  7bfedbe4863a
原理
编程
// FileServer.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "windows.h"
#include "stdio.h"
#pragma warning(disable:4996)

int _tmain(int argc, _TCHAR* argv[])
{
      //发送方创建文件,接收方只需要打开文件就可以了
    HANDLE hFile = CreateFile(TEXT("c:\zj.dat"), GENERIC_READ | GENERIC_WRITE,
        0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
    if (hFile == NULL)
    {
        printf("create file error!");
        return 0;
    }

    // 创建内存映射文件 CreateFileMapping
      //将上述真正存在的文件(物理文件) hFile映射成为一个虚拟的映射文件 hMap ,即将物理文件与虚拟文件绑定
    HANDLE hMap = CreateFileMapping(hFile, NULL, PAGE_READWRITE, 0, 1024 * 1024, TEXT("ZJ"));
    int rst = GetLastError();
    if (hMap != NULL && rst == ERROR_ALREADY_EXISTS)
    {
        printf("hMap error\n");
        CloseHandle(hMap);
        hMap = NULL;
        return 0;
    }

    CHAR* pszText = NULL;
      //加载内存映射文件  MapViewOfFile  :映射成内存地址
      //将虚拟文件映射成内存地址,方便使用。即将文件与内存绑定,以后操作该内存其实就是操作该文件。
    pszText = (CHAR*)MapViewOfFile(hMap, FILE_MAP_ALL_ACCESS, 0, 0, 1024 * 1024);
    if (pszText == NULL)
    {
        printf("view map error!");
        return 0;
    }
    
    int i = 0;
    while (1)
    {
        //其实是向文件中(共享内存中)写入了
        sprintf(pszText, "hello my first mapping file!+%d\n",i);
        printf(pszText);
        Sleep(3000);
        i++;
    }

    getchar();

    //卸载映射       UnmapViewOfFile((LPCVOID)pszText);
    UnmapViewOfFile((LPCVOID)pszText);
    //关闭句柄
    CloseHandle(hMap);
    CloseHandle(hFile);

    return 0;
}
// FileClient.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "windows.h"
#include "stdio.h"
#pragma warning(disable:4996)

int _tmain(int argc, _TCHAR* argv[])
{
    HANDLE hMap = OpenFileMapping(FILE_MAP_ALL_ACCESS, TRUE, TEXT("ZJ"));
    if (hMap == NULL)
    {
        printf("open file map error!");
        return 0;
    }

    int i = 0;
    while (true)
    {
        CHAR* pszText = NULL;
        
        pszText = (CHAR*)MapViewOfFile(hMap, FILE_MAP_ALL_ACCESS, 0, 0, 1024 * 1024);
        if (pszText == NULL)
        {
            printf("map view error!\n");
            return 0;
        }
    
        printf(pszText); //从文件中读(共享内存)
        sprintf(pszText, "second data!+%d\n", i); //写入
        Sleep(3000);
        UnmapViewOfFile(pszText);
        i++;
    }
    
    CloseHandle(hMap);

    hMap = NULL;
    return 0;
}
上一篇下一篇

猜你喜欢

热点阅读