X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fstring%2Fstring.c;h=6e473af36cf3862580e6c1f706d46861e99dc874;hp=d3d17bbd3156eb065ece87e94f28810fddf7a465;hb=fe35ee039b64d8a585a9766b293b1393b4f8c787;hpb=458c48e8b27a2eff90b51610e86a870e103a28ad;ds=sidebyside diff --git a/ccan/string/string.c b/ccan/string/string.c index d3d17bbd..6e473af3 100644 --- a/ccan/string/string.c +++ b/ccan/string/string.c @@ -6,6 +6,11 @@ #include #include "string.h" #include "talloc/talloc.h" +#include +#include +#include +#include +#include "noerr/noerr.h" char **strsplit(const void *ctx, const char *string, const char *delims, unsigned int *nump) @@ -30,4 +35,54 @@ char **strsplit(const void *ctx, const char *string, const char *delims, *nump = num; return lines; } - + +char *strjoin(const void *ctx, char *strings[], const char *delim) +{ + unsigned int i; + char *ret = talloc_strdup(ctx, ""); + + for (i = 0; strings[i]; i++) { + ret = talloc_append_string(ret, strings[i]); + ret = talloc_append_string(ret, delim); + } + return ret; +} + +void *grab_fd(const void *ctx, int fd) +{ + int ret; + unsigned int max = 16384, size = 0; + char *buffer; + + buffer = talloc_array(ctx, char, max+1); + while ((ret = read(fd, buffer + size, max - size)) > 0) { + size += ret; + if (size == max) + buffer = talloc_realloc(ctx, buffer, char, max*=2 + 1); + } + if (ret < 0) { + talloc_free(buffer); + buffer = NULL; + } else + buffer[size] = '\0'; + + return buffer; +} + +void *grab_file(const void *ctx, const char *filename) +{ + int fd; + char *buffer; + + if (streq(filename, "-")) + fd = dup(STDIN_FILENO); + else + fd = open(filename, O_RDONLY, 0); + + if (fd < 0) + return NULL; + + buffer = grab_fd(ctx, fd); + close_noerr(fd); + return buffer; +}