| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <config.h> |
|
|
| |
| #include "amemxfrm.h" |
|
|
| #include <errno.h> |
| #include <stdlib.h> |
| #include <string.h> |
|
|
| char * |
| amemxfrm (char *s, size_t n, char *resultbuf, size_t *lengthp) |
| { |
| |
| char *result; |
| size_t length; |
| size_t allocated; |
|
|
| char orig_sentinel; |
|
|
| |
| if (resultbuf != NULL && *lengthp > 0) |
| { |
| result = resultbuf; |
| allocated = *lengthp; |
| } |
| else |
| { |
| allocated = (n > 0 ? n : 1); |
| result = (char *) malloc (allocated); |
| if (result == NULL) |
| goto out_of_memory_2; |
| } |
| length = 0; |
|
|
| |
| orig_sentinel = s[n]; |
| s[n] = '\0'; |
|
|
| |
| |
| |
| { |
| const char *p_end = s + n + 1; |
| const char *p; |
|
|
| p = s; |
| for (;;) |
| { |
| |
| size_t l = strlen (p); |
|
|
| for (;;) |
| { |
| size_t k; |
|
|
| |
| |
| |
| |
| |
| |
| if (3 * l >= allocated - length) |
| { |
| |
| size_t new_allocated; |
| char *new_result; |
|
|
| new_allocated = length + 3 * l + 1; |
| if (new_allocated < 2 * allocated) |
| new_allocated = 2 * allocated; |
| if (new_allocated < 64) |
| new_allocated = 64; |
| if (result == resultbuf) |
| new_result = (char *) malloc (new_allocated); |
| else |
| new_result = (char *) realloc (result, new_allocated); |
| if (new_result != NULL) |
| { |
| allocated = new_allocated; |
| result = new_result; |
| } |
| } |
|
|
| errno = 0; |
| k = strxfrm (result + length, p, allocated - length); |
| if (errno != 0) |
| goto fail; |
| if (k >= allocated - length) |
| { |
| |
| size_t new_allocated; |
| char *new_result; |
|
|
| new_allocated = length + k + 1; |
| if (new_allocated < 2 * allocated) |
| new_allocated = 2 * allocated; |
| if (new_allocated < 64) |
| new_allocated = 64; |
| if (result == resultbuf) |
| new_result = (char *) malloc (new_allocated); |
| else |
| new_result = (char *) realloc (result, new_allocated); |
| if (new_result == NULL) |
| goto out_of_memory_1; |
| allocated = new_allocated; |
| result = new_result; |
| } |
| else |
| { |
| length += k; |
| break; |
| } |
| } |
|
|
| p = p + l + 1; |
| if (p == p_end) |
| break; |
| result[length] = '\0'; |
| length++; |
| } |
| } |
|
|
| |
| |
| |
| if (result != resultbuf && length + 1 < allocated) |
| { |
| if ((length > 0 ? length : 1) <= *lengthp) |
| { |
| memcpy (resultbuf, result, length); |
| free (result); |
| result = resultbuf; |
| } |
| else |
| { |
| char *memory = (char *) realloc (result, length > 0 ? length : 1); |
| if (memory != NULL) |
| result = memory; |
| } |
| } |
|
|
| s[n] = orig_sentinel; |
| *lengthp = length; |
| return result; |
|
|
| fail: |
| if (result != resultbuf) |
| free (result); |
| s[n] = orig_sentinel; |
| return NULL; |
|
|
| out_of_memory_1: |
| if (result != resultbuf) |
| free (result); |
| s[n] = orig_sentinel; |
| out_of_memory_2: |
| errno = ENOMEM; |
| return NULL; |
| } |
|
|