X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-ust-events%2Fgen-ust-events.c;h=3cfadbe9976a70aa6bdc16240707d49160ca01b0;hp=2f4dc275e1878a1dd89c791cd388da7b6fe82e5b;hb=ae941114b338a4e6afb683345ee5f4fcc4296e01;hpb=70dac0d716db5de1ede7448ab4092741d20bf248 diff --git a/tests/utils/testapp/gen-ust-events/gen-ust-events.c b/tests/utils/testapp/gen-ust-events/gen-ust-events.c index 2f4dc275e..3cfadbe99 100644 --- a/tests/utils/testapp/gen-ust-events/gen-ust-events.c +++ b/tests/utils/testapp/gen-ust-events/gen-ust-events.c @@ -27,15 +27,23 @@ #include #include #include +#include +#include +#include +#include +#include "utils.h" #define TRACEPOINT_DEFINE #include "tp.h" void create_file(const char *path) { + static bool file_created = false; int ret; - assert(path); + if (!path || file_created) { + return; + } ret = creat(path, S_IRWXU); if (ret < 0) { @@ -44,20 +52,48 @@ void create_file(const char *path) } (void) close(ret); + file_created = true; +} + +static +void wait_on_file(const char *path) +{ + if (!path) { + return; + } + for (;;) { + int ret; + struct stat buf; + + ret = stat(path, &buf); + if (ret == -1 && errno == ENOENT) { + (void) poll(NULL, 0, 10); /* 10 ms delay */ + continue; /* retry */ + } + if (ret) { + perror("stat"); + exit(EXIT_FAILURE); + } + break; /* found */ + } } int main(int argc, char **argv) { - int i, netint; + unsigned int i, netint; long values[] = { 1, 2, 3 }; char text[10] = "test"; double dbl = 2.0; float flt = 2222.0; - unsigned int nr_iter = 100; + int nr_iter = 100, ret = 0; useconds_t nr_usec = 0; - char *tmp_file_path = NULL; + char *after_first_event_file_path = NULL; + char *before_last_event_file_path = NULL; if (argc >= 2) { + /* + * If nr_iter is negative, do an infinite tracing loop. + */ nr_iter = atoi(argv[1]); } @@ -67,23 +103,38 @@ int main(int argc, char **argv) } if (argc >= 4) { - tmp_file_path = argv[3]; + after_first_event_file_path = argv[3]; + } + + if (argc >= 5) { + before_last_event_file_path = argv[4]; } - for (i = 0; i < nr_iter; i++) { + for (i = 0; nr_iter < 0 || i < nr_iter; i++) { + if (nr_iter >= 0 && i == nr_iter - 1) { + /* + * Wait on synchronization before writing last + * event. + */ + wait_on_file(before_last_event_file_path); + } netint = htonl(i); - tracepoint(tp, tptest, i, netint, values, text, strlen(text), dbl, - flt); + tracepoint(tp, tptest, i, netint, values, text, + strlen(text), dbl, flt); /* - * First loop we create the file if asked to indicate that at least one - * tracepoint has been hit. + * First loop we create the file if asked to indicate + * that at least one tracepoint has been hit. */ - if (i == 0 && tmp_file_path) { - create_file(tmp_file_path); + create_file(after_first_event_file_path); + if (nr_usec) { + if (usleep_safe(nr_usec)) { + ret = -1; + goto end; + } } - usleep(nr_usec); } - return 0; +end: + exit(!ret ? EXIT_SUCCESS : EXIT_FAILURE); }