X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fnamespacize.c;h=545b28bb1a4f7d2dcd138b9a4fe9325907b81502;hp=0ed36aa6acf8f7ae8ae2b28636b6c80af3cdeba0;hb=d2a4d6b49bc260bd0979965f4e4ef62b40b19efe;hpb=570c9c555f076e74f46141bb42b5d1d7ac89f632 diff --git a/tools/namespacize.c b/tools/namespacize.c index 0ed36aa6..545b28bb 100644 --- a/tools/namespacize.c +++ b/tools/namespacize.c @@ -102,15 +102,6 @@ static void add_replace_tok(struct replace **repl, const char *s) *repl = new; } -static char *basename(const void *ctx, const char *dir) -{ - char *p = strrchr(dir, '/'); - - if (!p) - return (char *)dir; - return talloc_strdup(ctx, p+1); -} - static void look_for_macros(char *contents, struct replace **repl) { char *p; @@ -269,7 +260,7 @@ static void analyze_headers(const char *dir, struct replace **repl) char *hdr, *contents; /* Get hold of header, assume that's it. */ - hdr = talloc_asprintf(dir, "%s/%s.h", dir, basename(dir, dir)); + hdr = talloc_asprintf(dir, "%s/%s.h", dir, talloc_basename(dir, dir)); contents = grab_file(dir, hdr, NULL); if (!contents) err(1, "Reading %s", hdr); @@ -415,7 +406,7 @@ static void setup_adjust_files(const char *dir, static void rename_files(const struct adjusted *adj) { while (adj) { - if (rename(adj->tmpfile, adj->file) != 0) + if (!move_file(adj->tmpfile, adj->file)) warn("Could not rename over '%s', we're in trouble", adj->file); adj = adj->next; @@ -459,27 +450,14 @@ static struct replace *read_replacement_file(const char *depdir) return repl; } -static char *parent_dir(const void *ctx, const char *dir) -{ - char *parent, *slash; - - parent = talloc_strdup(ctx, dir); - slash = strrchr(parent, '/'); - if (slash) - *slash = '\0'; - else - parent = talloc_strdup(ctx, "."); - return parent; -} - static void adjust_dir(const char *dir) { - char *parent = parent_dir(talloc_autofree_context(), dir); + char *parent = talloc_dirname(talloc_autofree_context(), dir); char **deps; verbose("Adjusting %s\n", dir); verbose_indent(); - for (deps = get_deps(parent, dir, false); *deps; deps++) { + for (deps = get_deps(parent, dir, false, NULL); *deps; deps++) { char *depdir; struct adjusted *adj = NULL; struct replace *repl; @@ -500,8 +478,8 @@ static void adjust_dir(const char *dir) static void adjust_dependents(const char *dir) { - char *parent = parent_dir(NULL, dir); - char *base = basename(parent, dir); + char *parent = talloc_dirname(NULL, dir); + char *base = talloc_basename(parent, dir); char **file; verbose("Looking for dependents in %s\n", parent); @@ -510,15 +488,18 @@ static void adjust_dependents(const char *dir) char *info, **deps; bool isdep = false; - if (basename(*file, *file)[0] == '.') + if (talloc_basename(*file, *file)[0] == '.') continue; info = talloc_asprintf(*file, "%s/_info", *file); if (access(info, R_OK) != 0) continue; - for (deps = get_deps(*file, *file, false); *deps; deps++) { - if (streq(*deps, base)) + for (deps = get_deps(*file, *file, false, NULL); + *deps; deps++) { + if (!strstarts(*deps, "ccan/")) + continue; + if (streq(*deps + strlen("ccan/"), base)) isdep = true; } if (isdep)