1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/** @file
String and text processing routines for libts
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "ts/ink_platform.h"
#include "ts/ink_assert.h"
#include <assert.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#define INK_MAX_STRING_ARRAY_SIZE 128
/*-------------------------------------------------------------------------
-------------------------------------------------------------------------*/
char *
ink_memcpy_until_char(char *dst, char *src, unsigned int n, unsigned char c)
{
unsigned int i = 0;
for (; ((i < n) && (((unsigned char)src[i]) != c)); i++)
dst[i] = src[i];
return &src[i];
}
/*---------------------------------------------------------------------------*
char *ink_string_concatenate_strings(char *dest, ...)
This routine concatenates a variable number of strings into the buffer
<dest>, returning the pointer to <dest>. The sequence of strings must end
with NULL.
*---------------------------------------------------------------------------*/
char *
ink_string_concatenate_strings(char *dest, ...)
{
va_list ap;
char *s, *d;
va_start(ap, dest);
d = dest;
while (1) {
s = va_arg(ap, char *);
if (s == NULL)
break;
while (*s)
*d++ = *s++;
}
*d++ = '\0';
va_end(ap);
return (dest);
} /* End ink_string_concatenate_strings */
/*---------------------------------------------------------------------------*
char *ink_string_concatenate_strings_n(char *dest, int n, ...)
This routine concatenates a variable number of strings into the buffer
<dest>, returning the pointer to <dest>. The sequence of strings must end
with NULL. A NUL will always be placed after <dest>, and no more than
<n> - 1 characters will ever be written to <dest>.
*---------------------------------------------------------------------------*/
char *
ink_string_concatenate_strings_n(char *dest, int n, ...)
{
va_list ap;
char *s, *d;
va_start(ap, n);
d = dest;
while (n > 1) {
s = va_arg(ap, char *);
if (s == NULL)
break;
while (*s && (n > 1)) {
*d++ = *s++;
n--;
}
}
if (n >= 1)
*d = '\0';
va_end(ap);
return (dest);
} /* End ink_string_concatenate_strings_n */
/*---------------------------------------------------------------------------*
char *ink_string_append(char *dest, char *src, int n)
This routine appends <src> to the end of <dest>, but it insures the
string pointed to by <dest> never grows beyond <n> characters, including
the terminating NUL. A NUL is always written if n > 0.
*---------------------------------------------------------------------------*/
char *
ink_string_append(char *dest, char *src, int n)
{
char *d, *s, *last_valid_char;
ink_assert(src != NULL);
ink_assert(dest != NULL);
ink_assert(n >= 0);
if (n == 0)
return (dest);
last_valid_char = dest + n - 1;
/* Scan For End Of Dest */
for (d = dest; (d <= last_valid_char) && (*d != '\0'); d++)
;
/* If At End Of String, NUL Terminate & Exit */
if (d > last_valid_char) {
dest[n - 1] = '\0';
return (dest);
}
/* Append src To String */
s = src;
while ((d < last_valid_char) && (*s != '\0'))
*d++ = *s++;
/* If At End Of String, NUL Terminate & Exit */
if (d > last_valid_char)
dest[n - 1] = '\0';
else
*d = '\0';
return (dest);
} /* End ink_string_append */
#if !HAVE_STRLCPY
size_t
ink_strlcpy(char *dst, const char *src, size_t siz)
{
char *d = dst;
const char *s = src;
size_t n = siz;
/* Copy as many bytes as will fit */
if (n != 0) {
while (--n != 0) {
if ((*d++ = *s++) == '\0')
break;
}
}
/* Not enough room in dst, add NUL and traverse rest of src */
if (n == 0) {
if (siz != 0)
*d = '\0'; /* NUL-terminate dst */
while (*s++)
;
}
return (s - src - 1); /* count does not include NUL */
}
#endif
#if !HAVE_STRLCAT
size_t
ink_strlcat(char *dst, const char *src, size_t siz)
{
char *d = dst;
const char *s = src;
size_t n = siz;
size_t dlen;
/* Find the end of dst and adjust bytes left but don't go past end */
while (n-- != 0 && *d != '\0')
d++;
dlen = d - dst;
n = siz - dlen;
if (n == 0)
return (dlen + strlen(s));
while (*s != '\0') {
if (n != 1) {
*d++ = *s;
n--;
}
s++;
}
*d = '\0';
return (dlen + (s - src)); /* count does not include NUL */
}
#endif
|