RAII

Resource Acquisition Is Initialization,资源获取即初始化,将资源的生命周期与一个对象的生命周期绑定,举例来说就是,把一些资源封装在类中,在构造函数请求资源,在析构函数中释放资源且绝不抛出异常,而一个对象在生命周期结束时会自动调用析构函数,即资源的生命周期与一个对象的生命周期绑定。

RAII的应用

见如下代码:

  1. std::mutex mutex;
  2. void func() {}
  3. void NoRAII() {
  4. mutex.lock();
  5. func();
  6. if (xxx) {
  7. mutex.unlock();// 多次需要调用unlock(),还有可能忘记调用unlock导致一直持有锁
  8. return;
  9. }
  10. ...
  11. mutex.unlock();
  12. }
  13. void RAII() { // 不需要显式调用unlock
  14. std::lock_guard<std::mutex> lock(mutex);
  15. func();
  16. if (xxx) {
  17. return;
  18. }
  19. ...
  20. return;
  21. }

RAII的应用非常多,C++的STL基本都遵循RAII规范,典型的如vector, string, lock_guard, unique_lock, shared_ptr, unique_ptr等,这里不会介绍这些STL的使用,相信大家也都会使用,如果有相关需求可以留言。

RAII的巧用

boost中的ScopeExit是个很高级的特性,利用RAII特性,可以在作用域结束时自动关闭已经打开的资源或做某些清理操作,类似于unique_ptr,但又比unique_ptr方便,不需要自定义delete函数。
举例: 如果没有ScopeExit

  1. void test () {
  2. char *test = new char[100];
  3. if (a) {
  4. delete[] test; // count 1
  5. return;
  6. }
  7. xxx;
  8. if (b) {
  9. delete[] test; // count 2
  10. return;
  11. }
  12. ...
  13. delete[] test; // count 3
  14. }

使用了ScopeExit

  1. void test () {
  2. char *test = new char[100];
  3. std::ofstream ofs("test.txt");
  4. ScopeExit {
  5. delete[] test; // 在test函数生命周期结束后自动执行delete[]操作
  6. ofs.close(); // 在生命周期结束后自动关闭文件,这里只是举个不恰当例子,ofstream自动生命周期结束后就会关闭
  7. };
  8. if (a) {
  9. return;
  10. }
  11. xxx;
  12. if (b) {
  13. return;
  14. }
  15. ...
  16. }

当然,正常C++代码不鼓励使用裸指针,可以使用智能指针来申请资源,这里只是举个例子,使用ScopeExit也可以用于处理文件资源的关闭等等。
两者代码比较后优劣程度显而易见,不使用ScopeExit需要在return前多次做资源清理操作,而使用了ScopeExit则只需做一次声明后在作用域结束后会自动进行相关的资源清理操作,方便而且不易出错。

ScopeExit实现

这里参考boost使用C++11实现了一套ScopeExit机制

  1. class ScopeExit {
  2. public:
  3. ScopeExit() = default;
  4. ScopeExit(const ScopeExit&) = delete;
  5. void operator=(const ScopeExit&) = delete;
  6. ScopeExit(ScopeExit&&) = default;
  7. ScopeExit& operator=(ScopeExit&&) = default;
  8. template <typename F, typename... Args>
  9. ScopeExit(F&& f, Args&&... args) {
  10. func_ = std::bind(std::forward<F>(f), std::forward<Args>(args)...);
  11. }
  12. ~ScopeExit() {
  13. if (func_) {
  14. func_();
  15. }
  16. };
  17. private:
  18. std::function<void()> func_;
  19. };
  20. #define _CONCAT(a, b) a##b
  21. #define _MAKE_SCOPE_(line) ScopeExit _CONCAT(defer, line) = [&]()
  22. #undef SCOPE_GUARD
  23. #define SCOPE_GUARD _MAKE_SCOPE_(__LINE__)

