plugins/ctf/common/btr: use standard logging files and macros
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 31 May 2017 16:52:27 +0000 (12:52 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 9 Jun 2017 20:58:13 +0000 (16:58 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
plugins/ctf/common/btr/Makefile.am
plugins/ctf/common/btr/btr.c
plugins/ctf/common/btr/logging.c [new file with mode: 0644]
plugins/ctf/common/btr/logging.h [new file with mode: 0644]

index 4602514f0305cae4cdb7fe9387afafc9229f8e0d..6d590d0c7287284ed7168f2309dce80bab4cef72 100644 (file)
@@ -3,4 +3,6 @@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include
 noinst_LTLIBRARIES = libctf-btr.la
 libctf_btr_la_SOURCES = \
        btr.c \
-       btr.h
+       btr.h \
+       logging.c \
+       logging.h
index e4776cf635871cdc369ed29f4cbe0aec37f08ff5..58c3a2869fc50f4c103589ea17febae647da418c 100644 (file)
  * SOFTWARE.
  */
 
-#define BT_LOG_OUTPUT_LEVEL btr_log_level
 #define BT_LOG_TAG "PLUGIN-CTF-BTR"
-#include <babeltrace/logging-internal.h>
-
-static int btr_log_level = BT_LOG_NONE;
+#include "logging.h"
 
 #include <stdlib.h>
 #include <stdint.h>
@@ -165,13 +162,6 @@ struct bt_ctf_btr {
        } user;
 };
 
-static
-void __attribute__((constructor)) logging_ctor(void)
-{
-       btr_log_level =
-               bt_log_get_level_from_env("BABELTRACE_PLUGIN_CTF_BTR_LOG_LEVEL");
-}
-
 static inline
 const char *btr_state_string(enum btr_state state)
 {
diff --git a/plugins/ctf/common/btr/logging.c b/plugins/ctf/common/btr/logging.c
new file mode 100644 (file)
index 0000000..ded2933
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#define BT_LOG_OUTPUT_LEVEL btr_log_level
+#include <babeltrace/logging-internal.h>
+
+BT_LOG_INIT_LOG_LEVEL(btr_log_level, "BABELTRACE_PLUGIN_CTF_BTR_LOG_LEVEL");
diff --git a/plugins/ctf/common/btr/logging.h b/plugins/ctf/common/btr/logging.h
new file mode 100644 (file)
index 0000000..d32de29
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef CTF_BTR_LOGGING_H
+#define CTF_BTR_LOGGING_H
+
+/*
+ * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#define BT_LOG_OUTPUT_LEVEL btr_log_level
+#include <babeltrace/logging-internal.h>
+
+BT_LOG_LEVEL_EXTERN_SYMBOL(btr_log_level);
+
+#endif /* CTF_BTR_LOGGING_H */
This page took 0.028551 seconds and 4 git commands to generate.