sl@0
|
1 |
/*
|
sl@0
|
2 |
* © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (c) 1999
|
sl@0
|
5 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
6 |
*
|
sl@0
|
7 |
* Copyright (c) 1999
|
sl@0
|
8 |
* Boris Fomitchev
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
11 |
* or implied. Any use is at your own risk.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
14 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
15 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
16 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
17 |
* modified is included with the above copyright notice.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
# include "stlport_prefix.h"
|
sl@0
|
21 |
#include <stl/_num_get.h>
|
sl@0
|
22 |
#include <stl/_istream.h>
|
sl@0
|
23 |
#include <stl/_algo.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
26 |
#include "libstdcppwsd.h"
|
sl@0
|
27 |
# endif
|
sl@0
|
28 |
|
sl@0
|
29 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
30 |
|
sl@0
|
31 |
//----------------------------------------------------------------------
|
sl@0
|
32 |
// num_get
|
sl@0
|
33 |
|
sl@0
|
34 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
35 |
//initialize the static array
|
sl@0
|
36 |
void num_get_array_init()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
strcpy(get_num_get_narrow_digits(),"0123456789");
|
sl@0
|
39 |
strcpy(get_num_get_narrow_xdigits(),"aAbBcCdDeEfF");
|
sl@0
|
40 |
}
|
sl@0
|
41 |
# else
|
sl@0
|
42 |
static char narrow_digits[11] = "0123456789";
|
sl@0
|
43 |
static char narrow_xdigits[13] = "aAbBcCdDeEfF";
|
sl@0
|
44 |
# endif
|
sl@0
|
45 |
|
sl@0
|
46 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
47 |
|
sl@0
|
48 |
void _STLP_CALL
|
sl@0
|
49 |
_Initialize_get_digit(wchar_t* digits, wchar_t* xdigits,
|
sl@0
|
50 |
const ctype<wchar_t>& ct)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
53 |
ct.widen(get_num_get_narrow_digits() + 0, get_num_get_narrow_digits() + 10, digits);
|
sl@0
|
54 |
ct.widen(get_num_get_narrow_xdigits() + 0, get_num_get_narrow_xdigits() + 10, xdigits);
|
sl@0
|
55 |
#else
|
sl@0
|
56 |
ct.widen(narrow_digits + 0, narrow_digits + 10, digits);
|
sl@0
|
57 |
ct.widen(narrow_xdigits + 0, narrow_xdigits + 10, xdigits);
|
sl@0
|
58 |
# endif
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
// Return either the digit corresponding to c, or a negative number if
|
sl@0
|
62 |
// if c isn't a digit. We return -1 if c is the separator character, and
|
sl@0
|
63 |
// -2 if it's some other non-digit.
|
sl@0
|
64 |
int _STLP_CALL __get_digit(wchar_t c,
|
sl@0
|
65 |
const wchar_t* digits, const wchar_t* xdigits,
|
sl@0
|
66 |
wchar_t separator)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
// Test if it's the separator.
|
sl@0
|
69 |
if (c == separator)
|
sl@0
|
70 |
return -1;
|
sl@0
|
71 |
|
sl@0
|
72 |
const wchar_t* p;
|
sl@0
|
73 |
|
sl@0
|
74 |
// Test if it's a decimal digit.
|
sl@0
|
75 |
p = find(digits, digits + 10, c);
|
sl@0
|
76 |
if (p != digits + 10)
|
sl@0
|
77 |
return (int)(p - digits);
|
sl@0
|
78 |
|
sl@0
|
79 |
// Test if it's a hex digit.
|
sl@0
|
80 |
p = find(xdigits, xdigits + 12, c);
|
sl@0
|
81 |
if (p != xdigits + 12)
|
sl@0
|
82 |
return (int)(10 + (xdigits - p) / 2);
|
sl@0
|
83 |
else
|
sl@0
|
84 |
return -2; // It's not a digit and not the separator.
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
# endif /* _STLP_NO_WCHAR_T */
|
sl@0
|
88 |
|
sl@0
|
89 |
// __valid_grouping compares two strings, one representing the
|
sl@0
|
90 |
// group sizes encountered when reading an integer, and the other
|
sl@0
|
91 |
// representing the valid group sizes as returned by the numpunct
|
sl@0
|
92 |
// grouping() member function. Both are interpreted right-to-left.
|
sl@0
|
93 |
// The grouping string is treated as if it were extended indefinitely
|
sl@0
|
94 |
// with its last value. For a grouping to be valid, each term in
|
sl@0
|
95 |
// the first string must be equal to the corresponding term in the
|
sl@0
|
96 |
// second, except for the last, which must be less than or equal.
|
sl@0
|
97 |
|
sl@0
|
98 |
// boris : this takes reversed first string !
|
sl@0
|
99 |
_STLP_EXP_DECLSPEC bool _STLP_CALL
|
sl@0
|
100 |
__valid_grouping(const char * first1, const char * last1,
|
sl@0
|
101 |
const char * first2, const char * last2)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
if (first1 == last1 || first2 == last2) return true;
|
sl@0
|
104 |
|
sl@0
|
105 |
--last1; --last2;
|
sl@0
|
106 |
|
sl@0
|
107 |
while (first1 != last1) {
|
sl@0
|
108 |
if (*last1 != *first2)
|
sl@0
|
109 |
return false;
|
sl@0
|
110 |
--last1;
|
sl@0
|
111 |
if (first2 != last2) ++first2;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
return *last1 <= *first2;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
// this needed for some compilers to make sure sumbols are extern
|
sl@0
|
118 |
extern const unsigned char __digit_val_table[];
|
sl@0
|
119 |
extern const char __narrow_atoms[];
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
const unsigned char __digit_val_table[128] =
|
sl@0
|
123 |
{
|
sl@0
|
124 |
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
125 |
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
126 |
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
127 |
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
128 |
0xFF,10,11,12,13,14,15,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
129 |
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
130 |
0xFF,10,11,12,13,14,15,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
sl@0
|
131 |
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
const char __narrow_atoms[5] = {'+', '-', '0', 'x', 'X'};
|
sl@0
|
135 |
|
sl@0
|
136 |
_STLP_EXP_DECLSPEC unsigned char* _STLP_CALL __get_digit_val_table(void)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return (unsigned char*)__digit_val_table;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
_STLP_EXP_DECLSPEC char* _STLP_CALL __get_narrow_atoms(void)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
return (char*)__narrow_atoms;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
// index is actually a char
|
sl@0
|
145 |
|
sl@0
|
146 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
147 |
|
sl@0
|
148 |
|
sl@0
|
149 |
//----------------------------------------------------------------------
|
sl@0
|
150 |
// Force instantiation of of num_get<>
|
sl@0
|
151 |
|
sl@0
|
152 |
#if !defined(_STLP_NO_FORCE_INSTANTIATE)
|
sl@0
|
153 |
template class _STLP_CLASS_DECLSPEC istreambuf_iterator<wchar_t, char_traits<wchar_t> >;
|
sl@0
|
154 |
template class num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
|
sl@0
|
155 |
// template class num_get<wchar_t, const wchar_t*>;
|
sl@0
|
156 |
#endif
|
sl@0
|
157 |
|
sl@0
|
158 |
# endif /* _STLP_NO_WCHAR_T */
|
sl@0
|
159 |
|
sl@0
|
160 |
//----------------------------------------------------------------------
|
sl@0
|
161 |
// Force instantiation of of num_get<>
|
sl@0
|
162 |
|
sl@0
|
163 |
#if !defined(_STLP_NO_FORCE_INSTANTIATE)
|
sl@0
|
164 |
template class _STLP_CLASS_DECLSPEC istreambuf_iterator<char, char_traits<char> >;
|
sl@0
|
165 |
// template class num_get<char, const char*>;
|
sl@0
|
166 |
template class num_get<char, istreambuf_iterator<char, char_traits<char> > >;
|
sl@0
|
167 |
#endif
|
sl@0
|
168 |
|
sl@0
|
169 |
// basic_streambuf<char, char_traits<char> >* _STLP_CALL _M_get_istreambuf(basic_istream<char, char_traits<char> >& ) ;
|
sl@0
|
170 |
|
sl@0
|
171 |
_STLP_END_NAMESPACE
|
sl@0
|
172 |
|
sl@0
|
173 |
// Local Variables:
|
sl@0
|
174 |
// mode:C++
|
sl@0
|
175 |
// End:
|
sl@0
|
176 |
|
sl@0
|
177 |
|