Commit 779d8308 authored by Rusty Russell's avatar Rusty Russell

Use new string.h strsplit() everywhere.

parent 458c48e8
tools/ccan_depends: tools/ccan_depends.o tools/depends.o tools/split.o tools/grab_file.o ccan/talloc/talloc.o tools/ccan_depends: tools/ccan_depends.o tools/depends.o tools/grab_file.o ccan/string/string.o ccan/talloc/talloc.o
tools/run_tests: tools/run_tests.o tools/depends.o tools/split.o tools/grab_file.o ccan/tap/tap.o ccan/talloc/talloc.o tools/run_tests: tools/run_tests.o tools/depends.o tools/grab_file.o ccan/tap/tap.o ccan/string/string.o ccan/talloc/talloc.o
tools/doc_extract: tools/doc_extract.c ccan/talloc/talloc.o tools/doc_extract: tools/doc_extract.o ccan/string/string.o ccan/talloc/talloc.o
tools/namespacize: tools/namespacize.c tools/split.o tools/grab_file.o tools/depends.o ccan/talloc/talloc.o tools/namespacize: tools/namespacize.o tools/grab_file.o tools/depends.o ccan/string/string.o ccan/talloc/talloc.o
tools/run_tests.o tools/namespacize.o tools/split.o tools/grab_file.o tools/depends.o: tools/tools.h tools/run_tests.o tools/namespacize.o tools/grab_file.o tools/depends.o: tools/tools.h
tools-clean: ccanlint-clean tools-clean: ccanlint-clean
rm -f run_tests doc_extract namespacize rm -f tools/ccan_depends tools/run_tests tools/doc_extract tools/namespacize
include tools/ccanlint/Makefile include tools/ccanlint/Makefile
include tools/_infotojson/Makefile include tools/_infotojson/Makefile
...@@ -24,7 +24,7 @@ tools/ccanlint/ccanlint: \ ...@@ -24,7 +24,7 @@ tools/ccanlint/ccanlint: \
tools/ccanlint/ccanlint.o \ tools/ccanlint/ccanlint.o \
tools/ccanlint/get_file_lines.o \ tools/ccanlint/get_file_lines.o \
tools/ccanlint/file_analysis.o \ tools/ccanlint/file_analysis.o \
ccan/talloc/talloc.o ccan/noerr/noerr.o ccan/string/string.o ccan/talloc/talloc.o ccan/noerr/noerr.o
ccanlint-clean: ccanlint-clean:
$(RM) tools/ccanlint/generated-init-tests $(RM) tools/ccanlint/generated-init-tests
......
...@@ -49,31 +49,6 @@ static void *grab_file(const void *ctx, const char *filename) ...@@ -49,31 +49,6 @@ static void *grab_file(const void *ctx, const char *filename)
return buffer; return buffer;
} }
/* This is a dumb one which copies. We could mangle instead. */
static char **split(const void *ctx, const char *text, const char *delims,
unsigned int *nump)
{
char **lines = NULL;
unsigned int max = 64, num = 0;
lines = talloc_array(ctx, char *, max+1);
while (*text != '\0') {
unsigned int len = strcspn(text, delims);
lines[num] = talloc_array(lines, char, len + 1);
memcpy(lines[num], text, len);
lines[num][len] = '\0';
text += len;
text += strspn(text, delims);
if (++num == max)
lines = talloc_realloc(ctx, lines, char *, max*=2 + 1);
}
lines[num] = NULL;
if (nump)
*nump = num;
return lines;
}
char **get_file_lines(void *ctx, const char *name, unsigned int *num_lines) char **get_file_lines(void *ctx, const char *name, unsigned int *num_lines)
{ {
char *buffer = grab_file(ctx, name); char *buffer = grab_file(ctx, name);
...@@ -81,5 +56,5 @@ char **get_file_lines(void *ctx, const char *name, unsigned int *num_lines) ...@@ -81,5 +56,5 @@ char **get_file_lines(void *ctx, const char *name, unsigned int *num_lines)
if (!buffer) if (!buffer)
err(1, "Getting file %s", name); err(1, "Getting file %s", name);
return split(buffer, buffer, "\n", num_lines); return strsplit(buffer, buffer, "\n", num_lines);
} }
...@@ -24,7 +24,7 @@ lines_from_cmd(const void *ctx, unsigned int *num, char *format, ...) ...@@ -24,7 +24,7 @@ lines_from_cmd(const void *ctx, unsigned int *num, char *format, ...)
err(1, "Reading from '%s'", cmd); err(1, "Reading from '%s'", cmd);
pclose(p); pclose(p);
return split(ctx, buffer, "\n", num); return strsplit(ctx, buffer, "\n", num);
} }
static char **get_one_deps(const void *ctx, const char *dir, unsigned int *num) static char **get_one_deps(const void *ctx, const char *dir, unsigned int *num)
......
...@@ -9,12 +9,7 @@ ...@@ -9,12 +9,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <stdbool.h> #include <stdbool.h>
#include "talloc/talloc.h" #include "talloc/talloc.h"
#include "string/string.h"
/* Is A == B ? */
#define streq(a,b) (strcmp((a),(b)) == 0)
/* Does A start with B ? */
#define strstarts(a,b) (strncmp((a),(b),strlen(b)) == 0)
/* This version adds one byte (for nul term) */ /* This version adds one byte (for nul term) */
static void *grab_file(void *ctx, const char *filename) static void *grab_file(void *ctx, const char *filename)
...@@ -46,27 +41,6 @@ static void *grab_file(void *ctx, const char *filename) ...@@ -46,27 +41,6 @@ static void *grab_file(void *ctx, const char *filename)
return buffer; return buffer;
} }
/* This is a dumb one which copies. We could mangle instead. */
static char **split(const char *text)
{
char **lines = NULL;
unsigned int max = 64, num = 0;
lines = talloc_array(text, char *, max+1);
while (*text != '\0') {
unsigned int len = strcspn(text, "\n");
lines[num] = talloc_array(lines, char, len + 1);
memcpy(lines[num], text, len);
lines[num][len] = '\0';
text += len + 1;
if (++num == max)
lines = talloc_realloc(text, lines, char *, max*=2 + 1);
}
lines[num] = NULL;
return lines;
}
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
unsigned int i, j; unsigned int i, j;
...@@ -79,7 +53,7 @@ int main(int argc, char *argv[]) ...@@ -79,7 +53,7 @@ int main(int argc, char *argv[])
file = grab_file(NULL, argv[i]); file = grab_file(NULL, argv[i]);
if (!file) if (!file)
err(1, "Reading file %s", argv[i]); err(1, "Reading file %s", argv[i]);
lines = split(file); lines = strsplit(file, file, "\n", NULL);
for (j = 0; lines[j]; j++) { for (j = 0; lines[j]; j++) {
if (streq(lines[j], "/**")) { if (streq(lines[j], "/**")) {
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#include "string/string.h" #include "ccan/string/string.h"
#include "talloc/talloc.h" #include "ccan/talloc/talloc.h"
#include "tools.h" #include "tools.h"
#define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ #define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
...@@ -30,16 +30,6 @@ static int indent = 0; ...@@ -30,16 +30,6 @@ static int indent = 0;
#define verbose_indent() (indent += 2) #define verbose_indent() (indent += 2)
#define verbose_unindent() (indent -= 2) #define verbose_unindent() (indent -= 2)
#define strstarts(str,prefix) (strncmp((str),(prefix),strlen(prefix)) == 0)
static inline bool strends(const char *str, const char *postfix)
{
if (strlen(str) < strlen(postfix))
return false;
return streq(str + strlen(str) - strlen(postfix), postfix);
}
static int unlink_no_errno(const char *filename) static int unlink_no_errno(const char *filename)
{ {
int ret = 0, serrno = errno; int ret = 0, serrno = errno;
...@@ -466,7 +456,7 @@ static struct replace *read_replacement_file(const char *depdir) ...@@ -466,7 +456,7 @@ static struct replace *read_replacement_file(const char *depdir)
return NULL; return NULL;
} }
for (line = split(file, file, "\n", NULL); *line; line++) for (line = strsplit(file, file, "\n", NULL); *line; line++)
add_replace(&repl, *line); add_replace(&repl, *line);
return repl; return repl;
} }
......
#include "tools.h"
#include "talloc/talloc.h"
#include <string.h>
/* This is a dumb one which copies. We could mangle instead. */
char **split(const void *ctx, const char *text, const char *delims,
unsigned int *nump)
{
char **lines = NULL;
unsigned int max = 64, num = 0;
lines = talloc_array(ctx, char *, max+1);
while (*text != '\0') {
unsigned int len = strcspn(text, delims);
lines[num] = talloc_array(lines, char, len + 1);
memcpy(lines[num], text, len);
lines[num][len] = '\0';
text += len;
text += strspn(text, delims);
if (++num == max)
lines = talloc_realloc(ctx, lines, char *, max*=2 + 1);
}
lines[num] = NULL;
if (nump)
*nump = num;
return lines;
}
...@@ -3,9 +3,6 @@ ...@@ -3,9 +3,6 @@
#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I." #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I."
char **split(const void *ctx, const char *text, const char *delims,
unsigned int *nump);
char **get_deps(const void *ctx, const char *dir); char **get_deps(const void *ctx, const char *dir);
void *grab_fd(const void *ctx, int fd); void *grab_fd(const void *ctx, int fd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment