Fix: documentation: refer to bt_put()
[babeltrace.git] / plugins / 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>
fec2a9f2 33#include <babeltrace/plugin/notification/iterator.h>
541b0a11 34#include <babeltrace/plugin/notification/event.h>
bfd20a42 35#include <stdio.h>
39cfa40f 36#include <stdbool.h>
bac67f0f 37#include <glib.h>
541b0a11 38#include "text.h"
6405967d 39
4647b93a 40static
6405967d 41const char *loglevel_str [] = {
480dc8ed
JG
42 [LOGLEVEL_EMERG] = "TRACE_EMERG",
43 [LOGLEVEL_ALERT] = "TRACE_ALERT",
44 [LOGLEVEL_CRIT] = "TRACE_CRIT",
45 [LOGLEVEL_ERR] = "TRACE_ERR",
46 [LOGLEVEL_WARNING] = "TRACE_WARNING",
47 [LOGLEVEL_NOTICE] = "TRACE_NOTICE",
48 [LOGLEVEL_INFO] = "TRACE_INFO",
49 [LOGLEVEL_DEBUG_SYSTEM] = "TRACE_DEBUG_SYSTEM",
50 [LOGLEVEL_DEBUG_PROGRAM] = "TRACE_DEBUG_PROGRAM",
51 [LOGLEVEL_DEBUG_PROCESS] = "TRACE_DEBUG_PROCESS",
52 [LOGLEVEL_DEBUG_MODULE] = "TRACE_DEBUG_MODULE",
53 [LOGLEVEL_DEBUG_UNIT] = "TRACE_DEBUG_UNIT",
54 [LOGLEVEL_DEBUG_FUNCTION] = "TRACE_DEBUG_FUNCTION",
55 [LOGLEVEL_DEBUG_LINE] = "TRACE_DEBUG_LINE",
56 [LOGLEVEL_DEBUG] = "TRACE_DEBUG",
6405967d
JG
57};
58
bfd20a42 59static
541b0a11 60void destroy_text_data(struct text_component *text)
bac67f0f 61{
541b0a11 62 g_free(text);
bac67f0f
JG
63}
64
b25bd455 65static
541b0a11 66struct text_component *create_text(void)
bac67f0f 67{
541b0a11
JG
68 struct text_component *text;
69
70 text = g_new0(struct text_component, 1);
71 if (!text) {
72 goto end;
73 }
541b0a11
JG
74end:
75 return text;
bac67f0f
JG
76}
77
fec2a9f2
JG
78static
79void destroy_text(struct bt_component *component)
b25bd455
JG
80{
81 void *data = bt_component_get_private_data(component);
82
83 destroy_text_data(data);
84}
85
bac67f0f 86static
fec2a9f2 87enum bt_component_status handle_notification(struct text_component *text,
bac67f0f 88 struct bt_notification *notification)
4c1456f0 89{
541b0a11 90 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
541b0a11
JG
91
92 if (!text) {
93 ret = BT_COMPONENT_STATUS_ERROR;
94 goto end;
95 }
96
78586d8a
JG
97 switch (bt_notification_get_type(notification)) {
98 case BT_NOTIFICATION_TYPE_PACKET_START:
99 puts("<packet>");
100 break;
101 case BT_NOTIFICATION_TYPE_PACKET_END:
102 puts("</packet>");
103 break;
104 case BT_NOTIFICATION_TYPE_EVENT:
541b0a11
JG
105 {
106 struct bt_ctf_event *event = bt_notification_event_get_event(
107 notification);
108
541b0a11
JG
109 if (!event) {
110 ret = BT_COMPONENT_STATUS_ERROR;
111 goto end;
112 }
113 ret = text_print_event(text, event);
fec2a9f2 114 bt_put(event);
541b0a11
JG
115 if (ret != BT_COMPONENT_STATUS_OK) {
116 goto end;
117 }
043e2020 118 break;
541b0a11 119 }
043e2020
JG
120 case BT_NOTIFICATION_TYPE_STREAM_END:
121 puts("</stream>");
78586d8a
JG
122 break;
123 default:
124 puts("Unhandled notification type");
125 }
541b0a11
JG
126end:
127 return ret;
4c1456f0 128}
bac67f0f 129
fec2a9f2
JG
130static
131enum bt_component_status run(struct bt_component *component)
132{
133 enum bt_component_status ret;
134 struct bt_notification *notification = NULL;
135 struct bt_notification_iterator *it;
136 struct text_component *text = bt_component_get_private_data(component);
137
138 ret = bt_component_sink_get_input_iterator(component, 0, &it);
139 if (ret != BT_COMPONENT_STATUS_OK) {
140 goto end;
141 }
142
143 if (!text->processed_first_event) {
144 ret = bt_notification_iterator_next(it);
145 if (ret != BT_COMPONENT_STATUS_OK) {
146 goto end;
147 }
148 } else {
149 text->processed_first_event = true;
150 }
151
152 notification = bt_notification_iterator_get_notification(it);
153 if (!notification) {
154 ret = BT_COMPONENT_STATUS_ERROR;
155 goto end;
156 }
157
158 ret = handle_notification(text, notification);
159end:
160 bt_put(it);
161 bt_put(notification);
162 return ret;
163}
164
bac67f0f
JG
165static
166enum bt_component_status text_component_init(
167 struct bt_component *component, struct bt_value *params)
168{
169 enum bt_component_status ret;
170 struct text_component *text = create_text();
171
172 if (!text) {
173 ret = BT_COMPONENT_STATUS_NOMEM;
174 goto end;
175 }
176
a97c4b1a 177 ret = bt_component_set_destroy_cb(component,
e78cdc59 178 destroy_text);
bac67f0f
JG
179 if (ret != BT_COMPONENT_STATUS_OK) {
180 goto error;
181 }
182
183 ret = bt_component_set_private_data(component, text);
184 if (ret != BT_COMPONENT_STATUS_OK) {
185 goto error;
186 }
187
fec2a9f2
JG
188 ret = bt_component_sink_set_consume_cb(component,
189 run);
bac67f0f
JG
190 if (ret != BT_COMPONENT_STATUS_OK) {
191 goto error;
192 }
043e2020
JG
193
194 text->out = stdout;
195 text->err = stderr;
bac67f0f
JG
196end:
197 return ret;
198error:
b25bd455 199 destroy_text_data(text);
bac67f0f
JG
200 return ret;
201}
202
bac67f0f 203/* Initialize plug-in entry points. */
56a1cced 204BT_PLUGIN_NAME("text");
bac67f0f
JG
205BT_PLUGIN_DESCRIPTION("Babeltrace text output plug-in.");
206BT_PLUGIN_AUTHOR("Jérémie Galarneau");
207BT_PLUGIN_LICENSE("MIT");
208
209BT_PLUGIN_COMPONENT_CLASSES_BEGIN
541b0a11
JG
210BT_PLUGIN_SINK_COMPONENT_CLASS_ENTRY("text",
211 "Formats CTF-IR to text. Formerly known as ctf-text.",
212 text_component_init)
bac67f0f 213BT_PLUGIN_COMPONENT_CLASSES_END
This page took 0.035858 seconds and 4 git commands to generate.