使用方式如下:

  1. void test () {
  2. char *test = new char[100];
  3. std::ofstream ofs("test.txt");
  4. SCOPE_GUARD{
  5. delete[] test;
  6. ofs.close();
  7. };
  8. if (a) {
  9. return;
  10. }
  11. ...
  12. if (b) {
  13. return;
  14. }
  15. ...
  16. }

RAII妙用之计算函数耗时

平时编程过程中不可避免的需要考虑程序的性能,其中,最主要的也是最常见的性能就是“函数耗时”,基本上每个开发者都有打印某个函数耗时的需求,平时打印函数时间是否使用的是如下方式:

  1. void Func() {
  2. ...
  3. }
  4. int CalTime() {
  5. int begin = GetCurrentTime(); // 伪代码
  6. Func();
  7. int end = GetCurrentTime();
  8. cout << "func time is " << end - begin << " s" << endl;
  9. }

想计算某个函数的耗时就在函数前后获取时间之后再算差值,这种方式不仅写法不好看,还麻烦。
这里可以利用RAII方式,把函数的生命周期和一个对象绑定,对象创建时候执行函数,对象生命周期结束析构时候函数执行完毕,这样对象存活的时间就是函数的耗时,见代码:

  1. #pragma once
  2. #include <sys/time.h>
  3. #include <chrono>
  4. #include <ctime>
  5. #include <fstream>
  6. #include <iostream>
  7. #include <string>
  8. using llong = long long;
  9. using namespace std::chrono;
  10. using std::cout;
  11. using std::endl;
  12. namespace wzq {
  13. namespace timer {
  14. class TimerLog {
  15. public:
  16. TimerLog(const std::string tag) { // 对象构造时候保存开始时间
  17. m_begin_ = high_resolution_clock::now();
  18. m_tag_ = tag;
  19. }
  20. void Reset() { m_begin_ = high_resolution_clock::now(); }
  21. llong Elapsed() {
  22. return static_cast<llong>(
  23. duration_cast<std::chrono::milliseconds>(high_resolution_clock::now() - m_begin_).count());
  24. }
  25. ~TimerLog() { // 对象析构时候计算当前时间与对象构造时候的时间差就是对象存活的时间
  26. auto time =
  27. duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - m_begin_).count();
  28. std::cout << "time { " << m_tag_ << " } " << static_cast<double>(time) << " ms" << std::endl;
  29. }
  30. private:
  31. std::chrono::time_point<std::chrono::high_resolution_clock> m_begin_;
  32. std::string m_tag_;
  33. };
  34. } // namespace timer
  35. } // namespace wzq

使用方式:

  1. void TestTimerLog() {
  2. auto func = [](){
  3. for (int i = 0; i < 5; ++i) {
  4. cout << "i " << i << endl;
  5. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  6. }
  7. };
  8. {
  9. wzq::timer::TimerLog t("func");
  10. func();
  11. }
  12. }

程序输出:

  1. i 0
  2. i 1
  3. i 2
  4. i 3
  5. i 4
  6. time { func } 5 ms

这样就可以很方便的打印函数时间,但是这里每次都需要定义一个对象,貌似也不太方便,可以考虑加个宏,如下:

  1. #define CAL_SCOPE_TIME(x) wzq::timer::TimerLog t(x)

再如下使用:

  1. void TestTimerLog() {
  2. auto func = [](){
  3. for (int i = 0; i < 5; ++i) {
  4. cout << "i " << i << endl;
  5. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  6. }
  7. };
  8. {
  9. CAL_SCOPE_TIME("func time");
  10. func();
  11. }
  12. }

是不是更方便,当然也有可能要计算多个交叉函数的耗时。

  1. void TestTime() {
  2. func1();
  3. func2();
  4. func3();
  5. func4();
  6. }

