C++中的RAII机制

1.概念

Resource Acquisition Is Initialization 机制是Bjarne Stroustrup首先提出的。要解决的是这样一个问题:

在C++中,如果在这个程序段结束时需要完成一些资源释放工作,那么正常情况下自然是没有什么问题,但是当一个异常抛出时,释放资源的语句就不会被执行。于是Bjarne Stroustrup就想到确保能运行资源释放代码的地方就是在这个程序段(栈帧)中放置的对象的析构函数了,因为stack winding会保证它们的析构函数都会被执行。将初始化和资源释放都移动到一个包装类中的好处:

  • 保证了资源的正常释放
  • 省去了在异常处理中冗长而重复甚至有些还不一定执行到的清理逻辑,进而确保了代码的异常安全。
  • 简化代码体积。

2.应用场景

1)文件操作

我们可以是用这个机制将文件操作包装起来完成一个异常安全的文件类。实现上,注意将复制构造函数和赋值符私有化,这个是通过一个私有继承类完成的,因为这两个操作在此并没有意义,当然这并不是RAII所要求的。

  1. /*  
  2.  * =====================================================================================  
  3.  *  
  4.  *       Filename:  file.cpp  
  5.  *  
  6.  *    Description:  RAII for files  
  7.  *  
  8.  *        Version:  1.0  
  9.  *        Created:  05/09/2011 06:57:43 PM  
  10.  *       Revision:  none  
  11.  *       Compiler:  g++  
  12.  *  
  13.  *         Author:  gnuhpc, warmbupt@gmail.com  
  14.  *  
  15.  * =====================================================================================  
  16.  */  
  17. #include <IOSTREAM>   
  18. #include <STDEXCEPT>   
  19. #include <CSTDIO>   
  20.   
  21. using namespace std;   
  22. class NonCopyable   
  23. {   
  24. public:   
  25. NonCopyable(){};   
  26. private:   
  27.     NonCopyable (NonCopyable const &); // private copy constructor   
  28.     NonCopyable & operator = (NonCopyable const &); // private assignment operator   
  29. };   
  30.   
  31. class SafeFile:NonCopyable{   
  32. public:   
  33.     SafeFile(const char* filename):fileHandler(fopen(filename,"w+"))   
  34.     {   
  35.         if( fileHandler == NULL )   
  36.         {   
  37.             throw runtime_error("Open Error!");   
  38.         }   
  39.     }   
  40.     ~SafeFile()   
  41.     {   
  42.         fclose(fileHandler);   
  43.     }   
  44.   
  45.     void write(const char* str)   
  46.     {   
  47.         if( fputs(str,fileHandler)==EOF )   
  48.         {   
  49.             throw runtime_error("Write Error!");   
  50.         }   
  51.     }   
  52.   
  53.     void write(const char* buffer, size_t num)   
  54.     {   
  55.         if( num!=0 && fwrite(buffer,num,1,fileHandler)==0 )   
  56.         {   
  57.             throw runtime_error("Write Error!");   
  58.         }   
  59.     }   
  60. private:   
  61.     FILE *fileHandler;   
  62.     SafeFile(const SafeFile&);   
  63.     SafeFile &operator =(const SafeFile&);   
  64. };   
  65.   
  66. int main(int argc, char *argv[])   
  67. {   
  68.     SafeFile testVar("foo.test");   
  69.     testVar.write("Hello RAII");   
  70. }  

C++的结构决定了其原生支持RAII,而在Java 中,对象何时销毁是未知的,所以在Java 中可以使用try-finally做相关处理。

2)智能指针模拟

一个更复杂一点的例子是模拟智能指针,抽象出来的RAII类中实现了一个操作符*,直接返回存入的指针:

现在我们有一个类:

  1. class Example {   
  2.   SomeResource* p_;   
  3.   SomeResource* p2_;   
  4. public:   
  5.   Example() :   
  6.     p_(new SomeResource()),   
  7.     p2_(new SomeResource()) {   
  8.     std::cout << "Creating Example, allocating SomeResource!/n";   
  9.   }   
  10.   
  11.   Example(const Example& other) :   
  12.     p_(new SomeResource(*other.p_)),   
  13.     p2_(new SomeResource(*other.p2_)) {}   
  14.   
  15.   Example& operator=(const Example& other) {   
  16.     // Self assignment?   
  17.     if (this==&other)   
  18.       return *this;   
  19.   
  20.     *p_=*other.p_;   
  21.     *p2_=*other.p2_;   
  22.     return *this;   
  23.   }   
  24.   
  25.   ~Example() {   
  26.      std::cout << "Deleting Example, freeing SomeResource!/n";   
  27.      delete p_;   
  28.      delete p2_;   
  29.   }   
  30. };  

假设在创建SomeResource的时候可能会有异常,那么当p_指向的资源被创建但p2_指向的资源创建失败时,Example的实例就整个创建失败,那么p_指向的资源就存在内存泄露问题。

用下边的这个方法可以为权宜之计:

  1. Example() : p_(0),p2_(0)   
  2. {   
  3.   try {   
  4.     p_=new SomeResource();   
  5.     p2_=new SomeResource("H",true);   
  6.     std::cout << "Creating Example, allocating SomeResource!/n";   
  7.   }   
  8.   catch(...) {   
  9.     delete p2_;   
  10.     delete p_;   
  11.     throw;   
  12.   }   
  13. }  

