From fabb0b6c690cb748df101224e5d5f63aa2aa011e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Mon, 27 Feb 2017 17:49:04 -0500 Subject: [PATCH] lttng-ctl: Implement the condition evaluation interface MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- include/Makefile.am | 3 +- include/lttng/condition/evaluation-internal.h | 32 ++++++++++++++++ src/lib/lttng-ctl/Makefile.am | 2 +- src/lib/lttng-ctl/evaluation.c | 37 +++++++++++++++++++ 4 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 include/lttng/condition/evaluation-internal.h create mode 100644 src/lib/lttng-ctl/evaluation.c diff --git a/include/Makefile.am b/include/Makefile.am index 55f9ce257..ab104e4ab 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -87,5 +87,6 @@ noinst_HEADERS = \ lttng/action/action-internal.h \ lttng/action/notify-internal.h \ lttng/condition/condition-internal.h \ - lttng/condition/buffer-usage-internal.h + lttng/condition/buffer-usage-internal.h \ + lttng/condition/evaluation-internal.h diff --git a/include/lttng/condition/evaluation-internal.h b/include/lttng/condition/evaluation-internal.h new file mode 100644 index 000000000..c17049f1c --- /dev/null +++ b/include/lttng/condition/evaluation-internal.h @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2017 - Jérémie Galarneau + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License, version 2.1 only, + * as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef LTTNG_EVALUATION_INTERNAL_H +#define LTTNG_EVALUATION_INTERNAL_H + +#include +#include +#include + +typedef void (*evaluation_destroy_cb)(struct lttng_evaluation *evaluation); + +struct lttng_evaluation { + enum lttng_condition_type type; + evaluation_destroy_cb destroy; +}; + +#endif /* LTTNG_EVALUATION_INTERNAL_H */ diff --git a/src/lib/lttng-ctl/Makefile.am b/src/lib/lttng-ctl/Makefile.am index e339fa207..abcbfee36 100644 --- a/src/lib/lttng-ctl/Makefile.am +++ b/src/lib/lttng-ctl/Makefile.am @@ -6,7 +6,7 @@ lib_LTLIBRARIES = liblttng-ctl.la liblttng_ctl_la_SOURCES = lttng-ctl.c snapshot.c lttng-ctl-helper.h \ lttng-ctl-health.c save.c load.c deprecated-symbols.c \ - action.c notify.c condition.c buffer-usage.c + action.c notify.c condition.c buffer-usage.c evaluation.c liblttng_ctl_la_LDFLAGS = \ $(LT_NO_UNDEFINED) diff --git a/src/lib/lttng-ctl/evaluation.c b/src/lib/lttng-ctl/evaluation.c new file mode 100644 index 000000000..41e59c1d5 --- /dev/null +++ b/src/lib/lttng-ctl/evaluation.c @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2017 - Jérémie Galarneau + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License, version 2.1 only, + * as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include +#include +#include + +enum lttng_condition_type lttng_evaluation_get_type( + struct lttng_evaluation *evaluation) +{ + return evaluation ? evaluation->type : LTTNG_CONDITION_TYPE_UNKNOWN; +} + +void lttng_evaluation_destroy(struct lttng_evaluation *evaluation) +{ + if (!evaluation) { + return; + } + + assert(evaluation->destroy); + evaluation->destroy(evaluation); +} -- 2.34.1