共享内存linux C/C++代码实战------顺便玩下ipcs, ipcrm, shmget, shmat, shmdt, shmctl

972 篇文章 329 订阅
148 篇文章 34 订阅

       在学校的时候, 谁会搞共享内存这些东西呢? 不过是为了笔试和面试, 大家才搞一下吧。 但是, 在实际工作中, 共享内存确实应用较广。

       其实, 共享内存的思想很简单, 我来举个俗气的例子, writer进程和和reader进程通信, 最简单的方式是什么: 当然是共享文件啊。 writer进程把数据写到a.txt文件, 然后reader进程从a.txt文件中读取数据, 这就实现了进程间的通信。 我当时读书的时候, 就是这么干的。 在学校阶段, 确实解决了当时的问题, 靠谱。 但在公司, 谁敢这么搞?

       共享内存也是采用了类似的思路, 只不过, 共享的不是文件, 而是内存。 就是如此简单。

 

       话不多说, 来看点代码:

 

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/shm.h>

int main()
{
	int shmid = shmget((key_t)1234, 100, 0666|IPC_CREAT);
	printf("shmid %d\n", shmid);
	
	return 0;
}

       key是1234, 对应的16进制是0x000004d2,  100是设定的共享内存大小。 我们看看结果:

 

 

xxxxxx:~/network> ipcs

------ Shared Memory Segments --------
key        shmid      owner      perms      bytes      nattch     status      
0x115fd81a 32768      root      666        4096       2                       
0x294b8556 65537      root      666        13497727   1                       

------ Semaphore Arrays --------
key        semid      owner      perms      nsems     
0x0000870a 0          root      666        1         
0x00008707 32769      root      666        1         
0x00008709 65538      root      666        1         
0x0000870b 98307      root      666        1         

------ Message Queues --------
key        msqid      owner      perms      used-bytes   messages    

xxxxxx:~/network>
xxxxxx:~/network>
xxxxxx:~/network>
xxxxxx:~/network> ./test
shmid 294915
xxxxxx:~/network> ipcm
-bash: ipcm: command not found
xxxxxx:~/network> ipcs

------ Shared Memory Segments --------
key        shmid      owner      perms      bytes      nattch     status      
0x115fd81a 32768      root      666        4096       2                       
0x294b8556 65537      root      666        13497727   1                       
0x000004d2 294915     xxxxxx    666        100        0                       

------ Semaphore Arrays --------
key        semid      owner      perms      nsems     
0x0000870a 0          root      666        1         
0x00008707 32769      root      666        1         
0x00008709 65538      root      666        1         
0x0000870b 98307      root      666        1         

------ Message Queues --------
key        msqid      owner      perms      used-bytes   messages    

xxxxxx:~/network> 

       可以看到, 运行程序前, 没有用户xxxxxx对应的共享内存, 运行后, 创建了一块共享内存, 其信息和我们在程序中设置的信息完全一致。

 

       这里要注意一下几点(有兴趣的同学可以多多尝试)

       1.  调用shmget的时候, 如果共享内存key已经存在, 则不是创建一块新共享内存, 而是返回已经存在的共享内存。

       2.  进程退出后, 共享内存不会释放, 需要调用shmctr函数, 或者用ipcrm命令才可释放。

       3.  ipcs和ipcrm要用熟。

       

       有点迫不及待看共享内存的实际代码了, 一起来看看:

       writer.cpp

 

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/shm.h>
#define TEST_SIZE 2048

typedef struct _BOX
{
	int  flag;
	char szMsg[TEST_SIZE];
}Box;

int main()
{
	int shmid = shmget((key_t)1234, sizeof(Box), 0666|IPC_CREAT);
	void *shm = shmat(shmid, (void*)0, 0);
	Box *pBox = (Box*)shm;
	pBox->flag = 0;

	int i = 0;
	while(1)
	{
		while(pBox->flag == 0)
		{
			getchar();
			snprintf(pBox->szMsg, sizeof(pBox->szMsg), "hello %d", ++i);
			printf("write msg is [%s]\n", pBox->szMsg);
			pBox->flag = 1;
		}
	}
	
	shmdt(shm);
	return 0;
}

      reader.cpp的内容为:

 

 

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/shm.h>
#define TEST_SIZE 2048

typedef struct _BOX
{
	int  flag;
	char szMsg[TEST_SIZE];
}Box;

int main()
{
	int shmid = shmget((key_t)1234, sizeof(Box), 0666|IPC_CREAT);
	void *shm = shmat(shmid, 0, 0);
	Box *pBox = (Box*)shm;

	while(1)
	{
		if(pBox->flag == 1)
		{
			printf("msg from writer is [%s]\n", pBox->szMsg);
			pBox->flag = 0;
		}
	}
	
	shmdt(shm);
	shmctl(shmid, IPC_RMID, 0);
	return 0;
}

 

 

      先启动writer,  再启动reader,   于是乎, writer逐渐往共享内存中写数据(按enter键), reader不断读共享内存的数据, 结果为(如下只给出reader端的结果):

 

 

 

msg from writer is [hello 1]
msg from writer is [hello 2]
msg from writer is [hello 3]
msg from writer is [hello 4]
msg from writer is [hello 5]
msg from writer is [hello 6]
msg from writer is [hello 7]
msg from writer is [hello 8]
msg from writer is [hello 9]
msg from writer is [hello 10]

       可见, 在writer端不断按enter键盘的时候, 消息源源不断地“流向”了reader, 就是如此简单。 至于代码中的函数, 直接man一下, 一切就一目了然了。

 

 

       共享内存是最快的进程间通信方式, 没有之一。 但同步的问题, 还得应用程序自己解决。

       OK,  不多说。

 

 

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值