OSDN Git Service

2005-08-17 Kelley Cook <kcook@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / ext / vstring_util.h
1 // Versatile string utilities -*- C++ -*-
2
3 // Copyright (C) 2005 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction.  Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License.  This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 /** @file ext/vstring_util.h
31  *  This file is a GNU extension to the Standard C++ Library.
32  *  This is an internal header file, included by other library headers.
33  *  You should not attempt to use it directly.
34  */
35
36 #ifndef _VSTRING_UTIL_H
37 #define _VSTRING_UTIL_H 1
38
39 #pragma GCC system_header
40
41 #include <ext/vstring_fwd.h>
42 #include <debug/debug.h>
43 #include <bits/stl_function.h>  // For less
44 #include <bits/functexcept.h>
45 #include <locale>
46 #include <algorithm> // For std::distance, srd::search.
47
48 namespace __gnu_cxx
49 {
50   template<typename _Type>
51     inline bool
52     __is_null_p(_Type* __ptr)
53     { return __ptr == 0; }
54
55   template<typename _Type>
56     inline bool
57     __is_null_p(_Type)
58     { return false; }
59
60   template<typename _CharT, typename _Traits, typename _Alloc>
61     struct __vstring_utility
62     {
63       typedef typename _Alloc::template rebind<_CharT>::other _CharT_alloc_type;
64
65       typedef _Traits                                       traits_type;      
66       typedef typename _Traits::char_type                   value_type;
67       typedef typename _CharT_alloc_type::size_type         size_type;
68       typedef typename _CharT_alloc_type::pointer           pointer;
69       typedef typename _CharT_alloc_type::const_pointer     const_pointer;
70
71       // For __sso_string.
72       typedef __gnu_cxx::
73       __normal_iterator<pointer, __gnu_cxx::
74                         __versa_string<_CharT, _Traits, _Alloc,
75                                        __sso_string_base> >
76         __sso_iterator;
77       typedef __gnu_cxx::
78       __normal_iterator<const_pointer, __gnu_cxx::
79                         __versa_string<_CharT, _Traits, _Alloc,
80                                        __sso_string_base> >
81         __const_sso_iterator;
82
83       // For __rc_string.
84       typedef __gnu_cxx::
85       __normal_iterator<pointer, __gnu_cxx::
86                         __versa_string<_CharT, _Traits, _Alloc,
87                                        __rc_string_base> >
88         __rc_iterator;
89       typedef __gnu_cxx::
90       __normal_iterator<const_pointer, __gnu_cxx::
91                         __versa_string<_CharT, _Traits, _Alloc,
92                                        __rc_string_base> >
93         __const_rc_iterator;
94
95       // When __n = 1 way faster than the general multichar
96       // traits_type::copy/move/assign.
97       static void
98       _S_copy(_CharT* __d, const _CharT* __s, size_type __n)
99       {
100         if (__n == 1)
101           traits_type::assign(*__d, *__s);
102         else
103           traits_type::copy(__d, __s, __n);
104       }
105
106       static void
107       _S_move(_CharT* __d, const _CharT* __s, size_type __n)
108       {
109         if (__n == 1)
110           traits_type::assign(*__d, *__s);
111         else
112           traits_type::move(__d, __s, __n);       
113       }
114
115       static void
116       _S_assign(_CharT* __d, size_type __n, _CharT __c)
117       {
118         if (__n == 1)
119           traits_type::assign(*__d, __c);
120         else
121           traits_type::assign(__d, __n, __c);     
122       }
123
124       // _S_copy_chars is a separate template to permit specialization
125       // to optimize for the common case of pointers as iterators.
126       template<class _Iterator>
127         static void
128         _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2)
129         {
130           for (; __k1 != __k2; ++__k1, ++__p)
131             traits_type::assign(*__p, *__k1); // These types are off.
132         }
133
134       static void
135       _S_copy_chars(_CharT* __p, __sso_iterator __k1, __sso_iterator __k2)
136       { _S_copy_chars(__p, __k1.base(), __k2.base()); }
137
138       static void
139       _S_copy_chars(_CharT* __p, __const_sso_iterator __k1,
140                     __const_sso_iterator __k2)
141       { _S_copy_chars(__p, __k1.base(), __k2.base()); }
142
143       static void
144       _S_copy_chars(_CharT* __p, __rc_iterator __k1, __rc_iterator __k2)
145       { _S_copy_chars(__p, __k1.base(), __k2.base()); }
146
147       static void
148       _S_copy_chars(_CharT* __p, __const_rc_iterator __k1,
149                     __const_rc_iterator __k2)
150       { _S_copy_chars(__p, __k1.base(), __k2.base()); }
151
152       static void
153       _S_copy_chars(_CharT* __p, _CharT* __k1, _CharT* __k2)
154       { _S_copy(__p, __k1, __k2 - __k1); }
155
156       static void
157       _S_copy_chars(_CharT* __p, const _CharT* __k1, const _CharT* __k2)
158       { _S_copy(__p, __k1, __k2 - __k1); }
159     };
160 } // namespace __gnu_cxx
161
162 #endif /* _VSTRING_UTIL_H */