Attached is an example implementation. -- Sebastian Huber, embedded brains GmbH
Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41-16 Fax : +49 89 189 47 41-09 E-Mail : sebastian.hu...@embedded-brains.de PGP : Public key available on request. Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.
>From 29a98db25e60566acd5cc413ad5fc7267570dceb Mon Sep 17 00:00:00 2001 From: Sebastian Huber <sebastian.hu...@embedded-brains.de> Date: Thu, 13 Sep 2018 11:09:34 +0200 Subject: [PATCH] Add <rtems/string.h> --- cpukit/headers.am | 1 + cpukit/include/rtems/string.h | 82 ++++++++++++++++++++++ cpukit/libcsupport/Makefile.am | 2 + cpukit/libcsupport/src/rtemsstrtol.c | 126 ++++++++++++++++++++++++++++++++++ cpukit/libcsupport/src/rtemsstrtoul.c | 105 ++++++++++++++++++++++++++++ 5 files changed, 316 insertions(+) create mode 100644 cpukit/include/rtems/string.h create mode 100644 cpukit/libcsupport/src/rtemsstrtol.c create mode 100644 cpukit/libcsupport/src/rtemsstrtoul.c diff --git a/cpukit/headers.am b/cpukit/headers.am index a848690e3a..75e49aaab3 100644 --- a/cpukit/headers.am +++ b/cpukit/headers.am @@ -193,6 +193,7 @@ include_rtems_HEADERS += include/rtems/spurious.h include_rtems_HEADERS += include/rtems/stackchk.h include_rtems_HEADERS += include/rtems/status-checks.h include_rtems_HEADERS += include/rtems/stdio-redirect.h +include_rtems_HEADERS += include/rtems/string.h include_rtems_HEADERS += include/rtems/stringto.h include_rtems_HEADERS += include/rtems/sysinit.h include_rtems_HEADERS += include/rtems/system.h diff --git a/cpukit/include/rtems/string.h b/cpukit/include/rtems/string.h new file mode 100644 index 0000000000..b674797442 --- /dev/null +++ b/cpukit/include/rtems/string.h @@ -0,0 +1,82 @@ +/*- + * SPDX-License-Identifier: BSD-3-Clause + * + * Copyright (c) 1982, 1988, 1991, 1993 + * The Regents of the University of California. All rights reserved. + * (c) UNIX System Laboratories, Inc. + * All or some portions of this file are derived from material licensed + * to the University of California by American Telephone and Telegraph + * Co. or Unix System Laboratories, Inc. and are reproduced herein with + * the permission of UNIX System Laboratories, Inc. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#ifndef _RTEMS_STRING_H +#define _RTEMS_STRING_H + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#define rtems_isspace(c) \ + ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) + +#define rtems_isascii(c) \ + (((c) & ~0x7f) == 0) + +#define rtems_isupper(c) \ + ((c) >= 'A' && (c) <= 'Z') + +#define rtems_islower(c) \ + ((c) >= 'a' && (c) <= 'z') + +#define rtems_isalpha(c) \ + (rtems_isupper(c) || rtems_islower(c)) + +#define rtems_isdigit(c) \ + ((c) >= '0' && (c) <= '9') + +#define rtems_isxdigit(c) \ + (rtems_isdigit(c) || ((c) >= 'A' && (c) <= 'F') || ((c) >= 'a' && (c) <= 'f')) + +#define rtems_isprint(c) \ + ((c) >= ' ' && (c) <= '~') + +#define rtems_toupper(c) \ + ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z'))) + +#define rtems_tolower(c) \ + ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z'))) + +long rtems_strtol(const char *nptr, char **endptr, int base); + +unsigned long rtems_strtoul(const char *nptr, char **endptr, int base); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* _RTEMS_STRING_H */ diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am index 00bbdfc9b9..fe159b80f7 100644 --- a/cpukit/libcsupport/Makefile.am +++ b/cpukit/libcsupport/Makefile.am @@ -118,6 +118,8 @@ libcsupport_a_SOURCES += src/consolesimpleread.c libcsupport_a_SOURCES += src/consolesimpletask.c libcsupport_a_SOURCES += src/printertask.c libcsupport_a_SOURCES += src/printerfprintfputc.c +libcsupport_a_SOURCES += src/rtemsstrtol.c +libcsupport_a_SOURCES += src/rtemsstrtoul.c libcsupport_a_SOURCES += $(LIBC_GLUE_C_FILES) $(PASSWORD_GROUP_C_FILES) \ $(TERMINAL_IDENTIFICATION_C_FILES) $(SYSTEM_CALL_C_FILES) \ diff --git a/cpukit/libcsupport/src/rtemsstrtol.c b/cpukit/libcsupport/src/rtemsstrtol.c new file mode 100644 index 0000000000..234dcdea4e --- /dev/null +++ b/cpukit/libcsupport/src/rtemsstrtol.c @@ -0,0 +1,126 @@ +/*- + * SPDX-License-Identifier: BSD-3-Clause + * + * Copyright (c) 1990, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Chris Torek. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * From: @(#)strtol.c 8.1 (Berkeley) 6/4/93 + */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD: head/sys/libkern/strtol.c 326023 2017-11-20 19:43:44Z pfg $"); + +#include <rtems/string.h> +#include <limits.h> + +/* + * Convert a string to a long integer. + * + * Ignores `locale' stuff. Assumes that the upper and lower case + * alphabets and digits are each contiguous. + */ +long +rtems_strtol(const char *nptr, char **endptr, int base) +{ + const char *s = nptr; + unsigned long acc; + unsigned char c; + unsigned long cutoff; + int neg = 0, any, cutlim; + + /* + * Skip white space and pick up leading +/- sign if any. + * If base is 0, allow 0x for hex and 0 for octal, else + * assume decimal; if base is already 16, allow 0x. + */ + do { + c = *s++; + } while (rtems_isspace(c)); + if (c == '-') { + neg = 1; + c = *s++; + } else if (c == '+') + c = *s++; + if ((base == 0 || base == 16) && + c == '0' && (*s == 'x' || *s == 'X')) { + c = s[1]; + s += 2; + base = 16; + } + if (base == 0) + base = c == '0' ? 8 : 10; + + /* + * Compute the cutoff value between legal numbers and illegal + * numbers. That is the largest legal value, divided by the + * base. An input number that is greater than this value, if + * followed by a legal input character, is too big. One that + * is equal to this value may be valid or not; the limit + * between valid and invalid numbers is then based on the last + * digit. For instance, if the range for longs is + * [-2147483648..2147483647] and the input base is 10, + * cutoff will be set to 214748364 and cutlim to either + * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated + * a value > 214748364, or equal but the next digit is > 7 (or 8), + * the number is too big, and we will return a range error. + * + * Set any if any `digits' consumed; make it negative to indicate + * overflow. + */ + cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; + cutlim = cutoff % (unsigned long)base; + cutoff /= (unsigned long)base; + for (acc = 0, any = 0;; c = *s++) { + if (!rtems_isascii(c)) + break; + if (rtems_isdigit(c)) + c -= '0'; + else if (rtems_isalpha(c)) + c -= rtems_isupper(c) ? 'A' - 10 : 'a' - 10; + else + break; + if (c >= base) + break; + if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) + any = -1; + else { + any = 1; + acc *= base; + acc += c; + } + } + if (any < 0) { + acc = neg ? LONG_MIN : LONG_MAX; + } else if (neg) + acc = -acc; + if (endptr != NULL) + *endptr = __DECONST(char *, any ? s - 1 : nptr); + return (acc); +} diff --git a/cpukit/libcsupport/src/rtemsstrtoul.c b/cpukit/libcsupport/src/rtemsstrtoul.c new file mode 100644 index 0000000000..8644790e6b --- /dev/null +++ b/cpukit/libcsupport/src/rtemsstrtoul.c @@ -0,0 +1,105 @@ +/*- + * SPDX-License-Identifier: BSD-3-Clause + * + * Copyright (c) 1990, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Chris Torek. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * From: @(#)strtoul.c 8.1 (Berkeley) 6/4/93 + */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD: head/sys/libkern/strtoul.c 326023 2017-11-20 19:43:44Z pfg $"); + +#include <rtems/string.h> +#include <limits.h> + +/* + * Convert a string to an unsigned long integer. + * + * Ignores `locale' stuff. Assumes that the upper and lower case + * alphabets and digits are each contiguous. + */ +unsigned long +rtems_strtoul(const char *nptr, char **endptr, int base) +{ + const char *s = nptr; + unsigned long acc; + unsigned char c; + unsigned long cutoff; + int neg = 0, any, cutlim; + + /* + * See strtol for comments as to the logic used. + */ + do { + c = *s++; + } while (rtems_isspace(c)); + if (c == '-') { + neg = 1; + c = *s++; + } else if (c == '+') + c = *s++; + if ((base == 0 || base == 16) && + c == '0' && (*s == 'x' || *s == 'X')) { + c = s[1]; + s += 2; + base = 16; + } + if (base == 0) + base = c == '0' ? 8 : 10; + cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; + cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; + for (acc = 0, any = 0;; c = *s++) { + if (!rtems_isascii(c)) + break; + if (rtems_isdigit(c)) + c -= '0'; + else if (rtems_isalpha(c)) + c -= rtems_isupper(c) ? 'A' - 10 : 'a' - 10; + else + break; + if (c >= base) + break; + if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) + any = -1; + else { + any = 1; + acc *= base; + acc += c; + } + } + if (any < 0) { + acc = ULONG_MAX; + } else if (neg) + acc = -acc; + if (endptr != NULL) + *endptr = __DECONST(char *, any ? s - 1 : nptr); + return (acc); +} -- 2.13.7
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel