X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fdestroy.c;h=661c0a2356ae42acdf7dfb0fbd047a7bff45e5b0;hb=4ba92f185fb1d0b112cbc804a261939f5f81dc34;hp=50d5bb441a4476e8624a3cbfba095adaf2724d1a;hpb=65f25c661e03316f5f0cb4a035df518c875c17f8;p=lttng-tools.git diff --git a/src/bin/lttng/commands/destroy.c b/src/bin/lttng/commands/destroy.c index 50d5bb441..661c0a235 100644 --- a/src/bin/lttng/commands/destroy.c +++ b/src/bin/lttng/commands/destroy.c @@ -15,7 +15,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#define _GNU_SOURCE +#define _LGPL_SOURCE #include #include #include @@ -23,14 +23,17 @@ #include #include #include +#include #include "../command.h" #include #include +#include static char *opt_session_name; static int opt_destroy_all; +static int opt_no_wait; /* Mi writer */ static struct mi_writer *writer; @@ -45,6 +48,7 @@ static struct poptOption long_options[] = { {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0}, {"all", 'a', POPT_ARG_VAL, &opt_destroy_all, 1, 0, 0}, {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL}, + {"no-wait", 'n', POPT_ARG_VAL, &opt_no_wait, 1, 0, 0}, {0, 0, 0, 0, 0, 0, 0} }; @@ -62,6 +66,7 @@ static void usage(FILE *ofp) fprintf(ofp, " -h, --help Show this help\n"); fprintf(ofp, " -a, --all Destroy all sessions\n"); fprintf(ofp, " --list-options Simple listing of options\n"); + fprintf(ofp, " -n, --no-wait Don't wait for data availability\n"); fprintf(ofp, "\n"); } @@ -74,22 +79,55 @@ static void usage(FILE *ofp) static int destroy_session(struct lttng_session *session) { int ret; + char *session_name = NULL; + bool session_was_stopped; + + ret = lttng_stop_tracing_no_wait(session->name); + if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) { + ERR("%s", lttng_strerror(ret)); + } + session_was_stopped = ret == -LTTNG_ERR_TRACE_ALREADY_STOPPED; + if (!opt_no_wait) { + _MSG("Waiting for data availability"); + fflush(stdout); + do { + ret = lttng_data_pending(session->name); + if (ret < 0) { + /* Return the data available call error. */ + goto error; + } - ret = lttng_destroy_session(session->name); + /* + * Data sleep time before retrying (in usec). Don't sleep if the call + * returned value indicates availability. + */ + if (ret) { + usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME); + _MSG("."); + fflush(stdout); + } + } while (ret != 0); + MSG(""); + } + if (!session_was_stopped) { + /* + * Don't print the event and packet loss warnings since the user + * already saw them when stopping the trace. + */ + print_session_stats(session->name); + } + + ret = lttng_destroy_session_no_wait(session->name); if (ret < 0) { - switch (-ret) { - case LTTNG_ERR_SESS_NOT_FOUND: - WARN("Session name %s not found", session->name); - break; - default: - ERR("%s", lttng_strerror(ret)); - break; - } goto error; } MSG("Session %s destroyed", session->name); - config_destroy_default(); + + session_name = get_session_name_quiet(); + if (session_name && !strncmp(session->name, session_name, NAME_MAX)) { + config_destroy_default(); + } if (lttng_opt_mi) { ret = mi_lttng_session(writer, session, 0); @@ -101,6 +139,7 @@ static int destroy_session(struct lttng_session *session) ret = CMD_SUCCESS; error: + free(session_name); return ret; } @@ -150,7 +189,7 @@ int cmd_destroy(int argc, const char **argv) while ((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { case OPT_HELP: - usage(stdout); + SHOW_HELP(); break; case OPT_LIST_OPTIONS: list_cmd_options(stdout, long_options); @@ -212,7 +251,7 @@ int cmd_destroy(int argc, const char **argv) } else { opt_session_name = (char *) poptGetArg(pc); - if (opt_session_name == NULL) { + if (!opt_session_name) { /* No session name specified, lookup default */ session_name = get_session_name(); if (session_name == NULL) {