X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=phpstr%2Fphpstr.c;h=69f577f2da079cf1221db19c90188b215063f7e4;hp=999230005bdf15c94d40e84cb8f511ae40678bcf;hb=41d6cf70475c5a4e12dae565ffcf51de7f6fe120;hpb=7038c951485d1b2afa79c9a84b8dcdcb57c9bc54 diff --git a/phpstr/phpstr.c b/phpstr/phpstr.c index 9992300..69f577f 100644 --- a/phpstr/phpstr.c +++ b/phpstr/phpstr.c @@ -4,118 +4,154 @@ #include "php.h" #include "phpstr.h" -#ifndef PHPSTR_DEFAULT_SIZE -#define PHPSTR_DEFAULT_SIZE 4096 -#endif +#define NOMEM ((size_t) -1) -PHPSTR_API phpstr *phpstr_init_ex(phpstr *buf, size_t chunk_size, zend_bool pre_alloc) +PHPSTR_API phpstr *phpstr_init_ex(phpstr *buf, size_t chunk_size, int flags) { if (!buf) { - buf = ecalloc(1, sizeof(phpstr)); + buf = pemalloc(sizeof(phpstr), flags & PHPSTR_INIT_PERSISTENT); } - buf->used = 0; - buf->size = chunk_size > 0 ? chunk_size : PHPSTR_DEFAULT_SIZE; - buf->free = pre_alloc ? buf->size : 0; - buf->data = pre_alloc ? emalloc(buf->size) : NULL; - + if (buf) { + buf->size = (chunk_size > 0) ? chunk_size : PHPSTR_DEFAULT_SIZE; + buf->pmem = (flags & PHPSTR_INIT_PERSISTENT) ? 1 : 0; + buf->data = (flags & PHPSTR_INIT_PREALLOC) ? pemalloc(buf->size, buf->pmem) : NULL; + buf->free = (flags & PHPSTR_INIT_PREALLOC) ? buf->size : 0; + buf->used = 0; + } + return buf; } -PHPSTR_API phpstr *phpstr_from_string_ex(phpstr *buf, char *string, size_t length) +PHPSTR_API phpstr *phpstr_from_string_ex(phpstr *buf, const char *string, size_t length) { - buf = phpstr_init(buf); - phpstr_append(buf, string, length); + if (buf = phpstr_init(buf)) { + if (NOMEM == phpstr_append(buf, string, length)) { + pefree(buf, buf->pmem); + buf = NULL; + } + } return buf; } -PHPSTR_API void phpstr_resize_ex(phpstr *buf, size_t len, size_t override_size) +PHPSTR_API size_t phpstr_resize_ex(phpstr *buf, size_t len, size_t override_size) { if (buf->free < len) { size_t size = override_size ? override_size : buf->size; + while ((size + buf->free) < len) { size *= 2; } if (buf->data) { - buf->data = erealloc(buf->data, buf->used + buf->free + size); + char *ptr = perealloc(buf->data, buf->used + buf->free + size, buf->pmem); + + if (ptr) { + buf->data = ptr; + } else { + return NOMEM; + } } else { - buf->data = emalloc(size); + buf->data = pemalloc(size, buf->pmem); + + if (!buf->data) { + return NOMEM; + } } buf->free += size; + return size; } + return 0; } -PHPSTR_API void phpstr_append(phpstr *buf, const char *append, size_t append_len) +PHPSTR_API size_t phpstr_append(phpstr *buf, const char *append, size_t append_len) { - phpstr_resize(buf, append_len); + if (NOMEM == phpstr_resize(buf, append_len)) { + return NOMEM; + } memcpy(buf->data + buf->used, append, append_len); buf->used += append_len; buf->free -= append_len; + return append_len; } PHPSTR_API size_t phpstr_appendf(phpstr *buf, const char *format, ...) { va_list argv; char *append; - size_t append_len; + size_t append_len, alloc; va_start(argv, format); append_len = vspprintf(&append, 0, format, argv); va_end(argv); - phpstr_append(buf, append, append_len); + alloc = phpstr_append(buf, append, append_len); efree(append); + if (NOMEM == alloc) { + return NOMEM; + } return append_len; } -PHPSTR_API void phpstr_insert(phpstr *buf, const char *insert, size_t insert_len, size_t offset) +PHPSTR_API size_t phpstr_insert(phpstr *buf, const char *insert, size_t insert_len, size_t offset) { - phpstr_resize(buf, insert_len); + if (NOMEM == phpstr_resize(buf, insert_len)) { + return NOMEM; + } memmove(buf->data + offset + insert_len, buf->data + offset, insert_len); memcpy(buf->data + offset, insert, insert_len); buf->used += insert_len; buf->free -= insert_len; + return insert_len; } PHPSTR_API size_t phpstr_insertf(phpstr *buf, size_t offset, const char *format, ...) { va_list argv; char *insert; - size_t insert_len; + size_t insert_len, alloc; va_start(argv, format); insert_len = vspprintf(&insert, 0, format, argv); va_end(argv); - phpstr_insert(buf, insert, insert_len, offset); + alloc = phpstr_insert(buf, insert, insert_len, offset); efree(insert); + if (NOMEM == alloc) { + return NOMEM; + } return insert_len; } -PHPSTR_API void phpstr_prepend(phpstr *buf, const char *prepend, size_t prepend_len) +PHPSTR_API size_t phpstr_prepend(phpstr *buf, const char *prepend, size_t prepend_len) { - phpstr_resize(buf, prepend_len); + if (NOMEM == phpstr_resize(buf, prepend_len)) { + return NOMEM; + } memmove(buf->data + prepend_len, buf->data, buf->used); memcpy(buf->data, prepend, prepend_len); buf->used += prepend_len; buf->free -= prepend_len; + return prepend_len; } PHPSTR_API size_t phpstr_prependf(phpstr *buf, const char *format, ...) { va_list argv; char *prepend; - size_t prepend_len; + size_t prepend_len, alloc; va_start(argv, format); prepend_len = vspprintf(&prepend, 0, format, argv); va_end(argv); - phpstr_prepend(buf, prepend, prepend_len); + alloc = phpstr_prepend(buf, prepend, prepend_len); efree(prepend); + if (NOMEM == alloc) { + return NOMEM; + } return prepend_len; } @@ -135,14 +171,16 @@ PHPSTR_API char *phpstr_data(const phpstr *buf, char **into, size_t *len) PHPSTR_API phpstr *phpstr_dup(const phpstr *buf) { phpstr *dup = phpstr_clone(buf); - phpstr_append(dup, buf->data, buf->used); + if (NOMEM == phpstr_append(dup, buf->data, buf->used)) { + phpstr_free(&dup); + } return dup; } -PHPSTR_API ssize_t phpstr_cut(phpstr *buf, size_t offset, size_t length) +PHPSTR_API size_t phpstr_cut(phpstr *buf, size_t offset, size_t length) { if (offset >= buf->used) { - return -1; + return 0; } if (offset + length > buf->used) { length = buf->used - offset; @@ -159,9 +197,14 @@ PHPSTR_API phpstr *phpstr_sub(const phpstr *buf, size_t offset, size_t length) return NULL; } else { size_t need = (length + offset) > buf->used ? (buf->used - offset) : (length - offset); - phpstr *sub = phpstr_init_ex(NULL, need, 1); - phpstr_append(sub, buf->data + offset, need); - sub->size = buf->size; + phpstr *sub = phpstr_init_ex(NULL, need, PHPSTR_INIT_PREALLOC | (buf->pmem ? PHPSTR_INIT_PERSISTENT:0)); + if (sub) { + if (NOMEM == phpstr_append(sub, buf->data + offset, need)) { + phpstr_free(&sub); + } else { + sub->size = buf->size; + } + } return sub; } } @@ -178,14 +221,22 @@ PHPSTR_API phpstr *phpstr_right(const phpstr *buf, size_t length) PHPSTR_API phpstr *phpstr_merge_va(phpstr *buf, unsigned argc, va_list argv) { - unsigned i = 0; + unsigned f = 0, i = 0; buf = phpstr_init(buf); - while (argc > i++) { - phpstr_free_t f = va_arg(argv, phpstr_free_t); - phpstr *current = va_arg(argv, phpstr *); - phpstr_append(buf, current->data, current->used); - FREE_PHPSTR(f, current); + if (buf) { + while (argc > i++) { + phpstr_free_t f = va_arg(argv, phpstr_free_t); + phpstr *current = va_arg(argv, phpstr *); + if (NOMEM == phpstr_append(buf, current->data, current->used)) { + f = 1; + } + FREE_PHPSTR(f, current); + } + + if (f) { + phpstr_free(&buf); + } } return buf; @@ -213,10 +264,13 @@ PHPSTR_API phpstr *phpstr_merge(unsigned argc, ...) return ret; } -PHPSTR_API void phpstr_fix(phpstr *buf) +PHPSTR_API phpstr *phpstr_fix(phpstr *buf) { - phpstr_resize_ex(buf, 1, 1); + if (NOMEM == phpstr_resize_ex(buf, 1, 1)) { + return NULL; + } buf->data[buf->used] = '\0'; + return buf; } PHPSTR_API int phpstr_cmp(phpstr *left, phpstr *right) @@ -230,22 +284,80 @@ PHPSTR_API int phpstr_cmp(phpstr *left, phpstr *right) } } -PHPSTR_API void phpstr_free(phpstr *buf) +PHPSTR_API void phpstr_reset(phpstr *buf) +{ + buf->free += buf->used; + buf->used = 0; +} + +PHPSTR_API void phpstr_dtor(phpstr *buf) { if (buf->data) { - efree(buf->data); + pefree(buf->data, buf->pmem); buf->data = NULL; } buf->used = 0; buf->free = 0; } -PHPSTR_API void phpstr_dtor(phpstr *buf) +PHPSTR_API void phpstr_free(phpstr **buf) { - if (buf) { - phpstr_free(buf); - efree(buf); + if (*buf) { + phpstr_dtor(*buf); + pefree(*buf, (*buf)->pmem); + *buf = NULL; + } +} + +PHPSTR_API size_t phpstr_chunk_buffer(phpstr **s, const char *data, size_t data_len, char **chunk, size_t chunk_size) +{ + phpstr *storage; + + *chunk = NULL; + + if (!*s) { + *s = phpstr_init_ex(NULL, chunk_size * 2, chunk_size ? PHPSTR_INIT_PREALLOC : 0); + } + storage = *s; + + if (data_len) { + phpstr_append(storage, data, data_len); + } + + if (!chunk_size) { + phpstr_data(storage, chunk, &chunk_size); + phpstr_free(s); + return chunk_size; + } + + if (storage->used >= storage->size/2) { + phpstr *avail = phpstr_left(storage, storage->size/2); + *chunk = estrndup(PHPSTR_VAL(avail), PHPSTR_LEN(avail)); + phpstr_free(&avail); + phpstr_cut(storage, 0, storage->size/2); + return storage->size/2; + } + + return 0; +} + +PHPSTR_API void phpstr_chunked_output(phpstr **s, const char *data, size_t data_len, size_t chunk_len, void (*passthru)(const char *, size_t TSRMLS_DC) TSRMLS_DC) +{ + char *chunk = NULL; + size_t got = 0; + + while (got = phpstr_chunk_buffer(s, data, data_len, &chunk, chunk_len)) { + passthru(chunk, got TSRMLS_CC); + if (!chunk_len) { + /* we already got the last chunk, + and freed all resources */ + break; + } + data = NULL; + data_len = 0; + STR_SET(chunk, NULL); } + STR_FREE(chunk); } /*