source: mainline/kernel/generic/src/lib/str.c@ 4efeab5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 4efeab5 was 4efeab5, checked in by Martin Sucha <sucha14@…>, 13 years ago

Update documentation for str_cmp and str_lcmp

  • Property mode set to 100644
File size: 23.9 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/** @addtogroup generic
30 * @{
31 */
32
33/**
34 * @file
35 * @brief String functions.
36 *
37 * Strings and characters use the Universal Character Set (UCS). The standard
38 * strings, called just strings are encoded in UTF-8. Wide strings (encoded
39 * in UTF-32) are supported to a limited degree. A single character is
40 * represented as wchar_t.@n
41 *
42 * Overview of the terminology:@n
43 *
44 * Term Meaning
45 * -------------------- ----------------------------------------------------
46 * byte 8 bits stored in uint8_t (unsigned 8 bit integer)
47 *
48 * character UTF-32 encoded Unicode character, stored in wchar_t
49 * (signed 32 bit integer), code points 0 .. 1114111
50 * are valid
51 *
52 * ASCII character 7 bit encoded ASCII character, stored in char
53 * (usually signed 8 bit integer), code points 0 .. 127
54 * are valid
55 *
56 * string UTF-8 encoded NULL-terminated Unicode string, char *
57 *
58 * wide string UTF-32 encoded NULL-terminated Unicode string,
59 * wchar_t *
60 *
61 * [wide] string size number of BYTES in a [wide] string (excluding
62 * the NULL-terminator), size_t
63 *
64 * [wide] string length number of CHARACTERS in a [wide] string (excluding
65 * the NULL-terminator), size_t
66 *
67 * [wide] string width number of display cells on a monospace display taken
68 * by a [wide] string, size_t
69 *
70 *
71 * Overview of string metrics:@n
72 *
73 * Metric Abbrev. Type Meaning
74 * ------ ------ ------ -------------------------------------------------
75 * size n size_t number of BYTES in a string (excluding the
76 * NULL-terminator)
77 *
78 * length l size_t number of CHARACTERS in a string (excluding the
79 * null terminator)
80 *
81 * width w size_t number of display cells on a monospace display
82 * taken by a string
83 *
84 *
85 * Function naming prefixes:@n
86 *
87 * chr_ operate on characters
88 * ascii_ operate on ASCII characters
89 * str_ operate on strings
90 * wstr_ operate on wide strings
91 *
92 * [w]str_[n|l|w] operate on a prefix limited by size, length
93 * or width
94 *
95 *
96 * A specific character inside a [wide] string can be referred to by:@n
97 *
98 * pointer (char *, wchar_t *)
99 * byte offset (size_t)
100 * character index (size_t)
101 *
102 */
103
104#include <str.h>
105#include <print.h>
106#include <cpu.h>
107#include <arch/asm.h>
108#include <arch.h>
109#include <errno.h>
110#include <align.h>
111#include <debug.h>
112#include <macros.h>
113
114/** Check the condition if wchar_t is signed */
115#ifdef WCHAR_IS_UNSIGNED
116 #define WCHAR_SIGNED_CHECK(cond) (true)
117#else
118 #define WCHAR_SIGNED_CHECK(cond) (cond)
119#endif
120
121/** Byte mask consisting of lowest @n bits (out of 8) */
122#define LO_MASK_8(n) ((uint8_t) ((1 << (n)) - 1))
123
124/** Byte mask consisting of lowest @n bits (out of 32) */
125#define LO_MASK_32(n) ((uint32_t) ((1 << (n)) - 1))
126
127/** Byte mask consisting of highest @n bits (out of 8) */
128#define HI_MASK_8(n) (~LO_MASK_8(8 - (n)))
129
130/** Number of data bits in a UTF-8 continuation byte */
131#define CONT_BITS 6
132
133/** Decode a single character from a string.
134 *
135 * Decode a single character from a string of size @a size. Decoding starts
136 * at @a offset and this offset is moved to the beginning of the next
137 * character. In case of decoding error, offset generally advances at least
138 * by one. However, offset is never moved beyond size.
139 *
140 * @param str String (not necessarily NULL-terminated).
141 * @param offset Byte offset in string where to start decoding.
142 * @param size Size of the string (in bytes).
143 *
144 * @return Value of decoded character, U_SPECIAL on decoding error or
145 * NULL if attempt to decode beyond @a size.
146 *
147 */
148wchar_t str_decode(const char *str, size_t *offset, size_t size)
149{
150 if (*offset + 1 > size)
151 return 0;
152
153 /* First byte read from string */
154 uint8_t b0 = (uint8_t) str[(*offset)++];
155
156 /* Determine code length */
157
158 unsigned int b0_bits; /* Data bits in first byte */
159 unsigned int cbytes; /* Number of continuation bytes */
160
161 if ((b0 & 0x80) == 0) {
162 /* 0xxxxxxx (Plain ASCII) */
163 b0_bits = 7;
164 cbytes = 0;
165 } else if ((b0 & 0xe0) == 0xc0) {
166 /* 110xxxxx 10xxxxxx */
167 b0_bits = 5;
168 cbytes = 1;
169 } else if ((b0 & 0xf0) == 0xe0) {
170 /* 1110xxxx 10xxxxxx 10xxxxxx */
171 b0_bits = 4;
172 cbytes = 2;
173 } else if ((b0 & 0xf8) == 0xf0) {
174 /* 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */
175 b0_bits = 3;
176 cbytes = 3;
177 } else {
178 /* 10xxxxxx -- unexpected continuation byte */
179 return U_SPECIAL;
180 }
181
182 if (*offset + cbytes > size)
183 return U_SPECIAL;
184
185 wchar_t ch = b0 & LO_MASK_8(b0_bits);
186
187 /* Decode continuation bytes */
188 while (cbytes > 0) {
189 uint8_t b = (uint8_t) str[(*offset)++];
190
191 /* Must be 10xxxxxx */
192 if ((b & 0xc0) != 0x80)
193 return U_SPECIAL;
194
195 /* Shift data bits to ch */
196 ch = (ch << CONT_BITS) | (wchar_t) (b & LO_MASK_8(CONT_BITS));
197 cbytes--;
198 }
199
200 return ch;
201}
202
203/** Encode a single character to string representation.
204 *
205 * Encode a single character to string representation (i.e. UTF-8) and store
206 * it into a buffer at @a offset. Encoding starts at @a offset and this offset
207 * is moved to the position where the next character can be written to.
208 *
209 * @param ch Input character.
210 * @param str Output buffer.
211 * @param offset Byte offset where to start writing.
212 * @param size Size of the output buffer (in bytes).
213 *
214 * @return EOK if the character was encoded successfully, EOVERFLOW if there
215 * was not enough space in the output buffer or EINVAL if the character
216 * code was invalid.
217 */
218int chr_encode(const wchar_t ch, char *str, size_t *offset, size_t size)
219{
220 if (*offset >= size)
221 return EOVERFLOW;
222
223 if (!chr_check(ch))
224 return EINVAL;
225
226 /* Unsigned version of ch (bit operations should only be done
227 on unsigned types). */
228 uint32_t cc = (uint32_t) ch;
229
230 /* Determine how many continuation bytes are needed */
231
232 unsigned int b0_bits; /* Data bits in first byte */
233 unsigned int cbytes; /* Number of continuation bytes */
234
235 if ((cc & ~LO_MASK_32(7)) == 0) {
236 b0_bits = 7;
237 cbytes = 0;
238 } else if ((cc & ~LO_MASK_32(11)) == 0) {
239 b0_bits = 5;
240 cbytes = 1;
241 } else if ((cc & ~LO_MASK_32(16)) == 0) {
242 b0_bits = 4;
243 cbytes = 2;
244 } else if ((cc & ~LO_MASK_32(21)) == 0) {
245 b0_bits = 3;
246 cbytes = 3;
247 } else {
248 /* Codes longer than 21 bits are not supported */
249 return EINVAL;
250 }
251
252 /* Check for available space in buffer */
253 if (*offset + cbytes >= size)
254 return EOVERFLOW;
255
256 /* Encode continuation bytes */
257 unsigned int i;
258 for (i = cbytes; i > 0; i--) {
259 str[*offset + i] = 0x80 | (cc & LO_MASK_32(CONT_BITS));
260 cc = cc >> CONT_BITS;
261 }
262
263 /* Encode first byte */
264 str[*offset] = (cc & LO_MASK_32(b0_bits)) | HI_MASK_8(8 - b0_bits - 1);
265
266 /* Advance offset */
267 *offset += cbytes + 1;
268
269 return EOK;
270}
271
272/** Get size of string.
273 *
274 * Get the number of bytes which are used by the string @a str (excluding the
275 * NULL-terminator).
276 *
277 * @param str String to consider.
278 *
279 * @return Number of bytes used by the string
280 *
281 */
282size_t str_size(const char *str)
283{
284 size_t size = 0;
285
286 while (*str++ != 0)
287 size++;
288
289 return size;
290}
291
292/** Get size of wide string.
293 *
294 * Get the number of bytes which are used by the wide string @a str (excluding the
295 * NULL-terminator).
296 *
297 * @param str Wide string to consider.
298 *
299 * @return Number of bytes used by the wide string
300 *
301 */
302size_t wstr_size(const wchar_t *str)
303{
304 return (wstr_length(str) * sizeof(wchar_t));
305}
306
307/** Get size of string with length limit.
308 *
309 * Get the number of bytes which are used by up to @a max_len first
310 * characters in the string @a str. If @a max_len is greater than
311 * the length of @a str, the entire string is measured (excluding the
312 * NULL-terminator).
313 *
314 * @param str String to consider.
315 * @param max_len Maximum number of characters to measure.
316 *
317 * @return Number of bytes used by the characters.
318 *
319 */
320size_t str_lsize(const char *str, size_t max_len)
321{
322 size_t len = 0;
323 size_t offset = 0;
324
325 while (len < max_len) {
326 if (str_decode(str, &offset, STR_NO_LIMIT) == 0)
327 break;
328
329 len++;
330 }
331
332 return offset;
333}
334
335/** Get size of wide string with length limit.
336 *
337 * Get the number of bytes which are used by up to @a max_len first
338 * wide characters in the wide string @a str. If @a max_len is greater than
339 * the length of @a str, the entire wide string is measured (excluding the
340 * NULL-terminator).
341 *
342 * @param str Wide string to consider.
343 * @param max_len Maximum number of wide characters to measure.
344 *
345 * @return Number of bytes used by the wide characters.
346 *
347 */
348size_t wstr_lsize(const wchar_t *str, size_t max_len)
349{
350 return (wstr_nlength(str, max_len * sizeof(wchar_t)) * sizeof(wchar_t));
351}
352
353/** Get number of characters in a string.
354 *
355 * @param str NULL-terminated string.
356 *
357 * @return Number of characters in string.
358 *
359 */
360size_t str_length(const char *str)
361{
362 size_t len = 0;
363 size_t offset = 0;
364
365 while (str_decode(str, &offset, STR_NO_LIMIT) != 0)
366 len++;
367
368 return len;
369}
370
371/** Get number of characters in a wide string.
372 *
373 * @param str NULL-terminated wide string.
374 *
375 * @return Number of characters in @a str.
376 *
377 */
378size_t wstr_length(const wchar_t *wstr)
379{
380 size_t len = 0;
381
382 while (*wstr++ != 0)
383 len++;
384
385 return len;
386}
387
388/** Get number of characters in a string with size limit.
389 *
390 * @param str NULL-terminated string.
391 * @param size Maximum number of bytes to consider.
392 *
393 * @return Number of characters in string.
394 *
395 */
396size_t str_nlength(const char *str, size_t size)
397{
398 size_t len = 0;
399 size_t offset = 0;
400
401 while (str_decode(str, &offset, size) != 0)
402 len++;
403
404 return len;
405}
406
407/** Get number of characters in a string with size limit.
408 *
409 * @param str NULL-terminated string.
410 * @param size Maximum number of bytes to consider.
411 *
412 * @return Number of characters in string.
413 *
414 */
415size_t wstr_nlength(const wchar_t *str, size_t size)
416{
417 size_t len = 0;
418 size_t limit = ALIGN_DOWN(size, sizeof(wchar_t));
419 size_t offset = 0;
420
421 while ((offset < limit) && (*str++ != 0)) {
422 len++;
423 offset += sizeof(wchar_t);
424 }
425
426 return len;
427}
428
429/** Check whether character is plain ASCII.
430 *
431 * @return True if character is plain ASCII.
432 *
433 */
434bool ascii_check(wchar_t ch)
435{
436 if (WCHAR_SIGNED_CHECK(ch >= 0) && (ch <= 127))
437 return true;
438
439 return false;
440}
441
442/** Check whether character is valid
443 *
444 * @return True if character is a valid Unicode code point.
445 *
446 */
447bool chr_check(wchar_t ch)
448{
449 if (WCHAR_SIGNED_CHECK(ch >= 0) && (ch <= 1114111))
450 return true;
451
452 return false;
453}
454
455/** Compare two NULL terminated strings.
456 *
457 * Do a char-by-char comparison of two NULL-terminated strings.
458 * The strings are considered equal iff their length is equal
459 * and both strings consist of the same sequence of characters.
460 *
461 * A string is smaller than another string iff it is shorter or
462 * has a character with lower value at the first position where
463 * the strings differ.
464 *
465 * @param s1 First string to compare.
466 * @param s2 Second string to compare.
467 *
468 * @return 0 if the strings are equal, -1 if first is smaller,
469 * 1 if second smaller.
470 *
471 */
472int str_cmp(const char *s1, const char *s2)
473{
474 wchar_t c1 = 0;
475 wchar_t c2 = 0;
476
477 size_t off1 = 0;
478 size_t off2 = 0;
479
480 while (true) {
481 c1 = str_decode(s1, &off1, STR_NO_LIMIT);
482 c2 = str_decode(s2, &off2, STR_NO_LIMIT);
483
484 if (c1 < c2)
485 return -1;
486
487 if (c1 > c2)
488 return 1;
489
490 if (c1 == 0 || c2 == 0)
491 break;
492 }
493
494 return 0;
495}
496
497/** Compare two NULL terminated strings with length limit.
498 *
499 * Do a char-by-char comparison of two NULL-terminated strings.
500 * The strings are considered equal iff
501 * min(str_length(s1), max_len) == min(str_length(s2), max_len)
502 * and both strings consist of the same sequence of characters,
503 * up to max_len characters.
504 *
505 * A string is smaller than another string iff it is shorter or
506 * has a character with lower value at the first position where
507 * the strings differ, considering only first max_len characters.
508 *
509 * @param s1 First string to compare.
510 * @param s2 Second string to compare.
511 * @param max_len Maximum number of characters to consider.
512 *
513 * @return 0 if the strings are equal, -1 if first is smaller,
514 * 1 if second smaller.
515 *
516 */
517int str_lcmp(const char *s1, const char *s2, size_t max_len)
518{
519 wchar_t c1 = 0;
520 wchar_t c2 = 0;
521
522 size_t off1 = 0;
523 size_t off2 = 0;
524
525 size_t len = 0;
526
527 while (true) {
528 if (len >= max_len)
529 break;
530
531 c1 = str_decode(s1, &off1, STR_NO_LIMIT);
532 c2 = str_decode(s2, &off2, STR_NO_LIMIT);
533
534 if (c1 < c2)
535 return -1;
536
537 if (c1 > c2)
538 return 1;
539
540 if (c1 == 0 || c2 == 0)
541 break;
542
543 ++len;
544 }
545
546 return 0;
547
548}
549
550/** Copy string.
551 *
552 * Copy source string @a src to destination buffer @a dest.
553 * No more than @a size bytes are written. If the size of the output buffer
554 * is at least one byte, the output string will always be well-formed, i.e.
555 * null-terminated and containing only complete characters.
556 *
557 * @param dest Destination buffer.
558 * @param count Size of the destination buffer (must be > 0).
559 * @param src Source string.
560 *
561 */
562void str_cpy(char *dest, size_t size, const char *src)
563{
564 /* There must be space for a null terminator in the buffer. */
565 ASSERT(size > 0);
566
567 size_t src_off = 0;
568 size_t dest_off = 0;
569
570 wchar_t ch;
571 while ((ch = str_decode(src, &src_off, STR_NO_LIMIT)) != 0) {
572 if (chr_encode(ch, dest, &dest_off, size - 1) != EOK)
573 break;
574 }
575
576 dest[dest_off] = '\0';
577}
578
579/** Copy size-limited substring.
580 *
581 * Copy prefix of string @a src of max. size @a size to destination buffer
582 * @a dest. No more than @a size bytes are written. The output string will
583 * always be well-formed, i.e. null-terminated and containing only complete
584 * characters.
585 *
586 * No more than @a n bytes are read from the input string, so it does not
587 * have to be null-terminated.
588 *
589 * @param dest Destination buffer.
590 * @param count Size of the destination buffer (must be > 0).
591 * @param src Source string.
592 * @param n Maximum number of bytes to read from @a src.
593 *
594 */
595void str_ncpy(char *dest, size_t size, const char *src, size_t n)
596{
597 /* There must be space for a null terminator in the buffer. */
598 ASSERT(size > 0);
599
600 size_t src_off = 0;
601 size_t dest_off = 0;
602
603 wchar_t ch;
604 while ((ch = str_decode(src, &src_off, n)) != 0) {
605 if (chr_encode(ch, dest, &dest_off, size - 1) != EOK)
606 break;
607 }
608
609 dest[dest_off] = '\0';
610}
611
612/** Duplicate string.
613 *
614 * Allocate a new string and copy characters from the source
615 * string into it. The duplicate string is allocated via sleeping
616 * malloc(), thus this function can sleep in no memory conditions.
617 *
618 * The allocation cannot fail and the return value is always
619 * a valid pointer. The duplicate string is always a well-formed
620 * null-terminated UTF-8 string, but it can differ from the source
621 * string on the byte level.
622 *
623 * @param src Source string.
624 *
625 * @return Duplicate string.
626 *
627 */
628char *str_dup(const char *src)
629{
630 size_t size = str_size(src) + 1;
631 char *dest = malloc(size, 0);
632 ASSERT(dest);
633
634 str_cpy(dest, size, src);
635 return dest;
636}
637
638/** Duplicate string with size limit.
639 *
640 * Allocate a new string and copy up to @max_size bytes from the source
641 * string into it. The duplicate string is allocated via sleeping
642 * malloc(), thus this function can sleep in no memory conditions.
643 * No more than @max_size + 1 bytes is allocated, but if the size
644 * occupied by the source string is smaller than @max_size + 1,
645 * less is allocated.
646 *
647 * The allocation cannot fail and the return value is always
648 * a valid pointer. The duplicate string is always a well-formed
649 * null-terminated UTF-8 string, but it can differ from the source
650 * string on the byte level.
651 *
652 * @param src Source string.
653 * @param n Maximum number of bytes to duplicate.
654 *
655 * @return Duplicate string.
656 *
657 */
658char *str_ndup(const char *src, size_t n)
659{
660 size_t size = str_size(src);
661 if (size > n)
662 size = n;
663
664 char *dest = malloc(size + 1, 0);
665 ASSERT(dest);
666
667 str_ncpy(dest, size + 1, src, size);
668 return dest;
669}
670
671/** Convert wide string to string.
672 *
673 * Convert wide string @a src to string. The output is written to the buffer
674 * specified by @a dest and @a size. @a size must be non-zero and the string
675 * written will always be well-formed.
676 *
677 * @param dest Destination buffer.
678 * @param size Size of the destination buffer.
679 * @param src Source wide string.
680 */
681void wstr_to_str(char *dest, size_t size, const wchar_t *src)
682{
683 wchar_t ch;
684 size_t src_idx;
685 size_t dest_off;
686
687 /* There must be space for a null terminator in the buffer. */
688 ASSERT(size > 0);
689
690 src_idx = 0;
691 dest_off = 0;
692
693 while ((ch = src[src_idx++]) != 0) {
694 if (chr_encode(ch, dest, &dest_off, size - 1) != EOK)
695 break;
696 }
697
698 dest[dest_off] = '\0';
699}
700
701/** Find first occurence of character in string.
702 *
703 * @param str String to search.
704 * @param ch Character to look for.
705 *
706 * @return Pointer to character in @a str or NULL if not found.
707 *
708 */
709char *str_chr(const char *str, wchar_t ch)
710{
711 wchar_t acc;
712 size_t off = 0;
713 size_t last = 0;
714
715 while ((acc = str_decode(str, &off, STR_NO_LIMIT)) != 0) {
716 if (acc == ch)
717 return (char *) (str + last);
718 last = off;
719 }
720
721 return NULL;
722}
723
724/** Insert a wide character into a wide string.
725 *
726 * Insert a wide character into a wide string at position
727 * @a pos. The characters after the position are shifted.
728 *
729 * @param str String to insert to.
730 * @param ch Character to insert to.
731 * @param pos Character index where to insert.
732 @ @param max_pos Characters in the buffer.
733 *
734 * @return True if the insertion was sucessful, false if the position
735 * is out of bounds.
736 *
737 */
738bool wstr_linsert(wchar_t *str, wchar_t ch, size_t pos, size_t max_pos)
739{
740 size_t len = wstr_length(str);
741
742 if ((pos > len) || (pos + 1 > max_pos))
743 return false;
744
745 size_t i;
746 for (i = len; i + 1 > pos; i--)
747 str[i + 1] = str[i];
748
749 str[pos] = ch;
750
751 return true;
752}
753
754/** Remove a wide character from a wide string.
755 *
756 * Remove a wide character from a wide string at position
757 * @a pos. The characters after the position are shifted.
758 *
759 * @param str String to remove from.
760 * @param pos Character index to remove.
761 *
762 * @return True if the removal was sucessful, false if the position
763 * is out of bounds.
764 *
765 */
766bool wstr_remove(wchar_t *str, size_t pos)
767{
768 size_t len = wstr_length(str);
769
770 if (pos >= len)
771 return false;
772
773 size_t i;
774 for (i = pos + 1; i <= len; i++)
775 str[i - 1] = str[i];
776
777 return true;
778}
779
780/** Convert string to uint64_t (internal variant).
781 *
782 * @param nptr Pointer to string.
783 * @param endptr Pointer to the first invalid character is stored here.
784 * @param base Zero or number between 2 and 36 inclusive.
785 * @param neg Indication of unary minus is stored here.
786 * @apram result Result of the conversion.
787 *
788 * @return EOK if conversion was successful.
789 *
790 */
791static int str_uint(const char *nptr, char **endptr, unsigned int base,
792 bool *neg, uint64_t *result)
793{
794 ASSERT(endptr != NULL);
795 ASSERT(neg != NULL);
796 ASSERT(result != NULL);
797
798 *neg = false;
799 const char *str = nptr;
800
801 /* Ignore leading whitespace */
802 while (isspace(*str))
803 str++;
804
805 if (*str == '-') {
806 *neg = true;
807 str++;
808 } else if (*str == '+')
809 str++;
810
811 if (base == 0) {
812 /* Decode base if not specified */
813 base = 10;
814
815 if (*str == '0') {
816 base = 8;
817 str++;
818
819 switch (*str) {
820 case 'b':
821 case 'B':
822 base = 2;
823 str++;
824 break;
825 case 'o':
826 case 'O':
827 base = 8;
828 str++;
829 break;
830 case 'd':
831 case 'D':
832 case 't':
833 case 'T':
834 base = 10;
835 str++;
836 break;
837 case 'x':
838 case 'X':
839 base = 16;
840 str++;
841 break;
842 default:
843 str--;
844 }
845 }
846 } else {
847 /* Check base range */
848 if ((base < 2) || (base > 36)) {
849 *endptr = (char *) str;
850 return EINVAL;
851 }
852 }
853
854 *result = 0;
855 const char *startstr = str;
856
857 while (*str != 0) {
858 unsigned int digit;
859
860 if ((*str >= 'a') && (*str <= 'z'))
861 digit = *str - 'a' + 10;
862 else if ((*str >= 'A') && (*str <= 'Z'))
863 digit = *str - 'A' + 10;
864 else if ((*str >= '0') && (*str <= '9'))
865 digit = *str - '0';
866 else
867 break;
868
869 if (digit >= base)
870 break;
871
872 uint64_t prev = *result;
873 *result = (*result) * base + digit;
874
875 if (*result < prev) {
876 /* Overflow */
877 *endptr = (char *) str;
878 return EOVERFLOW;
879 }
880
881 str++;
882 }
883
884 if (str == startstr) {
885 /*
886 * No digits were decoded => first invalid character is
887 * the first character of the string.
888 */
889 str = nptr;
890 }
891
892 *endptr = (char *) str;
893
894 if (str == nptr)
895 return EINVAL;
896
897 return EOK;
898}
899
900/** Convert string to uint64_t.
901 *
902 * @param nptr Pointer to string.
903 * @param endptr If not NULL, pointer to the first invalid character
904 * is stored here.
905 * @param base Zero or number between 2 and 36 inclusive.
906 * @param strict Do not allow any trailing characters.
907 * @param result Result of the conversion.
908 *
909 * @return EOK if conversion was successful.
910 *
911 */
912int str_uint64_t(const char *nptr, char **endptr, unsigned int base,
913 bool strict, uint64_t *result)
914{
915 ASSERT(result != NULL);
916
917 bool neg;
918 char *lendptr;
919 int ret = str_uint(nptr, &lendptr, base, &neg, result);
920
921 if (endptr != NULL)
922 *endptr = (char *) lendptr;
923
924 if (ret != EOK)
925 return ret;
926
927 /* Do not allow negative values */
928 if (neg)
929 return EINVAL;
930
931 /* Check whether we are at the end of
932 the string in strict mode */
933 if ((strict) && (*lendptr != 0))
934 return EINVAL;
935
936 return EOK;
937}
938
939void order_suffix(const uint64_t val, uint64_t *rv, char *suffix)
940{
941 if (val > UINT64_C(10000000000000000000)) {
942 *rv = val / UINT64_C(1000000000000000000);
943 *suffix = 'Z';
944 } else if (val > UINT64_C(1000000000000000000)) {
945 *rv = val / UINT64_C(1000000000000000);
946 *suffix = 'E';
947 } else if (val > UINT64_C(1000000000000000)) {
948 *rv = val / UINT64_C(1000000000000);
949 *suffix = 'T';
950 } else if (val > UINT64_C(1000000000000)) {
951 *rv = val / UINT64_C(1000000000);
952 *suffix = 'G';
953 } else if (val > UINT64_C(1000000000)) {
954 *rv = val / UINT64_C(1000000);
955 *suffix = 'M';
956 } else if (val > UINT64_C(1000000)) {
957 *rv = val / UINT64_C(1000);
958 *suffix = 'k';
959 } else {
960 *rv = val;
961 *suffix = ' ';
962 }
963}
964
965void bin_order_suffix(const uint64_t val, uint64_t *rv, const char **suffix,
966 bool fixed)
967{
968 if (val > UINT64_C(1152921504606846976)) {
969 *rv = val / UINT64_C(1125899906842624);
970 *suffix = "EiB";
971 } else if (val > UINT64_C(1125899906842624)) {
972 *rv = val / UINT64_C(1099511627776);
973 *suffix = "TiB";
974 } else if (val > UINT64_C(1099511627776)) {
975 *rv = val / UINT64_C(1073741824);
976 *suffix = "GiB";
977 } else if (val > UINT64_C(1073741824)) {
978 *rv = val / UINT64_C(1048576);
979 *suffix = "MiB";
980 } else if (val > UINT64_C(1048576)) {
981 *rv = val / UINT64_C(1024);
982 *suffix = "KiB";
983 } else {
984 *rv = val;
985 if (fixed)
986 *suffix = "B ";
987 else
988 *suffix = "B";
989 }
990}
991
992/** @}
993 */
Note: See TracBrowser for help on using the repository browser.