posix: Reformat Makefile.
[glibc.git] / stdlib / grouping.c
blobb6bf1dbab2196485ed271f613707438defb02402
1 /* Internal header for proving correct grouping in strings of numbers.
2 Copyright (C) 1995-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <limits.h>
20 #include <stddef.h>
21 #include <string.h>
23 #ifndef MAX
24 #define MAX(a,b) ({ typeof(a) _a = (a); typeof(b) _b = (b); \
25 _a > _b ? _a : _b; })
26 #endif
28 #ifdef USE_WIDE_CHAR
29 # include <wctype.h>
30 # define L_(Ch) L##Ch
31 # define UCHAR_TYPE wint_t
32 # define STRING_TYPE wchar_t
33 #else
34 # define L_(Ch) Ch
35 # define UCHAR_TYPE unsigned char
36 # define STRING_TYPE char
37 #endif
39 #include "grouping.h"
41 /* Find the maximum prefix of the string between BEGIN and END which
42 satisfies the grouping rules. It is assumed that at least one digit
43 follows BEGIN directly. */
45 const STRING_TYPE *
46 #ifdef USE_WIDE_CHAR
47 __correctly_grouped_prefixwc (const STRING_TYPE *begin, const STRING_TYPE *end,
48 wchar_t thousands,
49 #else
50 __correctly_grouped_prefixmb (const STRING_TYPE *begin, const STRING_TYPE *end,
51 const char *thousands,
52 #endif
53 const char *grouping)
55 if (grouping == NULL)
56 return end;
58 #ifdef USE_WIDE_CHAR
59 size_t thousands_len = 1;
60 #else
61 size_t thousands_len = strlen (thousands);
62 int cnt;
63 #endif
65 while (end - begin >= thousands_len)
67 const STRING_TYPE *cp = end - thousands_len;
68 const char *gp = grouping;
70 /* Check first group. */
71 while (cp >= begin)
73 #ifdef USE_WIDE_CHAR
74 if (*cp == thousands)
75 break;
76 #else
77 if (cp[thousands_len - 1] == *thousands)
79 for (cnt = 1; thousands[cnt] != '\0'; ++cnt)
80 if (thousands[cnt] != cp[thousands_len - 1 - cnt])
81 break;
82 if (thousands[cnt] == '\0')
83 break;
85 #endif
86 --cp;
89 /* We allow the representation to contain no grouping at all even if
90 the locale specifies we can have grouping. */
91 if (cp < begin)
92 return end;
94 if (end - cp == (int) *gp + 1)
96 /* This group matches the specification. */
98 const STRING_TYPE *new_end;
100 if (cp < begin)
101 /* There is just one complete group. We are done. */
102 return end;
104 /* CP points to a thousands separator character. The preceding
105 remainder of the string from BEGIN to NEW_END is the part we
106 will consider if there is a grouping error in this trailing
107 portion from CP to END. */
108 new_end = cp - 1;
110 /* Loop while the grouping is correct. */
111 while (1)
113 /* Get the next grouping rule. */
114 ++gp;
115 if (*gp == 0)
116 /* If end is reached use last rule. */
117 --gp;
119 /* Skip the thousands separator. */
120 --cp;
122 if (*gp == CHAR_MAX
123 #if CHAR_MIN < 0
124 || *gp < 0
125 #endif
128 /* No more thousands separators are allowed to follow. */
129 while (cp >= begin)
131 #ifdef USE_WIDE_CHAR
132 if (*cp == thousands)
133 break;
134 #else
135 for (cnt = 0; thousands[cnt] != '\0'; ++cnt)
136 if (thousands[cnt] != cp[thousands_len - cnt - 1])
137 break;
138 if (thousands[cnt] == '\0')
139 break;
140 #endif
141 --cp;
144 if (cp < begin)
145 /* OK, only digits followed. */
146 return end;
148 else
150 /* Check the next group. */
151 const STRING_TYPE *group_end = cp;
153 while (cp >= begin)
155 #ifdef USE_WIDE_CHAR
156 if (*cp == thousands)
157 break;
158 #else
159 for (cnt = 0; thousands[cnt] != '\0'; ++cnt)
160 if (thousands[cnt] != cp[thousands_len - cnt - 1])
161 break;
162 if (thousands[cnt] == '\0')
163 break;
164 #endif
165 --cp;
168 if (cp < begin && group_end - cp <= (int) *gp)
169 /* Final group is correct. */
170 return end;
172 if (cp < begin || group_end - cp != (int) *gp)
173 /* Incorrect group. Punt. */
174 break;
178 /* The trailing portion of the string starting at NEW_END
179 contains a grouping error. So we will look for a correctly
180 grouped number in the preceding portion instead. */
181 end = new_end;
183 else
185 /* Even the first group was wrong; determine maximum shift. */
186 if (end - cp > (int) *gp + 1)
187 end = cp + (int) *gp + 1;
188 else if (cp < begin)
189 /* This number does not fill the first group, but is correct. */
190 return end;
191 else
192 /* CP points to a thousands separator character. */
193 end = cp;
197 return MAX (begin, end);