]> git.ozlabs.org Git - ccan/commitdiff
Moving grad_fd to string.c
authordinesh <dinesh@dinesh-laptop>
Sun, 3 Aug 2008 18:14:11 +0000 (23:44 +0530)
committerdinesh <dinesh@dinesh-laptop>
Sun, 3 Aug 2008 18:14:11 +0000 (23:44 +0530)
ccan/string/string.c
ccan/string/string.h
tools/grab_file.c

index b1de8eda915bbf3ee81fc2e9f1df96603eb6084b..7686813c9a392ab5cf94c8b624e3037e28fbd601 100644 (file)
@@ -6,6 +6,10 @@
 #include <stdlib.h>
 #include "string.h"
 #include "talloc/talloc.h"
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <errno.h>
 
 char **strsplit(const void *ctx, const char *string, const char *delims,
                 unsigned int *nump)
@@ -42,3 +46,24 @@ char *strjoin(const void *ctx, char *strings[], const char *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;
+}
index b2cd814c1bde23179f53903084a8f271bb549e17..14a9c2c8fdba86eedbb4c0845c5cd24d69035b34 100644 (file)
@@ -102,4 +102,8 @@ char **strsplit(const void *ctx, const char *string, const char *delims,
  *     }
  */
 char *strjoin(const void *ctx, char *strings[], const char *delim);
+
+void *grab_fd(const void *ctx, int fd);
+
+void *grab_file(const void *ctx, const char *filename);
 #endif /* CCAN_STRING_H */
index 8bd18f22553949a14d1fddfabd177018e412d172..3c9eee6d33c55688b1a0c0fc9150d1c0b9795871 100644 (file)
@@ -16,7 +16,7 @@ static int close_no_errno(int fd)
        return ret;
 }
 
-void *grab_fd(const void *ctx, int fd)
+/*void *grab_fd(const void *ctx, int fd)
 {
        int ret;
        unsigned int max = 16384, size = 0;
@@ -35,7 +35,7 @@ void *grab_fd(const void *ctx, int fd)
                buffer[size] = '\0';
 
        return buffer;
-}
+}*/
 
 /* This version adds one byte (for nul term) */
 void *grab_file(const void *ctx, const char *filename)