C++标准库如何实现共享内存介绍

开发 后端
在C++中使用C++标准库容器中的map,set,multimap,multiset进行测试,如果测试不通过时,主要原因是在内存回收的时候考虑不够完全。

初次使用C++标准库实现共享内存的管理时,Vector每次分配内存个数不固定,回收也不固定,这样的话,程序还需要继续完善,下面就随本文的讲述来让大家进一步的了解C++中的C++标准库。

内存池管理程序源码如下:

  1. #ifndef MY_ALLOCATOR_H_   
  2. #define MY_ALLOCATOR_H_   
  3. #include "stdafx.h"   
  4. #include <limits>   
  5. #include <iostream>   
  6. namespace happyever    
  7. {   
  8.   enum { NODENUMS = 2 };   
  9.   union _Obj    
  10.   {   
  11.     union _Obj* M_free_list_link;   
  12.     char M_client_data[1];       
  13.   } ;   
  14.   typedef union _Obj Obj;   
  15.   struct _Cookie   
  16.   {   
  17.     int iShmKey;        /* 共享内存键值 */   
  18.     int iShmID;         /* iShmKey对应的shmid */   
  19.     int iSemKey;        /* 锁信号键值 */   
  20.     int iSemID;         /* 锁信号标识 */   
  21.     int iTotalsize;    /* 容器总容量 */   
  22.     void* pStartall;   /* 共享内存自身地址 */   
  23.     char* pStartfree;  /* 自由空间的开始地址*/   
  24.     char* pEndfree;    /* 自由空间的结束地址*/   
  25.     int iUseNum[NODENUMS];   
  26.     /*用来存放free_list中节点的size*/   
  27.     short sFreelistIndex[NODENUMS];   
  28.     /*存放分配内存节点的链表*/   
  29.     Obj* uFreelist[NODENUMS];   
  30.   };   
  31.   typedef struct _Cookie Cookie;   
  32.   //Obj;   
  33.   //Cookie;   
  34.   static Cookie *pHead = NULL;   
  35.   template <class T>   
  36.   class MyAlloc    
  37.   {   
  38.   private:   
  39.     static const int ALIGN = sizeof(Obj);   
  40.     int round_up(int bytes);   
  41.     int freelist_index(int bytes);   
  42.     int freelist_getindex(int bytes);   
  43.     char* chunk_alloc(int size, int *nobjs);   
  44.     void* refill(int num,int n);   
  45.   public:   
  46.     // type definitions   
  47.     typedef T        value_type;   
  48.     typedef T*       pointer;   
  49.     typedef const T* const_pointer;   
  50.     typedef T&       reference;   
  51.     typedef const T& const_reference;   
  52.     typedef std::size_t    size_type;   
  53.     typedef std::ptrdiff_t difference_type;   
  54.     template <class U>   
  55.     struct rebind    
  56.     {   
  57.       typedef MyAlloc<U> other;   
  58.     };  

以上程序只要稍微修改,就可以实现共享内存的管理,可以方便的使用C++标准库提供的容器。加上信号量的锁机制。以上为了学习而改写的SGI的stl二级分配算法实现的。以上代码存在一定的局限性。

我另外完整实现了共享内存管理的STL标准的alloctor程序,使用posix信号量加锁。目前应用在aix的xlC编译环境下。因为源码涉及公司的商业秘密,所以不能公开。但基本上以上源码已经体现了自己管理内存的完整思路,供这方面需求的朋友一起学习研究用。

【编辑推荐】

  1. 简介学习C++总结之谈
  2. 对C++库函数进行学习探索总结笔记
  3. C++类库设计的基本构思与方法
  4. C++语言真的还有市场价值?
  5. C++类库设计的基本构思与方法
责任编辑:chenqingxiang 来源: NET130
相关推荐

2010-01-14 15:46:27

C++标准库

2010-01-19 09:39:43

C++标准程序库

2010-01-19 09:39:43

C++标准程序库

2010-01-19 18:04:02

C++标准程序库

2024-05-06 11:19:20

内存池计算机编程

2010-02-03 16:35:45

C++回文

2010-01-26 13:55:07

C++标准模板库

2010-02-03 14:10:28

C++内存逻辑区域

2010-01-25 14:56:08

C++程序

2010-01-14 09:55:30

C++标准库

2019-09-18 09:05:26

微软开源Windows

2010-02-03 16:04:34

C++标准类库

2010-01-14 09:43:26

C++标准程序库

2022-09-22 10:22:36

C++编程语言代码

2010-02-03 15:52:55

C++ clock()

2010-01-13 10:09:24

C++标准库

2010-01-15 14:59:54

C++标准程序库

2010-02-01 16:54:18

C++打印地址信息

2011-06-21 10:17:41

c++内存模型

2010-01-21 11:03:07

C++库
点赞
收藏

51CTO技术栈公众号