注册/登录

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编译环境下。因为源码涉及公司的商业秘密,所以不能公开。但基本上以上源码已经体现了自己管理内存的完整思路,供这方面需求的朋友一起学习研究用。

【编辑推荐】

  • 简介学习C++总结之谈
  • 对C++库函数进行学习探索总结笔记
  • C++类库设计的基本构思与方法
  • C++语言真的还有市场价值?
  • C++类库设计的基本构思与方法
  • 责任编辑:chenqingxiang NET130
    点赞
    收藏