X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.c;h=1eddf7e934ab9f658cadb9fe4e7a2c34b8312b15;hp=eeaff6f17f644233f7aa1772ab27c69aad69f81f;hb=e9704966d0d91d96eefdfad040540ae76d3030ec;hpb=03a596908b779bbb4b7c2f739c5e238f8c5d6390 diff --git a/tools/tools.c b/tools/tools.c index eeaff6f1..1eddf7e9 100644 --- a/tools/tools.c +++ b/tools/tools.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -15,9 +16,10 @@ #include #include #include +#include #include "tools.h" -static char *tmpdir = NULL; +static const char *tmpdir = NULL; bool tools_verbose = false; /* Ten minutes. */ @@ -71,7 +73,7 @@ char *run_with_timeout(const void *ctx, const char *cmd, int p[2]; char *ret; int status, ms; - struct timeval start, end; + struct timeval start; *ok = false; if (pipe(p) != 0) @@ -81,14 +83,15 @@ char *run_with_timeout(const void *ctx, const char *cmd, if (tools_verbose) printf("Running: %s\n", cmd); - gettimeofday(&start, NULL); + /* Always flush buffers before fork! */ + fflush(stdout); + start = time_now(); pid = fork(); if (pid == -1) { close_noerr(p[0]); close_noerr(p[1]); return talloc_asprintf(ctx, "Failed to fork: %s", strerror(errno)); - return NULL; } if (pid == 0) { @@ -103,8 +106,7 @@ char *run_with_timeout(const void *ctx, const char *cmd, signal(SIGALRM, killme); itim.it_interval.tv_sec = itim.it_interval.tv_usec = 0; - itim.it_value.tv_sec = *timeout_ms / 1000; - itim.it_value.tv_usec = (*timeout_ms % 1000) * 1000; + itim.it_value = time_from_msec(*timeout_ms); setitimer(ITIMER_REAL, &itim, NULL); status = system(cmd); @@ -120,13 +122,7 @@ char *run_with_timeout(const void *ctx, const char *cmd, if (waitpid(pid, &status, 0) != pid) err(1, "Failed to wait for child"); - gettimeofday(&end, NULL); - if (end.tv_usec < start.tv_usec) { - end.tv_usec += 1000000; - end.tv_sec--; - } - ms = (end.tv_sec - start.tv_sec) * 1000 - + (end.tv_usec - start.tv_usec) / 1000; + ms = time_to_msec(time_sub(time_now(), start)); if (ms > *timeout_ms) *timeout_ms = 0; else @@ -174,7 +170,7 @@ bool run_command(const void *ctx, unsigned int *time_ms, char **output, return false; } -static int unlink_all(char *dir) +static int unlink_all(const char *dir) { char cmd[strlen(dir) + sizeof("rm -rf ")]; sprintf(cmd, "rm -rf %s", dir); @@ -185,7 +181,7 @@ static int unlink_all(char *dir) return 0; } -char *temp_dir(const void *ctx) +const char *temp_dir(const void *ctx) { /* For first call, create dir. */ while (!tmpdir) { @@ -210,19 +206,20 @@ char *temp_dir(const void *ctx) return tmpdir; } -char *maybe_temp_file(const void *ctx, const char *extension, bool keep, - const char *srcname) +int unlink_file_destructor(char *filename) +{ + unlink(filename); + return 0; +} + +char *temp_file(const void *ctx, const char *extension, const char *srcname) { unsigned baselen; char *f, *suffix = talloc_strdup(ctx, ""); struct stat st; unsigned int count = 0; - if (!keep) - srcname = talloc_basename(ctx, srcname); - else - assert(srcname[0] == '/'); - + srcname = talloc_basename(ctx, srcname); if (strrchr(srcname, '.')) baselen = strrchr(srcname, '.') - srcname; else @@ -230,7 +227,7 @@ char *maybe_temp_file(const void *ctx, const char *extension, bool keep, do { f = talloc_asprintf(ctx, "%s/%.*s%s%s", - keep ? "" : temp_dir(ctx), + temp_dir(ctx), baselen, srcname, suffix, extension); talloc_free(suffix);