List detected component classes
[babeltrace.git] / plugins / ctf / text / text.c
CommitLineData
7a278c8e 1/*
5dac767a 2 * text.c
7a278c8e 3 *
5dac767a 4 * Babeltrace CTF Text Output Plugin
7a278c8e 5 *
2e339de1 6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7a278c8e
JG
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
38b48196 29#include <babeltrace/plugin/plugin-macros.h>
480dc8ed 30#include <babeltrace/plugin/component.h>
5dac767a 31#include <babeltrace/plugin/sink.h>
480dc8ed 32#include <babeltrace/plugin/notification/notification.h>
bfd20a42
JG
33#include <glib.h>
34#include <stdio.h>
39cfa40f 35#include <stdbool.h>
bfd20a42 36
4647b93a 37static
7c7c0433
JG
38enum bt_component_status ctf_text_init(struct bt_component *,
39 struct bt_value *params);
480dc8ed 40
dafd80ce 41/* Initialize plug-in entry points. */
480dc8ed 42BT_PLUGIN_NAME("ctf-text");
7c7c0433 43BT_PLUGIN_DESCRIPTION("Babeltrace text output plug-in.");
480dc8ed 44BT_PLUGIN_AUTHOR("Jérémie Galarneau");
7c7c0433 45BT_PLUGIN_LICENSE("MIT");
480dc8ed
JG
46
47BT_PLUGIN_COMPONENT_CLASSES_BEGIN
7c7c0433 48BT_PLUGIN_SINK_COMPONENT_CLASS_ENTRY("text", "Formats CTF-IR to text. Formerly known as ctf-text.", ctf_text_init)
480dc8ed
JG
49BT_PLUGIN_COMPONENT_CLASSES_END
50
6405967d
JG
51enum loglevel {
52 LOGLEVEL_EMERG = 0,
53 LOGLEVEL_ALERT = 1,
54 LOGLEVEL_CRIT = 2,
55 LOGLEVEL_ERR = 3,
56 LOGLEVEL_WARNING = 4,
57 LOGLEVEL_NOTICE = 5,
58 LOGLEVEL_INFO = 6,
59 LOGLEVEL_DEBUG_SYSTEM = 7,
60 LOGLEVEL_DEBUG_PROGRAM = 8,
61 LOGLEVEL_DEBUG_PROCESS = 9,
62 LOGLEVEL_DEBUG_MODULE = 10,
63 LOGLEVEL_DEBUG_UNIT = 11,
64 LOGLEVEL_DEBUG_FUNCTION = 12,
65 LOGLEVEL_DEBUG_LINE = 13,
66 LOGLEVEL_DEBUG = 14,
67};
68
4647b93a 69static
6405967d 70const char *loglevel_str [] = {
480dc8ed
JG
71 [LOGLEVEL_EMERG] = "TRACE_EMERG",
72 [LOGLEVEL_ALERT] = "TRACE_ALERT",
73 [LOGLEVEL_CRIT] = "TRACE_CRIT",
74 [LOGLEVEL_ERR] = "TRACE_ERR",
75 [LOGLEVEL_WARNING] = "TRACE_WARNING",
76 [LOGLEVEL_NOTICE] = "TRACE_NOTICE",
77 [LOGLEVEL_INFO] = "TRACE_INFO",
78 [LOGLEVEL_DEBUG_SYSTEM] = "TRACE_DEBUG_SYSTEM",
79 [LOGLEVEL_DEBUG_PROGRAM] = "TRACE_DEBUG_PROGRAM",
80 [LOGLEVEL_DEBUG_PROCESS] = "TRACE_DEBUG_PROCESS",
81 [LOGLEVEL_DEBUG_MODULE] = "TRACE_DEBUG_MODULE",
82 [LOGLEVEL_DEBUG_UNIT] = "TRACE_DEBUG_UNIT",
83 [LOGLEVEL_DEBUG_FUNCTION] = "TRACE_DEBUG_FUNCTION",
84 [LOGLEVEL_DEBUG_LINE] = "TRACE_DEBUG_LINE",
85 [LOGLEVEL_DEBUG] = "TRACE_DEBUG",
6405967d
JG
86};
87
480dc8ed
JG
88struct ctf_text_component {
89 bool opt_print_all_field_names : 1;
90 bool opt_print_scope_field_names : 1;
91 bool opt_print_header_field_names : 1;
92 bool opt_print_context_field_names : 1;
93 bool opt_print_payload_field_names : 1;
94 bool opt_print_all_fields : 1;
95 bool opt_print_trace_field : 1;
96 bool opt_print_trace_domain_field : 1;
97 bool opt_print_trace_procname_field : 1;
98 bool opt_print_trace_vpid_field : 1;
99 bool opt_print_trace_hostname_field : 1;
100 bool opt_print_trace_default_fields : 1;
101 bool opt_print_loglevel_field : 1;
102 bool opt_print_emf_field : 1;
480dc8ed 103 bool opt_print_delta_field : 1;
bfd20a42
JG
104};
105
bfd20a42 106static
4647b93a 107enum bt_component_status ctf_text_init(
7c7c0433 108 struct bt_component *component, struct bt_value *params)
4c1456f0 109{
7c7c0433 110 printf("ctf_text_init\n");
480dc8ed 111 return BT_COMPONENT_STATUS_OK;
4c1456f0 112}
This page took 0.029576 seconds and 4 git commands to generate.