这里如果想计算func1()+func2()+func3()耗时,也想计算func2()+func3()+func4()耗时,使用上述RAII貌似就不太方便了,这里可以再写两个宏。

  1. #define CAL_TIME_BEGIN(x) auto begin_##x = wzq::timer::TimerLog::Now();
  2. #define CAL_TIME_END(x) \
  3. cout << "time { " << #x << " } " << wzq::timer::TimerLog::DiffMs(begin_##x, wzq::timer::TimerLog::Now()) << "ms" << endl;

就可以如下使用,尽管不是特别方便,但是也比最开始介绍的方便一些。

  1. void TestTime() {
  2. CAL_TIME_BEGIN(func123)
  3. func1();
  4. CAL_TIME_BEGIN(func234)
  5. func2();
  6. func3();
  7. CAL_TIME_END(func123)
  8. func4();
  9. CAL_TIME_END(func234)
  10. }

这样就会输出想要的耗时结果。

完整代码

  1. #pragma once
  2. #include <sys/time.h>
  3. #include <chrono>
  4. #include <ctime>
  5. #include <fstream>
  6. #include <iostream>
  7. #include <string>
  8. using llong = long long;
  9. using namespace std::chrono;
  10. using std::cout;
  11. using std::endl;
  12. #define CAL_SCOPE_TIME(x) wzq::timer::TimerLog t(x)
  13. #define CAL_TIME_BEGIN(x) auto begin_##x = wzq::timer::TimerLog::Now();
  14. #define CAL_TIME_END(x) \
  15. cout << "time { " << #x << " } " << wzq::timer::TimerLog::DiffMs(begin_##x, wzq::timer::TimerLog::Now()) << "ms" << endl;
  16. namespace wzq {
  17. namespace timer {
  18. class TimerLog {
  19. public:
  20. TimerLog(const std::string tag) {
  21. m_begin_ = high_resolution_clock::now();
  22. m_tag_ = tag;
  23. }
  24. void Reset() { m_begin_ = high_resolution_clock::now(); }
  25. llong Elapsed() {
  26. return static_cast<llong>(
  27. duration_cast<std::chrono::milliseconds>(high_resolution_clock::now() - m_begin_).count());
  28. }
  29. static std::chrono::time_point<std::chrono::high_resolution_clock> Now() { return high_resolution_clock::now(); }
  30. static llong DiffUs(std::chrono::time_point<std::chrono::high_resolution_clock> before,
  31. std::chrono::time_point<std::chrono::high_resolution_clock> after) {
  32. return static_cast<llong>(duration_cast<std::chrono::microseconds>(after - before).count());
  33. }
  34. static llong DiffMs(std::chrono::time_point<std::chrono::high_resolution_clock> before,
  35. std::chrono::time_point<std::chrono::high_resolution_clock> after) {
  36. return static_cast<llong>(duration_cast<std::chrono::milliseconds>(after - before).count());
  37. }
  38. ~TimerLog() {
  39. auto time =
  40. duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - m_begin_).count();
  41. std::cout << "time { " << m_tag_ << " } " << static_cast<double>(time) << " ms" << std::endl;
  42. }
  43. static llong GetCurrentMs() {
  44. struct timeval time;
  45. gettimeofday(&time, NULL);
  46. return static_cast<llong>(time.tv_sec * 1000) + static_cast<llong>(time.tv_usec / 1000);
  47. }
  48. static void ShowCurTime() {
  49. time_t now = time(0);
  50. char* dt = ctime(&now);
  51. cout << "cur time is " << dt << endl;
  52. cout << "cur ms is " << GetCurrentMs() << endl;
  53. }
  54. static struct timeval GetCurrentTimeofDay() {
  55. struct timeval time;
  56. gettimeofday(&time, NULL);
  57. return time;
  58. }
  59. private:
  60. std::chrono::time_point<std::chrono::high_resolution_clock> m_begin_;
  61. std::string m_tag_;
  62. };
  63. } // namespace timer
  64. } // namespace wzq