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 |
|
sl@0
|
21 |
# ifndef _STLP_NUM_PUT_H
|
sl@0
|
22 |
# define _STLP_NUM_PUT_H
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef _STLP_INTERNAL_NUM_PUT_H
|
sl@0
|
25 |
#include <stl/_num_put.h>
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
#ifndef _STLP_INTERNAL_OSTREAM_H
|
sl@0
|
28 |
#include <stl/_ostream.h>
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
|
sl@0
|
31 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
32 |
|
sl@0
|
33 |
// Note that grouping[0] is the number of digits in the *rightmost* group.
|
sl@0
|
34 |
// We assume, without checking, that *last is null and that there is enough
|
sl@0
|
35 |
// space in the buffer to extend the number past [first, last).
|
sl@0
|
36 |
template <class Char>
|
sl@0
|
37 |
ptrdiff_t
|
sl@0
|
38 |
__insert_grouping_aux(Char* first, Char* last, const string& grouping,
|
sl@0
|
39 |
Char separator, Char Plus, Char Minus,
|
sl@0
|
40 |
int basechars)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
typedef string::size_type str_size;
|
sl@0
|
43 |
|
sl@0
|
44 |
if (first == last)
|
sl@0
|
45 |
return 0;
|
sl@0
|
46 |
|
sl@0
|
47 |
int sign = 0;
|
sl@0
|
48 |
|
sl@0
|
49 |
if (*first == Plus || *first == Minus) {
|
sl@0
|
50 |
sign = 1;
|
sl@0
|
51 |
++first;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
first += basechars;
|
sl@0
|
55 |
str_size n = 0; // Index of the current group.
|
sl@0
|
56 |
Char* cur_group = last; // Points immediately beyond the rightmost
|
sl@0
|
57 |
// digit of the current group.
|
sl@0
|
58 |
int groupsize = 0; // Size of the current group.
|
sl@0
|
59 |
|
sl@0
|
60 |
while (true) {
|
sl@0
|
61 |
//groupsize = n < grouping.size() ? grouping[n]-48 : groupsize;
|
sl@0
|
62 |
groupsize = n < grouping.size() ? grouping[n] : groupsize;
|
sl@0
|
63 |
++n;
|
sl@0
|
64 |
|
sl@0
|
65 |
if (groupsize <= 0 || groupsize >= cur_group - first)
|
sl@0
|
66 |
break;
|
sl@0
|
67 |
|
sl@0
|
68 |
// Insert a separator character just before position cur_group - groupsize
|
sl@0
|
69 |
cur_group -= groupsize;
|
sl@0
|
70 |
++last;
|
sl@0
|
71 |
copy_backward(cur_group, last, last + 1);
|
sl@0
|
72 |
*cur_group = separator;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
return (last - first) + sign + basechars;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
_STLP_END_NAMESPACE
|
sl@0
|
79 |
|
sl@0
|
80 |
# endif
|