2 * Copyright (c) 1996,1997
3 * Silicon Graphics Computer Systems, Inc.
8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
12 * without fee, provided the above notices are retained on all copies.
13 * Permission to modify the code and to distribute modified code is granted,
14 * provided the above notices are retained, and a notice that the code was
15 * modified is included with the above copyright notice.
19 #ifndef _STLP_CHAR_TRAITS_H
20 #define _STLP_CHAR_TRAITS_H
24 #ifndef _STLP_INTERNAL_CSTDDEF
25 # include <stl/_cstddef.h>
28 #ifndef _STLP_INTERNAL_CSTRING
29 # include <stl/_cstring.h>
32 #if defined (__unix) || defined (N_PLAT_NLM)
33 # include <sys/types.h> // For off_t
37 # include _STLP_NATIVE_C_HEADER(mem.h)
38 # include _STLP_NATIVE_C_HEADER(string.h)
39 # include _STLP_NATIVE_C_HEADER(_stddef.h)
42 #ifndef _STLP_INTERNAL_CONSTRUCT_H
43 # include <stl/_construct.h>
46 #ifndef _STLP_INTERNAL_CWCHAR
47 # include <stl/_cwchar.h>
52 template <class _Tp> class allocator;
54 #define _STLP_NULL_CHAR_INIT(_ChT) _STLP_DEFAULT_CONSTRUCTED(_ChT)
56 #if defined (__sgi) && defined (_STLP_HAS_NO_NEW_C_HEADERS) /* IRIX */
57 typedef off64_t streamoff;
58 #elif defined(_STLP_WCE)
59 typedef long streamoff;
60 #elif defined (_STLP_WIN32)
61 # if defined (_STLP_LONG_LONG) && !defined (__CYGWIN__)
62 //The Win32 file io API support 64 bits access so streamoff and streamsize
63 //has to reflect that. Do not change the stringbuf behavior.
64 typedef _STLP_LONG_LONG streamoff;
66 typedef ptrdiff_t streamoff;
69 typedef off_t streamoff;
70 #endif /* _STLP_HAS_NO_NEW_C_HEADERS */
72 #if defined (_STLP_WIN32)
73 typedef streamoff streamsize;
75 typedef ptrdiff_t streamsize;
78 // Class fpos, which represents a position within a file. (The C++
79 // standard calls for it to be defined in <ios>. This implementation
80 // moves it to <iosfwd>, which is included by <ios>.)
81 template <class _StateT> class fpos {
82 public: // From table 88 of the C++ standard.
83 fpos(streamoff __pos) : _M_pos(__pos), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {}
84 fpos() : _M_pos(0), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {}
86 operator streamoff() const { return _M_pos; }
88 bool operator==(const fpos& __y) const
89 { return _M_pos == __y._M_pos; }
90 bool operator!=(const fpos& __y) const
91 { return _M_pos != __y._M_pos; }
93 fpos& operator+=(streamoff __off) {
97 fpos& operator-=(streamoff __off) {
102 fpos operator+(streamoff __off) {
107 fpos operator-(streamoff __off) {
113 public: // Manipulation of the state member.
114 _StateT state() const { return _M_st; }
115 void state(_StateT __st) { _M_st = __st; }
121 #if !defined (_STLP_NO_MBSTATE_T)
122 typedef fpos<mbstate_t> streampos;
123 typedef fpos<mbstate_t> wstreampos;
126 // Class __char_traits_base.
127 template <class _CharT, class _IntT>
128 class __char_traits_base {
130 typedef _CharT char_type;
131 typedef _IntT int_type;
132 typedef streamoff off_type;
133 typedef streampos pos_type;
134 #if defined (_STLP_NO_MBSTATE_T)
135 typedef char state_type;
137 typedef mbstate_t state_type;
140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2)
142 { return __c1 == __c2; }
143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2)
144 { return __c1 < __c2; }
146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) {
147 for (size_t __i = 0; __i < __n; ++__i)
148 if (!eq(__s1[__i], __s2[__i]))
149 return __s1[__i] < __s2[__i] ? -1 : 1;
153 static size_t _STLP_CALL length(const char_type* __s) {
154 const char_type _NullChar = _STLP_DEFAULT_CONSTRUCTED(char_type);
156 for (; !eq(__s[__i], _NullChar); ++__i) {}
160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) {
161 for ( ; __n > 0 ; ++__s, --__n)
167 static char_type* _STLP_CALL move(char_type* __s1, const char_type* __s2, size_t _Sz)
168 { return (_Sz == 0 ? __s1 : (char_type*)memmove(__s1, __s2, _Sz * sizeof(char_type))); }
170 static char_type* _STLP_CALL copy(char_type* __s1, const char_type* __s2, size_t __n) {
171 return (__n == 0 ? __s1 :
172 (char_type*)memcpy(__s1, __s2, __n * sizeof(char_type)));
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) {
176 for (size_t __i = 0; __i < __n; ++__i)
181 static int_type _STLP_CALL not_eof(const int_type& __c)
182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); }
184 static char_type _STLP_CALL to_char_type(const int_type& __c)
185 { return (char_type)__c; }
187 static int_type _STLP_CALL to_int_type(const char_type& __c)
188 { return (int_type)__c; }
190 static bool _STLP_CALL eq_int_type(const int_type& __c1, const int_type& __c2)
191 { return __c1 == __c2; }
193 static int_type _STLP_CALL eof()
194 { return (int_type)-1; }
197 // Generic char_traits class. Note that this class is provided only
198 // as a base for explicit specialization; it is unlikely to be useful
199 // as is for any particular user-defined type. In particular, it
200 // *will not work* for a non-POD type.
202 template <class _CharT>
204 : public __char_traits_base<_CharT, _CharT> {};
206 // Specialization for char.
209 class _STLP_CLASS_DECLSPEC char_traits<char>
210 : public __char_traits_base<char, int> {
212 typedef char char_type;
213 typedef int int_type;
214 typedef streamoff off_type;
215 #if !defined (_STLP_NO_MBSTATE_T)
216 typedef streampos pos_type;
217 typedef mbstate_t state_type;
220 static char _STLP_CALL to_char_type(const int& __c)
221 { return (char)(unsigned char)__c; }
223 static int _STLP_CALL to_int_type(const char& __c)
224 { return (unsigned char)__c; }
226 static int _STLP_CALL compare(const char* __s1, const char* __s2, size_t __n)
227 { return memcmp(__s1, __s2, __n); }
229 static size_t _STLP_CALL length(const char* __s)
230 { return strlen(__s); }
232 static void _STLP_CALL assign(char& __c1, const char& __c2)
235 static char* _STLP_CALL assign(char* __s, size_t __n, char __c) {
236 memset(__s, __c, __n);
241 #if defined (_STLP_HAS_WCHAR_T)
242 // Specialization for wchar_t.
244 class _STLP_CLASS_DECLSPEC char_traits<wchar_t>
245 : public __char_traits_base<wchar_t, wint_t> {
246 # if !defined (_STLP_NO_NATIVE_WIDE_FUNCTIONS) && !defined (_STLP_WCHAR_HPACC_EXCLUDE)
248 # if !defined (N_PLAT_NLM)
249 # if !defined (__BORLANDC__)
250 static wchar_t* _STLP_CALL move(wchar_t* __dest, const wchar_t* __src, size_t __n)
251 { return wmemmove(__dest, __src, __n); }
254 static wchar_t* _STLP_CALL copy(wchar_t* __dest, const wchar_t* __src, size_t __n)
255 { return wmemcpy(__dest, __src, __n); }
257 # if !defined (__DMC__) && !defined (__BORLANDC__)
258 static int _STLP_CALL compare(const wchar_t* __s1, const wchar_t* __s2, size_t __n)
259 { return wmemcmp(__s1, __s2, __n); }
262 static wchar_t* _STLP_CALL assign(wchar_t* __s, size_t __n, wchar_t __c)
263 { return wmemset(__s, __c, __n); }
266 static size_t _STLP_CALL length(const wchar_t* __s)
267 { return wcslen(__s); }
269 static void _STLP_CALL assign(wchar_t& __c1, const wchar_t& __c2)
277 #endif /* _STLP_CHAR_TRAITS_H */