但是我们可以利用一个对象在离开一个域中会调用析构函数的特性,在构造函数中完成初始化,在析构函数中完成清理工作,将需要操作和保护的指针作为成员变量放入RAII中。

  1. template <TYPENAME T>   
  2. class RAII {   
  3.   T* p_;   
  4. public:   
  5.   explicit RAII(T* p) : p_(p) {}   
  6.   
  7.   ~RAII() {   
  8.     delete p_;   
  9.   }   
  10.   
  11.   void reset(T* p) {   
  12.     delete p_;   
  13.     p_=p;   
  14.   }   
  15.   
  16.   T* get() const {   
  17.      return p_;   
  18.   }   
  19.   
  20.   T& operator*() const {   
  21.      return *p_;   
  22.   }   
  23.   
  24.   void swap(RAII& other) {   
  25.     std::swap(p_,other.p_);   
  26.   }   
  27.   
  28. private:   
  29.   RAII(const RAII& other);   
  30.   RAII& operator=(const RAII& other);   
  31. };  

我们在具体使用把保护的指针Someresource放在RAII中:

  1. class Example {   
  2.   RAII<SOMERESOURCE> p_;   
  3.   RAII<SOMERESOURCE> p2_;   
  4. public:   
  5.   Example() :   
  6.     p_(new SomeResource()),   
  7.     p2_(new SomeResource()) {}   
  8.   
  9.   Example(const Example& other)   
  10.     : p_(new SomeResource(*other.p_)),   
  11.       p2_(new SomeResource(*other.p2_)) {}   
  12.   
  13.   Example& operator=(const Example& other) {   
  14.     // Self assignment?   
  15.     if (this==&other)   
  16.       return *this;   
  17.   
  18.     *p_=*other.p_;   
  19.     *p2_=*other.p2_;   
  20.     return *this;   
  21.   }   
  22.   
  23.   ~Example() {   
  24.     std::cout << "Deleting Example, freeing SomeResource!/n";   
  25.   }   
  26. };  

现在即使p_成功而p2_失败,那么在Stack winding时也会调用RAII的析构函数保证了p_指向的Someresource被析构。这种方法较之例1中需要实现被组合的指针类型相应的接口不同,这里不需要对接口进行封装。当然,在例1中,你也可以提供一个getPointer的函数直接将句柄提供出来。

其实在Example中,已经不需要析构函数了,因为RAII类会帮它照顾好这一切的。这有点像auto_ptr,本文并不打算深入讨论智能指针这个话题。

3)锁操作

  1. /*  
  2.  * =====================================================================================  
  3.  *  
  4.  *       Filename:  threadlock.cpp  
  5.  *  
  6.  *    Description:  Lock for RAII  
  7.  *  
  8.  *        Version:  1.0  
  9.  *        Created:  05/09/2011 10:16:13 PM  
  10.  *       Revision:  none  
  11.  *       Compiler:  g++  
  12.  *  
  13.  *         Author:  gnuhpc (http://blog.csdn.net/gnuhpc), warmbupt@gmail.com  
  14.  *  
  15.  * =====================================================================================  
  16.  */  
  17. #include <CSTDIO>   
  18. #include <STDLIB.H>   
  19. #include <PTHREAD.H>   
  20.   
  21. int counter = 0;   
  22. void* routine(void *ptr);   
  23. pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;   
  24.   
  25. class NonCopyable   
  26. {   
  27. public:   
  28.     NonCopyable(){};   
  29. private:   
  30.     NonCopyable (NonCopyable const &); // private copy constructor   
  31.     NonCopyable & operator = (NonCopyable const &); // private assignment operator   
  32. };   
  33.   
  34. class ScopeMutex:NonCopyable   
  35. {   
  36. public:   
  37.     ScopeMutex(pthread_mutex_t* mutex):mutex_(mutex){   
  38.         pthread_mutex_lock( mutex_ );   
  39.     }   
  40.   
  41.     ~ScopeMutex(){   
  42.         pthread_mutex_unlock( mutex_ );   
  43.     }   
  44. private:   
  45.     pthread_mutex_t *mutex_;   
  46. };   
  47.   
  48. int main(int argc, char *argv[])   
  49. {   
  50.     int rc1, rc2;   
  51.     pthread_t thread1, thread2;   
  52.     if( (rc1=pthread_create( &thread1, NULL, routine, NULL)) )   
  53.     {   
  54.         printf("Thread creation failed: %d/n", rc1);   
  55.     }   
  56.   
  57.     if( (rc2=pthread_create( &thread2, NULL, routine, NULL)) )   
  58.     {   
  59.         printf("Thread creation failed: %d/n", rc1);   
  60.     }   
  61.     pthread_join( thread1, NULL);   
  62.     pthread_join( thread2, NULL);   
  63. }   
  64.   
  65. void* routine(void *ptr)   
  66. {   
  67.     ScopeMutex scopeMutex(&mutex);   
  68.     counter++;   
  69.     printf("%d/n",counter);   
  70. }  

3.总结

RAII机制保证了异常安全,并且也为程序员在编写动态分配内存的程序时提供了安全保证。缺点是有些操作可能会抛出异常,如果放在析构函数中进行则不能将错误传递出去,那么此时析构函数就必须自己处理异常。这在某些时候是很繁琐的。

4.参考文献

http://www.codeproject.com/KB/cpp/RAIIFactory.aspx  这篇文章用工厂方法的方式完成了一个RAII工厂。

http://www.informit.com/articles/printerfriendly.aspx?p=21084 讨论了异常安全的一些情况,其中提到赋值符的安全值得注意。

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值