X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.c;h=c8697320a9fd5616c5dfa1e04af686efec0c1a87;hp=77f77f0fe6741b09904f64d31ddd147871f7e40b;hb=655bae650e868e037d3db9f6e475f59b58e3e078;hpb=298dc1222201440ccfbf39f59a68b37aa910ff0c diff --git a/tools/tools.c b/tools/tools.c index 77f77f0f..c8697320 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) @@ -83,7 +85,7 @@ char *run_with_timeout(const void *ctx, const char *cmd, /* Always flush buffers before fork! */ fflush(stdout); - gettimeofday(&start, NULL); + start = time_now(); pid = fork(); if (pid == -1) { close_noerr(p[0]); @@ -105,8 +107,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); @@ -122,13 +123,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 @@ -176,7 +171,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); @@ -187,7 +182,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) { @@ -218,8 +213,7 @@ int unlink_file_destructor(char *filename) return 0; } -char *maybe_temp_file(const void *ctx, const char *extension, bool keep, - const char *srcname) +char *temp_file(const void *ctx, const char *extension, const char *srcname) { unsigned baselen; char *f, *suffix = talloc_strdup(ctx, ""); @@ -242,10 +236,7 @@ char *maybe_temp_file(const void *ctx, const char *extension, bool keep, } while (lstat(f, &st) == 0); if (tools_verbose) - printf("Creating %sfile %s\n", keep ? "" : "temporary ", f); - - if (!keep) - talloc_set_destructor(f, unlink_file_destructor); + printf("Creating file %s\n", f); talloc_free(suffix); return f;