source: mainline/boot/generic/src/str.c@ dc68f72

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since dc68f72 was 7c3fb9b, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Fix block comment formatting (ccheck).

  • Property mode set to 100644
File size: 11.5 KB
Line 
1/*
2 * Copyright (c) 2001-2004 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/**
30 * @file
31 * @brief String functions.
32 *
33 * Strings and characters use the Universal Character Set (UCS). The standard
34 * strings, called just strings are encoded in UTF-8. Wide strings (encoded
35 * in UTF-32) are supported to a limited degree. A single character is
36 * represented as wchar_t.@n
37 *
38 * Overview of the terminology:@n
39 *
40 * Term Meaning
41 * -------------------- ----------------------------------------------------
42 * byte 8 bits stored in uint8_t (unsigned 8 bit integer)
43 *
44 * character UTF-32 encoded Unicode character, stored in wchar_t
45 * (signed 32 bit integer), code points 0 .. 1114111
46 * are valid
47 *
48 * ASCII character 7 bit encoded ASCII character, stored in char
49 * (usually signed 8 bit integer), code points 0 .. 127
50 * are valid
51 *
52 * string UTF-8 encoded NULL-terminated Unicode string, char *
53 *
54 * wide string UTF-32 encoded NULL-terminated Unicode string,
55 * wchar_t *
56 *
57 * [wide] string size number of BYTES in a [wide] string (excluding
58 * the NULL-terminator), size_t
59 *
60 * [wide] string length number of CHARACTERS in a [wide] string (excluding
61 * the NULL-terminator), size_t
62 *
63 * [wide] string width number of display cells on a monospace display taken
64 * by a [wide] string, size_t
65 *
66 *
67 * Overview of string metrics:@n
68 *
69 * Metric Abbrev. Type Meaning
70 * ------ ------ ------ -------------------------------------------------
71 * size n size_t number of BYTES in a string (excluding the
72 * NULL-terminator)
73 *
74 * length l size_t number of CHARACTERS in a string (excluding the
75 * null terminator)
76 *
77 * width w size_t number of display cells on a monospace display
78 * taken by a string
79 *
80 *
81 * Function naming prefixes:@n
82 *
83 * chr_ operate on characters
84 * ascii_ operate on ASCII characters
85 * str_ operate on strings
86 * wstr_ operate on wide strings
87 *
88 * [w]str_[n|l|w] operate on a prefix limited by size, length
89 * or width
90 *
91 *
92 * A specific character inside a [wide] string can be referred to by:@n
93 *
94 * pointer (char *, wchar_t *)
95 * byte offset (size_t)
96 * character index (size_t)
97 *
98 */
99
100#include <errno.h>
101#include <stdbool.h>
102#include <stddef.h>
103#include <str.h>
104
105/** Check the condition if wchar_t is signed */
106#ifdef __WCHAR_UNSIGNED__
107#define WCHAR_SIGNED_CHECK(cond) (true)
108#else
109#define WCHAR_SIGNED_CHECK(cond) (cond)
110#endif
111
112/** Byte mask consisting of lowest @n bits (out of 8) */
113#define LO_MASK_8(n) ((uint8_t) ((1 << (n)) - 1))
114
115/** Byte mask consisting of lowest @n bits (out of 32) */
116#define LO_MASK_32(n) ((uint32_t) ((1 << (n)) - 1))
117
118/** Byte mask consisting of highest @n bits (out of 8) */
119#define HI_MASK_8(n) (~LO_MASK_8(8 - (n)))
120
121/** Number of data bits in a UTF-8 continuation byte */
122#define CONT_BITS 6
123
124/** Decode a single character from a string.
125 *
126 * Decode a single character from a string of size @a size. Decoding starts
127 * at @a offset and this offset is moved to the beginning of the next
128 * character. In case of decoding error, offset generally advances at least
129 * by one. However, offset is never moved beyond size.
130 *
131 * @param str String (not necessarily NULL-terminated).
132 * @param offset Byte offset in string where to start decoding.
133 * @param size Size of the string (in bytes).
134 *
135 * @return Value of decoded character, U_SPECIAL on decoding error or
136 * NULL if attempt to decode beyond @a size.
137 *
138 */
139wchar_t str_decode(const char *str, size_t *offset, size_t size)
140{
141 if (*offset + 1 > size)
142 return 0;
143
144 /* First byte read from string */
145 uint8_t b0 = (uint8_t) str[(*offset)++];
146
147 /* Determine code length */
148
149 unsigned int b0_bits; /* Data bits in first byte */
150 unsigned int cbytes; /* Number of continuation bytes */
151
152 if ((b0 & 0x80) == 0) {
153 /* 0xxxxxxx (Plain ASCII) */
154 b0_bits = 7;
155 cbytes = 0;
156 } else if ((b0 & 0xe0) == 0xc0) {
157 /* 110xxxxx 10xxxxxx */
158 b0_bits = 5;
159 cbytes = 1;
160 } else if ((b0 & 0xf0) == 0xe0) {
161 /* 1110xxxx 10xxxxxx 10xxxxxx */
162 b0_bits = 4;
163 cbytes = 2;
164 } else if ((b0 & 0xf8) == 0xf0) {
165 /* 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */
166 b0_bits = 3;
167 cbytes = 3;
168 } else {
169 /* 10xxxxxx -- unexpected continuation byte */
170 return U_SPECIAL;
171 }
172
173 if (*offset + cbytes > size)
174 return U_SPECIAL;
175
176 wchar_t ch = b0 & LO_MASK_8(b0_bits);
177
178 /* Decode continuation bytes */
179 while (cbytes > 0) {
180 uint8_t b = (uint8_t) str[(*offset)++];
181
182 /* Must be 10xxxxxx */
183 if ((b & 0xc0) != 0x80)
184 return U_SPECIAL;
185
186 /* Shift data bits to ch */
187 ch = (ch << CONT_BITS) | (wchar_t) (b & LO_MASK_8(CONT_BITS));
188 cbytes--;
189 }
190
191 return ch;
192}
193
194/** Encode a single character to string representation.
195 *
196 * Encode a single character to string representation (i.e. UTF-8) and store
197 * it into a buffer at @a offset. Encoding starts at @a offset and this offset
198 * is moved to the position where the next character can be written to.
199 *
200 * @param ch Input character.
201 * @param str Output buffer.
202 * @param offset Byte offset where to start writing.
203 * @param size Size of the output buffer (in bytes).
204 *
205 * @return EOK if the character was encoded successfully, EOVERFLOW if there
206 * was not enough space in the output buffer or EINVAL if the character
207 * code was invalid.
208 */
209int chr_encode(const wchar_t ch, char *str, size_t *offset, size_t size)
210{
211 if (*offset >= size)
212 return EOVERFLOW;
213
214 if (!chr_check(ch))
215 return EINVAL;
216
217 /*
218 * Unsigned version of ch (bit operations should only be done
219 * on unsigned types).
220 */
221 uint32_t cc = (uint32_t) ch;
222
223 /* Determine how many continuation bytes are needed */
224
225 unsigned int b0_bits; /* Data bits in first byte */
226 unsigned int cbytes; /* Number of continuation bytes */
227
228 if ((cc & ~LO_MASK_32(7)) == 0) {
229 b0_bits = 7;
230 cbytes = 0;
231 } else if ((cc & ~LO_MASK_32(11)) == 0) {
232 b0_bits = 5;
233 cbytes = 1;
234 } else if ((cc & ~LO_MASK_32(16)) == 0) {
235 b0_bits = 4;
236 cbytes = 2;
237 } else if ((cc & ~LO_MASK_32(21)) == 0) {
238 b0_bits = 3;
239 cbytes = 3;
240 } else {
241 /* Codes longer than 21 bits are not supported */
242 return EINVAL;
243 }
244
245 /* Check for available space in buffer */
246 if (*offset + cbytes >= size)
247 return EOVERFLOW;
248
249 /* Encode continuation bytes */
250 unsigned int i;
251 for (i = cbytes; i > 0; i--) {
252 str[*offset + i] = 0x80 | (cc & LO_MASK_32(CONT_BITS));
253 cc = cc >> CONT_BITS;
254 }
255
256 /* Encode first byte */
257 str[*offset] = (cc & LO_MASK_32(b0_bits)) | HI_MASK_8(8 - b0_bits - 1);
258
259 /* Advance offset */
260 *offset += cbytes + 1;
261
262 return EOK;
263}
264
265/** Get size of string.
266 *
267 * Get the number of bytes which are used by the string @a str (excluding the
268 * NULL-terminator).
269 *
270 * @param str String to consider.
271 *
272 * @return Number of bytes used by the string
273 *
274 */
275size_t str_size(const char *str)
276{
277 size_t size = 0;
278
279 while (*str++ != 0)
280 size++;
281
282 return size;
283}
284
285/** Get size of string with length limit.
286 *
287 * Get the number of bytes which are used by up to @a max_len first
288 * characters in the string @a str. If @a max_len is greater than
289 * the length of @a str, the entire string is measured (excluding the
290 * NULL-terminator).
291 *
292 * @param str String to consider.
293 * @param max_len Maximum number of characters to measure.
294 *
295 * @return Number of bytes used by the characters.
296 *
297 */
298size_t str_lsize(const char *str, size_t max_len)
299{
300 size_t len = 0;
301 size_t offset = 0;
302
303 while (len < max_len) {
304 if (str_decode(str, &offset, STR_NO_LIMIT) == 0)
305 break;
306
307 len++;
308 }
309
310 return offset;
311}
312
313/** Get number of characters in a string.
314 *
315 * @param str NULL-terminated string.
316 *
317 * @return Number of characters in string.
318 *
319 */
320size_t str_length(const char *str)
321{
322 size_t len = 0;
323 size_t offset = 0;
324
325 while (str_decode(str, &offset, STR_NO_LIMIT) != 0)
326 len++;
327
328 return len;
329}
330
331/** Check whether character is plain ASCII.
332 *
333 * @return True if character is plain ASCII.
334 *
335 */
336bool ascii_check(wchar_t ch)
337{
338 if (WCHAR_SIGNED_CHECK(ch >= 0) && (ch <= 127))
339 return true;
340
341 return false;
342}
343
344/** Check whether character is valid
345 *
346 * @return True if character is a valid Unicode code point.
347 *
348 */
349bool chr_check(wchar_t ch)
350{
351 if (WCHAR_SIGNED_CHECK(ch >= 0) && (ch <= 1114111))
352 return true;
353
354 return false;
355}
356
357/** Compare two NULL terminated strings.
358 *
359 * Do a char-by-char comparison of two NULL-terminated strings.
360 * The strings are considered equal iff their length is equal
361 * and both strings consist of the same sequence of characters.
362 *
363 * A string S1 is less than another string S2 if it has a character with
364 * lower value at the first character position where the strings differ.
365 * If the strings differ in length, the shorter one is treated as if
366 * padded by characters with a value of zero.
367 *
368 * @param s1 First string to compare.
369 * @param s2 Second string to compare.
370 *
371 * @return 0 if the strings are equal, -1 if the first is less than the second,
372 * 1 if the second is less than the first.
373 *
374 */
375int str_cmp(const char *s1, const char *s2)
376{
377 wchar_t c1 = 0;
378 wchar_t c2 = 0;
379
380 size_t off1 = 0;
381 size_t off2 = 0;
382
383 while (true) {
384 c1 = str_decode(s1, &off1, STR_NO_LIMIT);
385 c2 = str_decode(s2, &off2, STR_NO_LIMIT);
386
387 if (c1 < c2)
388 return -1;
389
390 if (c1 > c2)
391 return 1;
392
393 if ((c1 == 0) || (c2 == 0))
394 break;
395 }
396
397 return 0;
398}
399
400/** Copy string.
401 *
402 * Copy source string @a src to destination buffer @a dest.
403 * No more than @a size bytes are written. If the size of the output buffer
404 * is at least one byte, the output string will always be well-formed, i.e.
405 * null-terminated and containing only complete characters.
406 *
407 * @param dest Destination buffer.
408 * @param count Size of the destination buffer (must be > 0).
409 * @param src Source string.
410 *
411 */
412void str_cpy(char *dest, size_t size, const char *src)
413{
414 size_t src_off = 0;
415 size_t dest_off = 0;
416
417 wchar_t ch;
418 while ((ch = str_decode(src, &src_off, STR_NO_LIMIT)) != 0) {
419 if (chr_encode(ch, dest, &dest_off, size - 1) != EOK)
420 break;
421 }
422
423 dest[dest_off] = '\0';
424}
425
426/** @}
427 */
Note: See TracBrowser for help on using the repository browser.