文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

源码分析C++的string的实现

2024-12-24 16:03

关注

读完本文相信您可以回答以下问题:

string的常见的实现方式有几种?

▼  string类的内部结构是什么样子?

▼  string内部使用的内存是如何分配管理的?

▼  string是如何拷贝构造,如何析构的,有引用计数的概念吗?

▼  string的data()和c_str()函数有什么区别?

▼  std::to_string()是如何实现的?

常见的string实现方式有两种,一种是深拷贝的方式,一种是COW(copy on write)写时拷贝方式,以前多数使用COW方式,但由于目前多线程使用越来越多,COW技术在多线程中会有额外的性能恶化,所以现在多数使用深拷贝的方式,但了解COW的技术实现还是很有必要的。

这里会对这两种方式都进行源码分析,正文内容较少,更多内容都在源码的注释中。

string的内容主要在gcc源码的三个文件中:

在分析前先介绍下string或者C++ stl中几个基本的概念:

深拷贝下string的实现

文件中有如下代码: 

  1. // file: string  
  2. using string = basic_string<char>

这里可以看到string其实真实的样子是basic_string,这里可以看下basic_string真实的结构: 

  1. template <typename _CharT, typename _Traits, typename _Alloc>  
  2. class basic_string {  
  3.    // Use empty-base optimization: http://www.cantrip.org/emptyopt.html  
  4.    struct _Alloc_hider : allocator_type  // TODO check __is_final  
  5.   {  
  6.        _Alloc_hider(pointer __dat, const _Alloc& __a) : allocator_type(__a), _M_p(__dat) {}  
  7.        _Alloc_hider(pointer __dat, _Alloc&& __a = _Alloc()) : allocator_type(std::move(__a)), _M_p(__dat) {}  
  8.          
  9.        pointer _M_p;  // The actual data.  
  10.   };  
  11.    _Alloc_hider _M_dataplus;  
  12.      
  13.    size_type _M_string_length;  
  14.    enum { _S_local_capacity = 15 / sizeof(_CharT) };  
  15.      
  16.    union {  
  17.        _CharT _M_local_buf[_S_local_capacity + 1];  
  18.          
  19.        size_type _M_allocated_capacity;  
  20.   };  
  21. }; 

从这里可以看见整个basic_string的结构如图:

看下面代码: 

  1. string str; 

这段代码会调用普通构造函数,对应的源码实现如下: 

  1. basic_string() : _M_dataplus(_M_local_data()) { _M_set_length(0); } 

