1 // Character Traits for use by standard string and iostream -*- C++ -*-
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5 // Free Software Foundation, Inc.
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING. If not, write to the Free
20 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
23 // As a special exception, you may use this file as part of a free software
24 // library without restriction. Specifically, if other files instantiate
25 // templates or use macros or inline functions from this file, or you compile
26 // this file and link it with other files to produce an executable, this
27 // file does not by itself cause the resulting executable to be covered by
28 // the GNU General Public License. This exception does not however
29 // invalidate any other reasons why the executable file might be covered by
30 // the GNU General Public License.
32 /** @file char_traits.h
33 * This is an internal header file, included by other library headers.
34 * You should not attempt to use it directly.
38 // ISO C++ 14882: 21 Strings library
41 #ifndef _CHAR_TRAITS_H
42 #define _CHAR_TRAITS_H 1
44 #pragma GCC system_header
46 #include <bits/algorithmfwd.h> // std::copy, std::fill_n
47 #include <bits/postypes.h> // For streampos
48 #include <cstdio> // For EOF
49 #include <cwchar> // For WEOF, wmemmove, wmemset, etc.
51 _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx
)
54 * @brief Mapping from character type to associated types.
56 * @note This is an implementation class for the generic version
57 * of char_traits. It defines int_type, off_type, pos_type, and
58 * state_type. By default these are unsigned long, streamoff,
59 * streampos, and mbstate_t. Users who need a different set of
60 * types, but who don't need to change the definitions of any function
61 * defined in char_traits, can specialize __gnu_cxx::_Char_types
62 * while leaving __gnu_cxx::char_traits alone. */
63 template<typename _CharT
>
66 typedef unsigned long int_type
;
67 typedef std::streampos pos_type
;
68 typedef std::streamoff off_type
;
69 typedef std::mbstate_t state_type
;
74 * @brief Base class used to implement std::char_traits.
76 * @note For any given actual character type, this definition is
77 * probably wrong. (Most of the member functions are likely to be
78 * right, but the int_type and state_type typedefs, and the eof()
79 * member function, are likely to be wrong.) The reason this class
80 * exists is so users can specialize it. Classes in namespace std
81 * may not be specialized for fundamentl types, but classes in
82 * namespace __gnu_cxx may be.
84 * See http://gcc.gnu.org/onlinedocs/libstdc++/21_strings/howto.html#5
85 * for advice on how to make use of this class for "unusual" character
86 * types. Also, check out include/ext/pod_char_traits.h.
88 template<typename _CharT
>
91 typedef _CharT char_type
;
92 typedef typename _Char_types
<_CharT
>::int_type int_type
;
93 typedef typename _Char_types
<_CharT
>::pos_type pos_type
;
94 typedef typename _Char_types
<_CharT
>::off_type off_type
;
95 typedef typename _Char_types
<_CharT
>::state_type state_type
;
98 assign(char_type
& __c1
, const char_type
& __c2
)
102 eq(const char_type
& __c1
, const char_type
& __c2
)
103 { return __c1
== __c2
; }
106 lt(const char_type
& __c1
, const char_type
& __c2
)
107 { return __c1
< __c2
; }
110 compare(const char_type
* __s1
, const char_type
* __s2
, std::size_t __n
);
113 length(const char_type
* __s
);
115 static const char_type
*
116 find(const char_type
* __s
, std::size_t __n
, const char_type
& __a
);
119 move(char_type
* __s1
, const char_type
* __s2
, std::size_t __n
);
122 copy(char_type
* __s1
, const char_type
* __s2
, std::size_t __n
);
125 assign(char_type
* __s
, std::size_t __n
, char_type __a
);
128 to_char_type(const int_type
& __c
)
129 { return static_cast<char_type
>(__c
); }
132 to_int_type(const char_type
& __c
)
133 { return static_cast<int_type
>(__c
); }
136 eq_int_type(const int_type
& __c1
, const int_type
& __c2
)
137 { return __c1
== __c2
; }
141 { return static_cast<int_type
>(EOF
); }
144 not_eof(const int_type
& __c
)
145 { return !eq_int_type(__c
, eof()) ? __c
: to_int_type(char_type()); }
148 template<typename _CharT
>
150 char_traits
<_CharT
>::
151 compare(const char_type
* __s1
, const char_type
* __s2
, std::size_t __n
)
153 for (std::size_t __i
= 0; __i
< __n
; ++__i
)
154 if (lt(__s1
[__i
], __s2
[__i
]))
156 else if (lt(__s2
[__i
], __s1
[__i
]))
161 template<typename _CharT
>
163 char_traits
<_CharT
>::
164 length(const char_type
* __p
)
167 while (!eq(__p
[__i
], char_type()))
172 template<typename _CharT
>
173 const typename char_traits
<_CharT
>::char_type
*
174 char_traits
<_CharT
>::
175 find(const char_type
* __s
, std::size_t __n
, const char_type
& __a
)
177 for (std::size_t __i
= 0; __i
< __n
; ++__i
)
178 if (eq(__s
[__i
], __a
))
183 template<typename _CharT
>
184 typename char_traits
<_CharT
>::char_type
*
185 char_traits
<_CharT
>::
186 move(char_type
* __s1
, const char_type
* __s2
, std::size_t __n
)
188 return static_cast<_CharT
*>(__builtin_memmove(__s1
, __s2
,
189 __n
* sizeof(char_type
)));
192 template<typename _CharT
>
193 typename char_traits
<_CharT
>::char_type
*
194 char_traits
<_CharT
>::
195 copy(char_type
* __s1
, const char_type
* __s2
, std::size_t __n
)
197 // NB: Inline std::copy so no recursive dependencies.
198 std::copy(__s2
, __s2
+ __n
, __s1
);
202 template<typename _CharT
>
203 typename char_traits
<_CharT
>::char_type
*
204 char_traits
<_CharT
>::
205 assign(char_type
* __s
, std::size_t __n
, char_type __a
)
207 // NB: Inline std::fill_n so no recursive dependencies.
208 std::fill_n(__s
, __n
, __a
);
212 _GLIBCXX_END_NAMESPACE
214 _GLIBCXX_BEGIN_NAMESPACE(std
)
218 * @brief Basis for explicit traits specializations.
220 * @note For any given actual character type, this definition is
221 * probably wrong. Since this is just a thin wrapper around
222 * __gnu_cxx::char_traits, it is possible to achieve a more
223 * appropriate definition by specializing __gnu_cxx::char_traits.
225 * See http://gcc.gnu.org/onlinedocs/libstdc++/21_strings/howto.html#5
226 * for advice on how to make use of this class for "unusual" character
227 * types. Also, check out include/ext/pod_char_traits.h.
229 template<class _CharT
>
230 struct char_traits
: public __gnu_cxx::char_traits
<_CharT
>
234 /// @brief 21.1.3.1 char_traits specializations
236 struct char_traits
<char>
238 typedef char char_type
;
239 typedef int int_type
;
240 typedef streampos pos_type
;
241 typedef streamoff off_type
;
242 typedef mbstate_t state_type
;
245 assign(char_type
& __c1
, const char_type
& __c2
)
249 eq(const char_type
& __c1
, const char_type
& __c2
)
250 { return __c1
== __c2
; }
253 lt(const char_type
& __c1
, const char_type
& __c2
)
254 { return __c1
< __c2
; }
257 compare(const char_type
* __s1
, const char_type
* __s2
, size_t __n
)
258 { return __builtin_memcmp(__s1
, __s2
, __n
); }
261 length(const char_type
* __s
)
262 { return __builtin_strlen(__s
); }
264 static const char_type
*
265 find(const char_type
* __s
, size_t __n
, const char_type
& __a
)
266 { return static_cast<const char_type
*>(__builtin_memchr(__s
, __a
, __n
)); }
269 move(char_type
* __s1
, const char_type
* __s2
, size_t __n
)
270 { return static_cast<char_type
*>(__builtin_memmove(__s1
, __s2
, __n
)); }
273 copy(char_type
* __s1
, const char_type
* __s2
, size_t __n
)
274 { return static_cast<char_type
*>(__builtin_memcpy(__s1
, __s2
, __n
)); }
277 assign(char_type
* __s
, size_t __n
, char_type __a
)
278 { return static_cast<char_type
*>(__builtin_memset(__s
, __a
, __n
)); }
281 to_char_type(const int_type
& __c
)
282 { return static_cast<char_type
>(__c
); }
284 // To keep both the byte 0xff and the eof symbol 0xffffffff
285 // from ending up as 0xffffffff.
287 to_int_type(const char_type
& __c
)
288 { return static_cast<int_type
>(static_cast<unsigned char>(__c
)); }
291 eq_int_type(const int_type
& __c1
, const int_type
& __c2
)
292 { return __c1
== __c2
; }
295 eof() { return static_cast<int_type
>(EOF
); }
298 not_eof(const int_type
& __c
)
299 { return (__c
== eof()) ? 0 : __c
; }
303 #ifdef _GLIBCXX_USE_WCHAR_T
304 /// @brief 21.1.3.2 char_traits specializations
306 struct char_traits
<wchar_t>
308 typedef wchar_t char_type
;
309 typedef wint_t int_type
;
310 typedef streamoff off_type
;
311 typedef wstreampos pos_type
;
312 typedef mbstate_t state_type
;
315 assign(char_type
& __c1
, const char_type
& __c2
)
319 eq(const char_type
& __c1
, const char_type
& __c2
)
320 { return __c1
== __c2
; }
323 lt(const char_type
& __c1
, const char_type
& __c2
)
324 { return __c1
< __c2
; }
327 compare(const char_type
* __s1
, const char_type
* __s2
, size_t __n
)
328 { return wmemcmp(__s1
, __s2
, __n
); }
331 length(const char_type
* __s
)
332 { return wcslen(__s
); }
334 static const char_type
*
335 find(const char_type
* __s
, size_t __n
, const char_type
& __a
)
336 { return wmemchr(__s
, __a
, __n
); }
339 move(char_type
* __s1
, const char_type
* __s2
, size_t __n
)
340 { return wmemmove(__s1
, __s2
, __n
); }
343 copy(char_type
* __s1
, const char_type
* __s2
, size_t __n
)
344 { return wmemcpy(__s1
, __s2
, __n
); }
347 assign(char_type
* __s
, size_t __n
, char_type __a
)
348 { return wmemset(__s
, __a
, __n
); }
351 to_char_type(const int_type
& __c
) { return char_type(__c
); }
354 to_int_type(const char_type
& __c
) { return int_type(__c
); }
357 eq_int_type(const int_type
& __c1
, const int_type
& __c2
)
358 { return __c1
== __c2
; }
361 eof() { return static_cast<int_type
>(WEOF
); }
364 not_eof(const int_type
& __c
)
365 { return eq_int_type(__c
, eof()) ? 0 : __c
; }
367 #endif //_GLIBCXX_USE_WCHAR_T
369 _GLIBCXX_END_NAMESPACE