_string.c
来自「stl的源码」· C语言 代码 · 共 674 行 · 第 1/2 页
C
674 行
/* * Copyright (c) 1994 * Hewlett-Packard Company * * Copyright (c) 1996,1997 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1997 * Moscow Center for SPARC Technology * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. */#ifndef _STLP_STRING_C#define _STLP_STRING_C#ifndef _STLP_INTERNAL_STRING_H# include <stl/_string.h>#endif#ifndef _STLP_INTERNAL_CTRAITS_FUNCTIONS_H# include <stl/_ctraits_fns.h>#endif#ifndef _STLP_INTERNAL_FUNCTION_H# include <stl/_function.h>#endif#if defined (_STLP_USE_MSVC6_MEM_T_BUG_WORKAROUND)# define basic_string _STLP_NO_MEM_T_NAME(str)#elif defined (_STLP_DEBUG)# define basic_string _STLP_NON_DBG_NAME(str)#endif#if defined (_STLP_NESTED_TYPE_PARAM_BUG)# define __size_type__ size_t# define size_type size_t# define iterator _CharT*#else# define __size_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_string<_CharT,_Traits,_Alloc>::size_type#endif_STLP_BEGIN_NAMESPACE_STLP_MOVE_TO_PRIV_NAMESPACE// A helper class to use a char_traits as a function object.template <class _Traits>struct _Not_within_traits : public unary_function<typename _Traits::char_type, bool> { typedef typename _Traits::char_type _CharT; const _CharT* _M_first; const _CharT* _M_last; _Not_within_traits(const _CharT* __f, const _CharT* __l) : _M_first(__f), _M_last(__l) {} bool operator()(const _CharT& __x) const { return find_if(_M_first, _M_last, _STLP_PRIV _Eq_char_bound<_Traits>(__x)) == _M_last; }};template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_of_aux(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits*, const __true_type& /* _STLportTraits */){ return __find_first_of(__first1, __last1, __first2, __last2); }template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_of_aux(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits*, const __false_type& /* _STLportTraits */){ return __find_first_of(__first1, __last1, __first2, __last2, _STLP_PRIV _Eq_traits<_Traits>()); }template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_of(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* __traits) {#if !defined (__BORLANDC__) typedef typename _IsSTLportClass<_Traits>::_Ret _STLportTraits;#else enum { _Is = _IsSTLportClass<_Traits>::_Is }; typedef typename __bool2type<_Is>::_Ret _STLportTraits;#endif return __str_find_first_of_aux(__first1, __last1, __first2, __last2, __traits, _STLportTraits());}template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_not_of_aux3(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* /* __traits */, const __true_type& __useStrcspnLikeAlgo){ return __find_first_of_aux2(__first1, __last1, __first2, __last2, __first2, not1(_Identity<bool>()), __useStrcspnLikeAlgo); }template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_not_of_aux3(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* /* __traits */, const __false_type& /* _UseStrcspnLikeAlgo */){ return _STLP_STD::find_if(__first1, __last1, _STLP_PRIV _Not_within_traits<_Traits>(__first2, __last2)); }template <class _InputIter, class _CharT, class _Tp, class _Traits>inline _InputIter __str_find_first_not_of_aux2(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Tp* __pt, _Traits* __traits) { typedef typename _IsIntegral<_Tp>::_Ret _IsIntegral; typedef typename _IsCharLikeType<_CharT>::_Ret _IsCharLike; typedef typename _Land2<_IsIntegral, _IsCharLike>::_Ret _UseStrcspnLikeAlgo; return __str_find_first_not_of_aux3(__first1, __last1, __first2, __last2, __traits, _UseStrcspnLikeAlgo());}template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_not_of_aux1(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* __traits, const __true_type& /* _STLportTraits */){ return __str_find_first_not_of_aux2(__first1, __last1, __first2, __last2, _STLP_VALUE_TYPE(__first1, _InputIter), __traits); }template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_not_of_aux1(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits*, const __false_type& /* _STLportTraits */){ return _STLP_STD::find_if(__first1, __last1, _STLP_PRIV _Not_within_traits<_Traits>(__first2, __last2)); }template <class _InputIter, class _CharT, class _Traits>inline _InputIter __str_find_first_not_of(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* __traits) {#if !defined (__BORLANDC__) typedef typename _IsSTLportClass<_Traits>::_Ret _STLportTraits;#else enum { _Is = _IsSTLportClass<_Traits>::_Is }; typedef typename __bool2type<_Is>::_Ret _STLportTraits;#endif return __str_find_first_not_of_aux1(__first1, __last1, __first2, __last2, __traits, _STLportTraits());}// ------------------------------------------------------------// Non-inline declarations.#if !defined (basic_string)_STLP_MOVE_TO_STD_NAMESPACE#endif// Change the string's capacity so that it is large enough to hold// at least __res_arg elements, plus the terminating _CharT(). Note that,// if __res_arg < capacity(), this member function may actually decrease// the string's capacity.template <class _CharT, class _Traits, class _Alloc>void basic_string<_CharT,_Traits,_Alloc>::reserve(size_type __res_arg) { if (__res_arg > max_size()) this->_M_throw_length_error(); size_type __n = (max)(__res_arg, size()) + 1; if (__n < this->_M_capacity()) return; _M_reserve(__n);}template <class _CharT, class _Traits, class _Alloc>void basic_string<_CharT,_Traits,_Alloc>::_M_reserve(size_type __n) { pointer __new_start = this->_M_start_of_storage.allocate(__n, __n); pointer __new_finish = _STLP_PRIV __ucopy(this->_M_Start(), this->_M_Finish(), __new_start); _M_construct_null(__new_finish); this->_M_deallocate_block(); this->_M_reset(__new_start, __new_finish, __new_start + __n);}template <class _CharT, class _Traits, class _Alloc>basic_string<_CharT,_Traits,_Alloc>&basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) { if (__n > 0) { if (__n > max_size() - size()) this->_M_throw_length_error(); if (__n >= this->_M_rest()) _M_reserve(_M_compute_next_size(__n)); _STLP_PRIV __uninitialized_fill_n(this->_M_finish + 1, __n - 1, __c); _M_construct_null(this->_M_finish + __n); _Traits::assign(*end(), __c); this->_M_finish += __n; } return *this;}template <class _CharT, class _Traits, class _Alloc>basic_string<_CharT, _Traits, _Alloc>&basic_string<_CharT, _Traits, _Alloc>::_M_append(const _CharT* __first, const _CharT* __last) { if (__first != __last) { size_type __n = __STATIC_CAST(size_type, __last - __first); if (__n >= this->_M_rest()) { size_type __len = _M_compute_next_size(__n); pointer __new_start = this->_M_start_of_storage.allocate(__len, __len); pointer __new_finish = _STLP_PRIV __ucopy(this->_M_Start(), this->_M_Finish(), __new_start); __new_finish = _STLP_PRIV __ucopy(__first, __last, __new_finish); _M_construct_null(__new_finish); this->_M_deallocate_block(); this->_M_reset(__new_start, __new_finish, __new_start + __len); } else { const _CharT* __f1 = __first; ++__f1; _STLP_PRIV __ucopy(__f1, __last, this->_M_finish + 1); _M_construct_null(this->_M_finish + __n); _Traits::assign(*end(), *__first); this->_M_finish += __n; } } return *this;}template <class _CharT, class _Traits, class _Alloc>basic_string<_CharT,_Traits,_Alloc>&basic_string<_CharT,_Traits,_Alloc>::assign(size_type __n, _CharT __c) { if (__n <= size()) { _Traits::assign(this->_M_Start(), __n, __c); erase(begin() + __n, end()); } else { if (__n < capacity()) { _Traits::assign(this->_M_Start(), size(), __c); append(__n - size(), __c); } else { _Self __str(__n, __c); this->swap(__str); } } return *this;}template <class _CharT, class _Traits, class _Alloc>basic_string<_CharT,_Traits,_Alloc>&basic_string<_CharT,_Traits,_Alloc>::_M_assign(const _CharT* __f, const _CharT* __l) { ptrdiff_t __n = __l - __f; if (__STATIC_CAST(size_type, __n) <= size()) { _Traits::copy(this->_M_Start(), __f, __n); erase(begin() + __n, end()); } else { _Traits::copy(this->_M_Start(), __f, size()); _M_append(__f + size(), __l); } return *this;}template <class _CharT, class _Traits, class _Alloc>_CharT* basic_string<_CharT,_Traits,_Alloc> ::_M_insert_aux(_CharT* __p, _CharT __c) { pointer __new_pos = __p; if (this->_M_rest() > 1 ) { _M_construct_null(this->_M_finish + 1); _Traits::move(__p + 1, __p, this->_M_finish - __p); _Traits::assign(*__p, __c); ++this->_M_finish; } else { size_type __len = _M_compute_next_size(1); pointer __new_start = this->_M_start_of_storage.allocate(__len, __len); __new_pos = _STLP_PRIV __ucopy(this->_M_Start(), __p, __new_start); _Traits::assign(*__new_pos, __c); pointer __new_finish = __new_pos + 1; __new_finish = _STLP_PRIV __ucopy(__p, this->_M_finish, __new_finish); _M_construct_null(__new_finish); this->_M_deallocate_block(); this->_M_reset(__new_start, __new_finish, __new_start + __len); } return __new_pos;}template <class _CharT, class _Traits, class _Alloc>void basic_string<_CharT,_Traits,_Alloc>::insert(iterator __pos, size_t __n, _CharT __c) { if (__n != 0) { if (this->_M_rest() > __n) { const size_type __elems_after = this->_M_finish - __pos; pointer __old_finish = this->_M_finish; if (__elems_after >= __n) { _STLP_PRIV __ucopy((this->_M_finish - __n) + 1, this->_M_finish + 1, this->_M_finish + 1); this->_M_finish += __n; _Traits::move(__pos + __n, __pos, (__elems_after - __n) + 1); _Traits::assign(__pos, __n, __c); } else { _STLP_PRIV __uninitialized_fill_n(this->_M_finish + 1, __n - __elems_after - 1, __c); this->_M_finish += __n - __elems_after; _STLP_PRIV __ucopy(__pos, __old_finish + 1, this->_M_finish); this->_M_finish += __elems_after; _Traits::assign(__pos, __elems_after + 1, __c); } } else { size_type __len = _M_compute_next_size(__n); pointer __new_start = this->_M_start_of_storage.allocate(__len, __len); pointer __new_finish = _STLP_PRIV __ucopy(this->_M_Start(), __pos, __new_start); __new_finish = _STLP_PRIV __uninitialized_fill_n(__new_finish, __n, __c); __new_finish = _STLP_PRIV __ucopy(__pos, this->_M_finish, __new_finish); _M_construct_null(__new_finish); this->_M_deallocate_block(); this->_M_reset(__new_start, __new_finish, __new_start + __len); } }}template <class _CharT, class _Traits, class _Alloc>void basic_string<_CharT,_Traits,_Alloc>::_M_insert(iterator __pos, const _CharT* __first, const _CharT* __last, bool __self_ref) { //this version has to take care about the auto referencing if (__first != __last) { const size_t __n = __last - __first; if (this->_M_rest() > __n) { const size_t __elems_after = this->_M_finish - __pos; pointer __old_finish = this->_M_finish; if (__elems_after >= __n) { _STLP_PRIV __ucopy((this->_M_finish - __n) + 1, this->_M_finish + 1, this->_M_finish + 1); this->_M_finish += __n; _Traits::move(__pos + __n, __pos, (__elems_after - __n) + 1); if (!__self_ref || __last < __pos) { _M_copy(__first, __last, __pos); } else { //We have to check that the source buffer hasn't move if (__first >= __pos) { //The source buffer has move __first += __n; __last += __n; _M_copy(__first, __last, __pos); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?