blob: 9254c09a7f28b7ebbee826496c68075844bb59aa [file] [log] [blame]
Eric Smith5807c412008-05-11 21:00:57 +00001/* stringlib: locale related helpers implementation */
2
3#ifndef STRINGLIB_LOCALEUTIL_H
4#define STRINGLIB_LOCALEUTIL_H
5
6#include <locale.h>
7
8/**
9 * _Py_InsertThousandsGrouping:
10 * @buffer: A pointer to the start of a string.
Eric Smith6d7e7a72008-06-24 01:06:47 +000011 * @n_buffer: The length of the string.
12 * @n_digits: The number of digits in the string, in which we want
13 * to put the grouping chars.
Eric Smith5807c412008-05-11 21:00:57 +000014 * @buf_size: The maximum size of the buffer pointed to by buffer.
15 * @count: If non-NULL, points to a variable that will receive the
16 * number of characters we need to insert (and no formatting
17 * will actually occur).
18 * @append_zero_char: If non-zero, put a trailing zero at the end of
19 * of the resulting string, if and only if we modified the
20 * string.
Eric Smitha3b1ac82009-04-03 14:45:06 +000021 * @grouping: see definition in localeconv().
22 * @thousands_sep: see definition in localeconv().
Eric Smith5807c412008-05-11 21:00:57 +000023 *
Eric Smitha3b1ac82009-04-03 14:45:06 +000024 * 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
Eric Smith6d7e7a72008-06-24 01:06:47 +000028 * appropriately resize the buffer, if needed. If count is non-NULL,
29 * buffer can be NULL (it is not dereferenced at all in that case).
Eric Smith5807c412008-05-11 21:00:57 +000030 *
31 * Return value: 0 on error, else 1. Note that no error can occur if
32 * count is non-NULL.
33 *
34 * This name won't be used, the includer of this file should define
35 * it to be the actual function name, based on unicode or string.
36 **/
37int
38_Py_InsertThousandsGrouping(STRINGLIB_CHAR *buffer,
Eric Smitha3b1ac82009-04-03 14:45:06 +000039 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)
Eric Smith5807c412008-05-11 21:00:57 +000046{
Eric Smitha3b1ac82009-04-03 14:45:06 +000047 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 */
Eric Smith5807c412008-05-11 21:00:57 +000053
Eric Smitha3b1ac82009-04-03 14:45:06 +000054 /* 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 }
Eric Smith5807c412008-05-11 21:00:57 +000062
Eric Smitha3b1ac82009-04-03 14:45:06 +000063 /* 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++;
Eric Smith5807c412008-05-11 21:00:57 +000066
Eric Smitha3b1ac82009-04-03 14:45:06 +000067 /* If the first character is 0, perform no grouping at all. */
68 if (current_grouping == 0)
69 return 1;
Eric Smith5807c412008-05-11 21:00:57 +000070
Eric Smitha3b1ac82009-04-03 14:45:06 +000071 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. */
Eric Smith5807c412008-05-11 21:00:57 +000074
Eric Smitha3b1ac82009-04-03 14:45:06 +000075 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. */
Eric Smith5807c412008-05-11 21:00:57 +000082
Eric Smitha3b1ac82009-04-03 14:45:06 +000083 STRINGLIB_CHAR *plast = buffer + remaining;
Eric Smith6d7e7a72008-06-24 01:06:47 +000084
Eric Smitha3b1ac82009-04-03 14:45:06 +000085 /* Is there room to insert thousands_sep_len chars? */
86 if (pmax - pend < thousands_sep_len)
87 /* No room. */
88 return 0;
Eric Smith5807c412008-05-11 21:00:57 +000089
Eric Smitha3b1ac82009-04-03 14:45:06 +000090 /* 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. */
Eric Smith5807c412008-05-11 21:00:57 +000095#if STRINGLIB_IS_UNICODE
Eric Smitha3b1ac82009-04-03 14:45:06 +000096 /* 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 }
Eric Smith5807c412008-05-11 21:00:57 +0000103#else
Eric Smitha3b1ac82009-04-03 14:45:06 +0000104 /* No conversion, just memcpy the thousands_sep. */
105 memcpy(plast, thousands_sep, thousands_sep_len);
Eric Smith5807c412008-05-11 21:00:57 +0000106#endif
Eric Smitha3b1ac82009-04-03 14:45:06 +0000107 }
Eric Smith5807c412008-05-11 21:00:57 +0000108
Eric Smitha3b1ac82009-04-03 14:45:06 +0000109 /* Adjust end pointer. */
110 pend += thousands_sep_len;
Eric Smith5807c412008-05-11 21:00:57 +0000111
Eric Smitha3b1ac82009-04-03 14:45:06 +0000112 /* 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 **/
148int
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);
Eric Smith5807c412008-05-11 21:00:57 +0000164}
165#endif /* STRINGLIB_LOCALEUTIL_H */