程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++標准庫如何實現共享內存介紹

C++標准庫如何實現共享內存介紹

編輯:C++入門知識

初次使用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++類庫設計的基本構思與方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved