|
18 | 18 | * @append_zero_char: If non-zero, put a trailing zero at the end of |
19 | 19 | * of the resulting string, if and only if we modified the |
20 | 20 | * string. |
| 21 | + * @grouping: see definition in localeconv(). |
| 22 | + * @thousands_sep: see definition in localeconv(). |
21 | 23 | * |
22 | | - * Inserts thousand grouping characters (as defined in the current |
23 | | - * locale) into the string between buffer and buffer+n_digits. If |
24 | | - * count is non-NULL, don't do any formatting, just count the number |
25 | | - * of characters to insert. This is used by the caller to |
| 24 | + * Inserts thousand grouping characters (as defined by grouping and |
| 25 | + * thousands_sep) into the string between buffer and buffer+n_digits. |
| 26 | + * If count is non-NULL, don't do any formatting, just count the |
| 27 | + * number of characters to insert. This is used by the caller to |
26 | 28 | * appropriately resize the buffer, if needed. If count is non-NULL, |
27 | 29 | * buffer can be NULL (it is not dereferenced at all in that case). |
28 | 30 | * |
|
34 | 36 | **/ |
35 | 37 | int |
36 | 38 | _Py_InsertThousandsGrouping(STRINGLIB_CHAR *buffer, |
37 | | - Py_ssize_t n_buffer, |
38 | | - Py_ssize_t n_digits, |
39 | | - Py_ssize_t buf_size, |
40 | | - Py_ssize_t *count, |
41 | | - int append_zero_char) |
| 39 | + Py_ssize_t n_buffer, |
| 40 | + Py_ssize_t n_digits, |
| 41 | + Py_ssize_t buf_size, |
| 42 | + Py_ssize_t *count, |
| 43 | + int append_zero_char, |
| 44 | + const char *grouping, |
| 45 | + const char *thousands_sep) |
42 | 46 | { |
43 | | - struct lconv *locale_data = localeconv(); |
44 | | - const char *grouping = locale_data->grouping; |
45 | | - const char *thousands_sep = locale_data->thousands_sep; |
46 | | - Py_ssize_t thousands_sep_len = strlen(thousands_sep); |
47 | | - STRINGLIB_CHAR *pend = NULL; /* current end of buffer */ |
48 | | - STRINGLIB_CHAR *pmax = NULL; /* max of buffer */ |
49 | | - char current_grouping; |
50 | | - Py_ssize_t remaining = n_digits; /* Number of chars remaining to |
51 | | - be looked at */ |
| 47 | + Py_ssize_t thousands_sep_len = strlen(thousands_sep); |
| 48 | + STRINGLIB_CHAR *pend = NULL; /* current end of buffer */ |
| 49 | + STRINGLIB_CHAR *pmax = NULL; /* max of buffer */ |
| 50 | + char current_grouping; |
| 51 | + Py_ssize_t remaining = n_digits; /* Number of chars remaining to |
| 52 | + be looked at */ |
52 | 53 |
|
53 | | - /* Initialize the character count, if we're just counting. */ |
54 | | - if (count) |
55 | | - *count = 0; |
56 | | - else { |
57 | | - /* We're not just counting, we're modifying buffer */ |
58 | | - pend = buffer + n_buffer; |
59 | | - pmax = buffer + buf_size; |
60 | | - } |
| 54 | + /* Initialize the character count, if we're just counting. */ |
| 55 | + if (count) |
| 56 | + *count = 0; |
| 57 | + else { |
| 58 | + /* We're not just counting, we're modifying buffer */ |
| 59 | + pend = buffer + n_buffer; |
| 60 | + pmax = buffer + buf_size; |
| 61 | + } |
61 | 62 |
|
62 | | - /* Starting at the end and working right-to-left, keep track of |
63 | | - what grouping needs to be added and insert that. */ |
64 | | - current_grouping = *grouping++; |
| 63 | + /* Starting at the end and working right-to-left, keep track of |
| 64 | + what grouping needs to be added and insert that. */ |
| 65 | + current_grouping = *grouping++; |
65 | 66 |
|
66 | | - /* If the first character is 0, perform no grouping at all. */ |
67 | | - if (current_grouping == 0) |
68 | | - return 1; |
| 67 | + /* If the first character is 0, perform no grouping at all. */ |
| 68 | + if (current_grouping == 0) |
| 69 | + return 1; |
69 | 70 |
|
70 | | - while (remaining > current_grouping) { |
71 | | - /* Always leave buffer and pend valid at the end of this |
72 | | - loop, since we might leave with a return statement. */ |
| 71 | + while (remaining > current_grouping) { |
| 72 | + /* Always leave buffer and pend valid at the end of this |
| 73 | + loop, since we might leave with a return statement. */ |
73 | 74 |
|
74 | | - remaining -= current_grouping; |
75 | | - if (count) { |
76 | | - /* We're only counting, not touching the memory. */ |
77 | | - *count += thousands_sep_len; |
78 | | - } |
79 | | - else { |
80 | | - /* Do the formatting. */ |
| 75 | + remaining -= current_grouping; |
| 76 | + if (count) { |
| 77 | + /* We're only counting, not touching the memory. */ |
| 78 | + *count += thousands_sep_len; |
| 79 | + } |
| 80 | + else { |
| 81 | + /* Do the formatting. */ |
81 | 82 |
|
82 | | - STRINGLIB_CHAR *plast = buffer + remaining; |
| 83 | + STRINGLIB_CHAR *plast = buffer + remaining; |
83 | 84 |
|
84 | | - /* Is there room to insert thousands_sep_len chars? */ |
85 | | - if (pmax - pend < thousands_sep_len) |
86 | | - /* No room. */ |
87 | | - return 0; |
| 85 | + /* Is there room to insert thousands_sep_len chars? */ |
| 86 | + if (pmax - pend < thousands_sep_len) |
| 87 | + /* No room. */ |
| 88 | + return 0; |
88 | 89 |
|
89 | | - /* Move the rest of the string down. */ |
90 | | - memmove(plast + thousands_sep_len, |
91 | | - plast, |
92 | | - (pend - plast) * sizeof(STRINGLIB_CHAR)); |
93 | | - /* Copy the thousands_sep chars into the buffer. */ |
| 90 | + /* Move the rest of the string down. */ |
| 91 | + memmove(plast + thousands_sep_len, |
| 92 | + plast, |
| 93 | + (pend - plast) * sizeof(STRINGLIB_CHAR)); |
| 94 | + /* Copy the thousands_sep chars into the buffer. */ |
94 | 95 | #if STRINGLIB_IS_UNICODE |
95 | | - /* Convert from the char's of the thousands_sep from |
96 | | - the locale into unicode. */ |
97 | | - { |
98 | | - Py_ssize_t i; |
99 | | - for (i = 0; i < thousands_sep_len; ++i) |
100 | | - plast[i] = thousands_sep[i]; |
101 | | - } |
| 96 | + /* Convert from the char's of the thousands_sep from |
| 97 | + the locale into unicode. */ |
| 98 | + { |
| 99 | + Py_ssize_t i; |
| 100 | + for (i = 0; i < thousands_sep_len; ++i) |
| 101 | + plast[i] = thousands_sep[i]; |
| 102 | + } |
102 | 103 | #else |
103 | | - /* No conversion, just memcpy the thousands_sep. */ |
104 | | - memcpy(plast, thousands_sep, thousands_sep_len); |
| 104 | + /* No conversion, just memcpy the thousands_sep. */ |
| 105 | + memcpy(plast, thousands_sep, thousands_sep_len); |
105 | 106 | #endif |
106 | | - } |
| 107 | + } |
107 | 108 |
|
108 | | - /* Adjust end pointer. */ |
109 | | - pend += thousands_sep_len; |
| 109 | + /* Adjust end pointer. */ |
| 110 | + pend += thousands_sep_len; |
110 | 111 |
|
111 | | - /* Move to the next grouping character, unless we're |
112 | | - repeating (which is designated by a grouping of 0). */ |
113 | | - if (*grouping != 0) { |
114 | | - current_grouping = *grouping++; |
115 | | - if (current_grouping == CHAR_MAX) |
116 | | - /* We're done. */ |
117 | | - break; |
118 | | - } |
119 | | - } |
120 | | - if (append_zero_char) { |
121 | | - /* Append a zero character to mark the end of the string, |
122 | | - if there's room. */ |
123 | | - if (pend - (buffer + remaining) < 1) |
124 | | - /* No room, error. */ |
125 | | - return 0; |
126 | | - *pend = 0; |
127 | | - } |
128 | | - return 1; |
| 112 | + /* Move to the next grouping character, unless we're |
| 113 | + repeating (which is designated by a grouping of 0). */ |
| 114 | + if (*grouping != 0) { |
| 115 | + current_grouping = *grouping++; |
| 116 | + if (current_grouping == CHAR_MAX) |
| 117 | + /* We're done. */ |
| 118 | + break; |
| 119 | + } |
| 120 | + } |
| 121 | + if (append_zero_char) { |
| 122 | + /* Append a zero character to mark the end of the string, |
| 123 | + if there's room. */ |
| 124 | + if (pend - (buffer + remaining) < 1) |
| 125 | + /* No room, error. */ |
| 126 | + return 0; |
| 127 | + *pend = 0; |
| 128 | + } |
| 129 | + return 1; |
| 130 | +} |
| 131 | + |
| 132 | +/** |
| 133 | + * _Py_InsertThousandsGroupingLocale: |
| 134 | + * @buffer: A pointer to the start of a string. |
| 135 | + * @n_buffer: The length of the string. |
| 136 | + * @n_digits: The number of digits in the string, in which we want |
| 137 | + * to put the grouping chars. |
| 138 | + * @buf_size: The maximum size of the buffer pointed to by buffer. |
| 139 | + * @count: If non-NULL, points to a variable that will receive the |
| 140 | + * number of characters we need to insert (and no formatting |
| 141 | + * will actually occur). |
| 142 | + * @append_zero_char: If non-zero, put a trailing zero at the end of |
| 143 | + * of the resulting string, if and only if we modified the |
| 144 | + * string. |
| 145 | + * |
| 146 | + * Reads thee current locale and calls _Py_InsertThousandsGrouping(). |
| 147 | + **/ |
| 148 | +int |
| 149 | +_Py_InsertThousandsGroupingLocale(STRINGLIB_CHAR *buffer, |
| 150 | + Py_ssize_t n_buffer, |
| 151 | + Py_ssize_t n_digits, |
| 152 | + Py_ssize_t buf_size, |
| 153 | + Py_ssize_t *count, |
| 154 | + int append_zero_char) |
| 155 | +{ |
| 156 | + struct lconv *locale_data = localeconv(); |
| 157 | + const char *grouping = locale_data->grouping; |
| 158 | + const char *thousands_sep = locale_data->thousands_sep; |
| 159 | + |
| 160 | + return _Py_InsertThousandsGrouping(buffer, n_buffer, n_digits, |
| 161 | + buf_size, count, |
| 162 | + append_zero_char, grouping, |
| 163 | + thousands_sep); |
129 | 164 | } |
130 | 165 | #endif /* STRINGLIB_LOCALEUTIL_H */ |
0 commit comments