而_M_local_data()的实现如下: 

  1. const_pointer _M_local_data() const {  
  2.    return std::pointer_traits<const_pointer>::pointer_to(*_M_local_buf);  

这里可以看见M_dataplus表示实际存放数据的地方,当string是空的时候,其实就是指向M_local_buf,且_M_string_length是0。

当由char*构造string时,构造函数如下: 

  1. basic_string(const _CharT* __s, size_type __n, const _Alloc& __a = _Alloc()) : _M_dataplus(_M_local_data(), __a) {  
  2.    _M_construct(__s, __s + __n);  

首先让M_dataplus指向local_buf,再看下M_construct的实现,具体分析可以看下我代码中添加的注释: 

  1.   
  2. template <typename _CharT, typename _Traits, typename _Alloc>  
  3. template <typename _InIterator>  
  4. void basic_string<_CharT, _Traits, _Alloc>::_M_construct(_InIterator __beg, _InIterator __end,  
  5.                                                         std::input_iterator_tag) {    size_type __len = 0 
  6.   size_type __capacity = size_type(_S_local_capacity);  
  7.   // 现在__capacity是15,注意这个值等会可能会改变  
  8.   while (__beg != __end && __len < __capacity) { 
  9.        _M_data()[__len++] = *__beg;  
  10.       ++__beg; 
  11.    }  
  12.     
  13.   __try {  
  14.       while (__beg != __end) {  
  15.           if (__len == __capacity) {  
  16.                 
  17.               __capacity = __len + 1;  
  18.               pointer __another = _M_create(__capacity, __len);  
  19.                 
  20.               this->_S_copy(__another, _M_data(), __len);  
  21.                 
  22.               _M_dispose();  
  23.                 
  24.               _M_data(__another);  
  25.                 
  26.               _M_capacity(__capacity);  
  27.           }  
  28.           _M_data()[__len++] = *__beg;  
  29.           ++__beg;  
  30.       }  
  31.   }  
  32.   __catch(...) {  
  33.         
  34.       _M_dispose();  
  35.       __throw_exception_again;  
  36.   }  
  37.     
  38.   _M_set_length(__len);  

再分析下内部的内存申请函数_M_create: 

  1.   
  2. template <typename _CharT, typename _Traits, typename _Alloc>  
  3. typename basic_string<_CharT, _Traits, _Alloc>::pointer basic_string<_CharT, _Traits, _Alloc>::_M_create(  
  4.   size_type& __capacity, size_type __old_capacity) {  
  5.     
  6.   if (__capacity > max_size()) std::__throw_length_error(__N("basic_string::_M_create"));  
  7.     
  8.   if (__capacity > __old_capacity && __capacity < 2 * __old_capacity) {  
  9.       __capacity = 2 * __old_capacity;  
  10.       // Never allocate a string bigger than max_size.  
  11.       if (__capacity > max_size()) __capacity = max_size();  
  12.   }  
  13.     
  14.   return _Alloc_traits::allocate(_M_get_allocator(), __capacity + 1);  

再分析下内部的内存释放函数_M_dispose函数: 

  1.   
  2. void _M_dispose() {  
  3.   if (!_M_is_local()) _M_destroy(_M_allocated_capacity);  
  4.  
  5.   
  6. bool _M_is_local() const { return _M_data() == _M_local_data(); }  
  7. void _M_destroy(size_type __size) throw() {  
  8.   _Alloc_traits::deallocate(_M_get_allocator(), _M_data(), __size + 1);  

再分析下basic_string的拷贝构造函数: 

  1.   
  2. basic_string(const basic_string& __str)  
  3.   : _M_dataplus(_M_local_data(), _Alloc_traits::_S_select_on_copy(__str._M_get_allocator())) {  
  4.   _M_construct(__str._M_data(), __str._M_data() + __str.length());  

再分析下basic_string的赋值构造函数: 

  1.   
  2. basic_string& operator=(const basic_string& __str) { return this->assign(__str); }  
  3.   
  4. basic_string& assign(const basic_string& __str) {  
  5.   this->_M_assign(__str);  
  6.   return *this;  
  7.  
  8.   
  9. template <typename _CharT, typename _Traits, typename _Alloc>  
  10. void basic_string<_CharT, _Traits, _Alloc>::_M_assign(const basic_string& __str) {  
  11.   if (this != &__str) {  
  12.       const size_type __rsize = __str.length();  
  13.       const size_type __capacity = capacity();  
  14.         
  15.       if (__rsize > __capacity) {  
  16.           size_type __new_capacity = __rsize 
  17.           pointer __tmp = _M_create(__new_capacity, __capacity);  
  18.           _M_dispose();  
  19.           _M_data(__tmp);  
  20.           _M_capacity(__new_capacity);  
  21.       }  
  22.         
  23.       if (__rsize) this->_S_copy(_M_data(), __str._M_data(), __rsize);  
  24.       _M_set_length(__rsize);  
  25.   }  
  26.  

再分析下移动构造函数: 

  1.   
  2. basic_string(basic_string&& __str) noexcept : _M_dataplus(_M_local_data(), std::move(__str._M_get_allocator())) {  
  3.   if (__str._M_is_local()) {  
  4.       traits_type::copy(_M_local_buf, __str._M_local_buf, _S_local_capacity + 1);  
  5.   } else {  
  6.       _M_data(__str._M_data());  
  7.       _M_capacity(__str._M_allocated_capacity);  
  8.   }  
  9.   // Must use _M_length() here not _M_set_length() because  
  10.   // basic_stringbuf relies on writing into unallocated capacity so  
  11.   // we mess up the contents if we put a '\0' in the string.  
  12.   _M_length(__str.length());  
  13.   __str._M_data(__str._M_local_data());  
  14.   __str._M_set_length(0);  

移动赋值函数和移动构造函数类似,就不作过多分析啦。

COW方式下string的实现

先看下部分源代码了解下COW的basic_string的结构: 

  1. template <typename _CharT, typename _Traits, typename _Alloc>  
  2. class basic_string {  
  3.   private:  
  4.   struct _Rep_base {  
  5.         
  6.       size_type _M_length;  
  7.         
  8.       size_type _M_capacity;  
  9.         
  10.       _Atomic_word _M_refcount; 
  11.    };  
  12.     
  13.   struct _Rep : _Rep_base {  
  14.       // Types:  
  15.       typedef typename _Alloc::template rebind<char>::other _Raw_bytes_alloc;  
  16.       static const size_type _S_max_size;  
  17.       static const _CharT _S_terminal; // \0  
  18.       static size_type _S_empty_rep_storage[]; // 这里大小不是0,稍后分析  
  19.       static _Rep& _S_empty_rep() _GLIBCXX_NOEXCEPT {  
  20.           // NB: Mild hack to avoid strict-aliasing warnings. Note that  
  21.           // _S_empty_rep_storage is never modified and the punning should  
  22.           // be reasonably safe in this case.  
  23.           void* __p = reinterpret_cast<void*>(&_S_empty_rep_storage);  
  24.           return *reinterpret_cast<_Rep*>(__p);  
  25.       }  
  26.   };  
  27.   // Use empty-base optimization: http://www.cantrip.org/emptyopt.html  
  28.   struct _Alloc_hider : _Alloc {  
  29.       _Alloc_hider(_CharT* __dat, const _Alloc& __a) _GLIBCXX_NOEXCEPT : _Alloc(__a), _M_p(__dat) {}  
  30.       _CharT* _M_p; // The actual data,这里的_M_p指向存储实际数据的对象地址  
  31.   };  
  32.   public:  
  33.   static const size_type npos = static_cast<size_type>(-1); // 0xFFFFFFFF  
  34.   private:  
  35.     
  36.   mutable _Alloc_hider _M_dataplus;  
  37. }; 

具体分析可以看代码中注释,可以分析出COW的string结构如图:

前面程序喵分析过深拷贝方式下string的局部内存为M_local_buf,那COW下string的S_empty_rep_storage是什么样子呢?直接看源代码: 

  1. // Linker sets _S_empty_rep_storage to all 0s (one reference, empty string)  
  2. // at static init time (before static ctors are run).  
  3. template <typename _CharT, typename _Traits, typename _Alloc>  
  4. typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>::_Rep::  
  5.   _S_empty_rep_storage[(sizeof(_Rep_base) + sizeof(_CharT) + sizeof(size_type) - 1) / sizeof(size_type)]; 

再分析下构造函数: 

  1.   
  2. template <typename _CharT, typename _Traits, typename _Alloc>  
  3. basic_string<_CharT, _Traits, _Alloc>::basic_string(const _CharT* __s, size_type __n, const _Alloc& __a)  
  4.   : _M_dataplus(_S_construct(__s, __s + __n, __a), __a) {}  
  5.   
  6. template <typename _CharT, typename _Traits, typename _Alloc>  
  7. template <typename _InIterator>  
  8. _CharT* basic_string<_CharT, _Traits, _Alloc>::_S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,  
  9.                                                           input_iterator_tag) {  
  10. #if _GLIBCXX_FULLY_DYNAMIC_STRING == 0  
  11.   if (__beg == __end && __a == _Alloc()) return _S_empty_rep()._M_refdata();  
  12. #endif  
  13.   // Avoid reallocation for common case.  
  14.   _CharT __buf[128];  
  15.   size_type __len = 0 
  16.   while (__beg != __end && __len < sizeof(__buf) / sizeof(_CharT)) {  
  17.       __buf[__len++] = *__beg;  
  18.       ++__beg;  
  19.   }  
  20.     
  21.   _Rep* __r = _Rep::_S_create(__len, size_type(0), __a);  
  22.     
  23.   _M_copy(__r->_M_refdata(), __buf, __len);  
  24.   __try { 
  25.          
  26.       while (__beg != __end) {  
  27.           if (__len == __r->_M_capacity) {  
  28.               // Allocate more space.  
  29.               _Rep* __another = _Rep::_S_create(__len + 1, __len, __a);  
  30.               _M_copy(__another->_M_refdata(), __r->_M_refdata(), __len);  
  31.               __r->_M_destroy(__a);  
  32.               __r = __another
  33.            }  
  34.           __r->_M_refdata()[__len++] = *__beg;  
  35.           ++__beg;  
  36.       } 
  37.   }  
  38.   __catch(...) {  
  39.       __r->_M_destroy(__a);  
  40.       __throw_exception_again;  
  41.   }  
  42.     
  43.   __r->_M_set_length_and_sharable(__len);  
  44.   return __r->_M_refdata();  

再看下string内部_M_create是如何申请内存的 

  1. template <typename _CharT, typename _Traits, typename _Alloc>  
  2. typename basic_string<_CharT, _Traits, _Alloc>::_Rep* basic_string<_CharT, _Traits, _Alloc>::_Rep::_S_create(  
  3.   size_type __capacity, size_type __old_capacity, const _Alloc& __alloc) {  
  4.   if (__capacity > _S_max_size) __throw_length_error(__N("basic_string::_S_create"));  
  5.     
  6.   const size_type __pagesize = 4096 
  7.   const size_type __malloc_header_size = 4 * sizeof(void*);  
  8.     
  9.   if (__capacity > __old_capacity && __capacity < 2 * __old_capacity) __capacity = 2 * __old_capacity;  
  10.     
  11.   size_type __size = (__capacity + 1) * sizeof(_CharT) + sizeof(_Rep);  
  12.     
  13.   const size_type __adj_size = __size + __malloc_header_size;  
  14.   if (__adj_size > __pagesize && __capacity > __old_capacity) {  
  15.       const size_type __extra = __pagesize - __adj_size % __pagesize;  
  16.       __capacity += __extra / sizeof(_CharT);  
  17.       // Never allocate a string bigger than _S_max_size.  
  18.       if (__capacity > _S_max_size) __capacity = _S_max_size 
  19.       __size = (__capacity + 1) * sizeof(_CharT) + sizeof(_Rep);  
  20.   }  
  21.   // NB: Might throw, but no worries about a leak, mate: _Rep()  
  22.   // does not throw.  
  23.   void* __place = _Raw_bytes_alloc(__alloc).allocate(__size);  
  24.     
  25.   _Rep* __p = new (__place) _Rep;  
  26.   __p->_M_capacity = __capacity 
  27.     
  28.   __p->_M_set_sharable();  
  29.   return __p;  
  30.  
  31. 这里有关于malloc的知识点可以看我之前写的文章:xxx前面Rep有个_M_set_length_and_sharable方法,看下它的源码:  
  32.   
  33. void _M_set_length_and_sharable(size_type __n) _GLIBCXX_NOEXCEPT {  
  34. #if _GLIBCXX_FULLY_DYNAMIC_STRING == 0  
  35.     if (__builtin_expect(this != &_S_empty_rep(), false))  
  36. #endif  
  37.     { 
  38.         this->_M_set_sharable();  // One reference.  
  39.         this->_M_length = __n 
  40.         traits_type::assign(this->_M_refdata()[__n], _S_terminal); 
  41.     }  
  42.  
  43. void _M_set_sharable() _GLIBCXX_NOEXCEPT { this->_M_refcount = 0; } 

COW版本主要就是为了避免过多的拷贝,这里看下string的拷贝构造函数: 

  1.   
  2. basic_string(const basic_string& __str, const _Alloc& __a)  
  3.     : _M_dataplus(__str._M_rep()->_M_grab(__a, __str.get_allocator()), __a) {}  
  4.   
  5. _Rep* _M_rep() const _GLIBCXX_NOEXCEPT { return &((reinterpret_cast<_Rep*>(_M_data()))[-1]); }  
  6.   
  7. _CharT* _M_grab(const _Alloc& __alloc1, const _Alloc& __alloc2) {  
  8.     return (!_M_is_leaked() && __alloc1 == __alloc2) ? _M_refcopy() : _M_clone(__alloc1);  
  9.  
  10.   
  11. bool _M_is_leaked() const _GLIBCXX_NOEXCEPT {  
  12. #if defined(__GTHREADS)  
  13.     // _M_refcount is mutated concurrently by _M_refcopy/_M_dispose,  
  14.     // so we need to use an atomic load. However, _M_is_leaked  
  15.     // predicate does not change concurrently (i.e. the string is either  
  16.     // leaked or not), so a relaxed load is enough.  
  17.     return __atomic_load_n(&this->_M_refcount, __ATOMIC_RELAXED) < 0 
  18. #else  
  19.     return this->_M_refcount < 0 
  20. #endif  
  21.  
  22.   
  23. _CharT* _M_refcopy() throw() {  
  24. #if _GLIBCXX_FULLY_DYNAMIC_STRING == 0  
  25.     if (__builtin_expect(this != &_S_empty_rep(), false))  
  26. #endif  
  27.         __gnu_cxx::__atomic_add_dispatch(&this->_M_refcount, 1);  
  28.     return _M_refdata();  
  29. }  // XXX MT    
  30.   
  31. template <typename _CharT, typename _Traits, typename _Alloc>  
  32. _CharT* basic_string<_CharT, _Traits, _Alloc>::_Rep::_M_clone(const _Alloc& __alloc, size_type __res) {  
  33.     // Requested capacity of the clone.  
  34.     const size_type __requested_cap = this->_M_length + __res;  
  35.     _Rep* __r = _Rep::_S_create(__requested_cap, this->_M_capacity, __alloc);  
  36.     if (this->_M_length) _M_copy(__r->_M_refdata(), _M_refdata(), this->_M_length);  
  37.     __r->_M_set_length_and_sharable(this->_M_length);  
  38.     return __r->_M_refdata();  
  39.  
  40. 再分析下string的析构函数:  
  41.   
  42. ~basic_string() _GLIBCXX_NOEXCEPT { _M_rep()->_M_dispose(this->get_allocator()); }  
  43.   
  44. void _M_dispose(const _Alloc& __a) _GLIBCXX_NOEXCEPT {  
  45. #if _GLIBCXX_FULLY_DYNAMIC_STRING == 0  
  46.     if (__builtin_expect(this != &_S_empty_rep(), false))  
  47. #endif  
  48.     {  
  49.         // Be race-detector-friendly.  For more info see bits/c++config. 
  50.          _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);  
  51.         if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0) {  
  52.             _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);  
  53.             _M_destroy(__a);  
  54.         }  
  55.     }  
  56. }  // XXX MT  
  57. template <typename _CharT, typename _Traits, typename _Alloc>  
  58. void basic_string<_CharT, _Traits, _Alloc>::_Rep::_M_destroy(const _Alloc& __a) throw() {  
  59.     const size_type __size = sizeof(_Rep_base) + (this->_M_capacity + 1) * sizeof(_CharT);  
  60.     _Raw_bytes_alloc(__a).deallocate(reinterpret_cast<char*>(this), __size);  

data()和c_str()的区别

我们以前学习工作过程中都知道str有data和c_str函数,看资料都说它们的区别是一个带\0结束符,一个不带。这里看下源码: 

  1. const _CharT* c_str() const _GLIBCXX_NOEXCEPT { return _M_data(); }  
  2. const _CharT* data() const _GLIBCXX_NOEXCEPT { return _M_data(); } 

这里可以看见它俩没有任何区别,因为\0结束符其实在最开始构造string对象的时候就已经添加啦。

to_string是怎么实现的?

这里直接看代码: 

  1. inline string to_string(int __val) {  
  2.     return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, 4 * sizeof(int), "%d", __val);  
  3.  
  4. inline string to_string(unsigned __val) {  
  5.     return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, 4 * sizeof(unsigned), "%u", __val);  
  6.  
  7. inline string to_string(long __val) {  
  8.     return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, 4 * sizeof(long), "%ld", __val);  
  9.  
  10. template <typename _String, typename _CharT = typename _String::value_type>  
  11. _String __to_xstring(int (*__convf)(_CharT*, std::size_t, const _CharT*, __builtin_va_list), std::size_t __n,  
  12.                      const _CharT* __fmt, ...) {  
  13.     // XXX Eventually the result should be constructed in-place in  
  14.     // the __cxx11 string, likely with the help of internal hooks.  
  15.     _CharT* __s = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __n));  
  16.     __builtin_va_list __args;  
  17.     __builtin_va_start(__args, __fmt);  
  18.     const int __len = __convf(__s, __n, __fmt, __args);  
  19.     __builtin_va_end(__args);  
  20.     return _String(__s, __s + __len);  

这里可以看出所有的数值类型转string,都是通过vsnprintf来实现,具体vsnprintf是什么这里就不过多介绍啦,读者可以自行查找下相关用法哈。

关于std::string的分析就到这里,前面为了让您看源码看的更清晰,程序喵对代码添加了详细的注释,同时做了适当的删减,但一定是正确的源代码,大家可放心阅读。相信您看完上面的源码分析可以回答出文章开头那几个问题并有所收获。 

 

来源:C语言与C++编程内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