]> git.ozlabs.org Git - ccan/blobdiff - ccan/string/string.c
display a-z index for module search and some fixes
[ccan] / ccan / string / string.c
index b1de8eda915bbf3ee81fc2e9f1df96603eb6084b..f0d0fd4f3ff289ce8cb75f36ec3f7d7803a94649 100644 (file)
@@ -6,6 +6,11 @@
 #include <stdlib.h>
 #include "string.h"
 #include "talloc/talloc.h"
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <errno.h>
+#include "noerr/noerr.h"
 
 char **strsplit(const void *ctx, const char *string, const char *delims,
                 unsigned int *nump)
@@ -42,3 +47,46 @@ char *strjoin(const void *ctx, char *strings[], const char *delim)
        }
        return ret;
 }
+
+void *grab_fd(const void *ctx, int fd, size_t *size)
+{
+       int ret;
+       size_t max = 16384, s;
+       char *buffer;
+
+       if (!size)
+               size = &s;
+       *size = 0;
+
+       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, size_t *size)
+{
+       int fd;
+       char *buffer;
+
+       if (!filename)
+               fd = dup(STDIN_FILENO);
+       else
+               fd = open(filename, O_RDONLY, 0);
+
+       if (fd < 0)
+               return NULL;
+
+       buffer = grab_fd(ctx, fd, size);
+       close_noerr(fd);
+       return buffer;
+}