Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / plugins / text / pretty / print.c
CommitLineData
af9a82eb 1/*
af9a82eb 2 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
f504043c 3 * Copyright 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
af9a82eb
JG
4 *
5 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
3fadfbc0 26#include <babeltrace2/babeltrace.h>
578e048b
MJ
27#include "compat/bitfield.h"
28#include "common/common.h"
6162e6b7 29#include "common/uuid.h"
578e048b
MJ
30#include "compat/time.h"
31#include "common/assert.h"
6a18b281 32#include <inttypes.h>
93a4161c 33#include <ctype.h>
c4f23e30 34#include <stdbool.h>
91d81473 35#include <string.h>
3228cc1d 36#include "pretty.h"
af9a82eb 37
1556a1af
JG
38#define NSEC_PER_SEC 1000000000LL
39
5280f742 40#define COLOR_NAME BT_COMMON_COLOR_BOLD
08899d39 41#define COLOR_FIELD_NAME BT_COMMON_COLOR_FG_CYAN
5280f742
PP
42#define COLOR_RST BT_COMMON_COLOR_RESET
43#define COLOR_STRING_VALUE BT_COMMON_COLOR_BOLD
44#define COLOR_NUMBER_VALUE BT_COMMON_COLOR_BOLD
45#define COLOR_ENUM_MAPPING_NAME BT_COMMON_COLOR_BOLD
46#define COLOR_UNKNOWN BT_COMMON_COLOR_BOLD BT_COMMON_COLOR_FG_RED
08899d39 47#define COLOR_EVENT_NAME BT_COMMON_COLOR_BOLD BT_COMMON_COLOR_FG_MAGENTA
5280f742 48#define COLOR_TIMESTAMP BT_COMMON_COLOR_BOLD BT_COMMON_COLOR_FG_YELLOW
ad96d936 49
af9a82eb
JG
50struct timestamp {
51 int64_t real_timestamp; /* Relative to UNIX epoch. */
605e1019 52 uint64_t clock_snapshot; /* In cycles. */
af9a82eb
JG
53};
54
6a18b281 55static
d94d92ac 56int print_field(struct pretty_component *pretty,
2f84c7be 57 const bt_field *field, bool print_names);
6a18b281 58
ad96d936 59static
3228cc1d 60void print_name_equal(struct pretty_component *pretty, const char *name)
ad96d936 61{
3228cc1d 62 if (pretty->use_colors) {
dd61c4ed
MD
63 bt_common_g_string_append(pretty->string, COLOR_NAME);
64 bt_common_g_string_append(pretty->string, name);
65 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 66 } else {
dd61c4ed 67 bt_common_g_string_append(pretty->string, name);
ad96d936 68 }
dd61c4ed 69 bt_common_g_string_append(pretty->string, " = ");
ad96d936
PP
70}
71
72static
3228cc1d 73void print_field_name_equal(struct pretty_component *pretty, const char *name)
ad96d936 74{
3228cc1d 75 if (pretty->use_colors) {
dd61c4ed
MD
76 bt_common_g_string_append(pretty->string, COLOR_FIELD_NAME);
77 bt_common_g_string_append(pretty->string, name);
78 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 79 } else {
dd61c4ed
MD
80 bt_common_g_string_append(pretty->string, name);
81 }
82 bt_common_g_string_append(pretty->string, " = ");
ad96d936
PP
83}
84
af9a82eb 85static
3228cc1d 86void print_timestamp_cycles(struct pretty_component *pretty,
9c202476 87 const bt_clock_snapshot *clock_snapshot, bool update_last)
af9a82eb 88{
1556a1af 89 uint64_t cycles;
1556a1af 90
605e1019 91 cycles = bt_clock_snapshot_get_value(clock_snapshot);
f354b1e1 92 bt_common_g_string_append_printf(pretty->string, "%020" PRIu64, cycles);
3af83b5a 93
9c202476
PP
94 if (update_last) {
95 if (pretty->last_cycles_timestamp != -1ULL) {
96 pretty->delta_cycles = cycles - pretty->last_cycles_timestamp;
97 }
2c091c04 98
9c202476
PP
99 pretty->last_cycles_timestamp = cycles;
100 }
af9a82eb
JG
101}
102
103static
3228cc1d 104void print_timestamp_wall(struct pretty_component *pretty,
9c202476 105 const bt_clock_snapshot *clock_snapshot, bool update_last)
af9a82eb 106{
1556a1af 107 int ret;
1556a1af
JG
108 int64_t ts_nsec = 0; /* add configurable offset */
109 int64_t ts_sec = 0; /* add configurable offset */
110 uint64_t ts_sec_abs, ts_nsec_abs;
111 bool is_negative;
af9a82eb 112
605e1019 113 if (!clock_snapshot) {
dd61c4ed 114 bt_common_g_string_append(pretty->string, "??:??:??.?????????");
1556a1af
JG
115 return;
116 }
117
605e1019 118 ret = bt_clock_snapshot_get_ns_from_origin(clock_snapshot, &ts_nsec);
1556a1af 119 if (ret) {
5280f742 120 // TODO: log, this is unexpected
dd61c4ed 121 bt_common_g_string_append(pretty->string, "Error");
1556a1af
JG
122 return;
123 }
124
9c202476
PP
125 if (update_last) {
126 if (pretty->last_real_timestamp != -1ULL) {
127 pretty->delta_real_timestamp = ts_nsec - pretty->last_real_timestamp;
128 }
129
130 pretty->last_real_timestamp = ts_nsec;
3af83b5a 131 }
3af83b5a 132
1556a1af
JG
133 ts_sec += ts_nsec / NSEC_PER_SEC;
134 ts_nsec = ts_nsec % NSEC_PER_SEC;
5280f742 135
1556a1af
JG
136 if (ts_sec >= 0 && ts_nsec >= 0) {
137 is_negative = false;
138 ts_sec_abs = ts_sec;
139 ts_nsec_abs = ts_nsec;
140 } else if (ts_sec > 0 && ts_nsec < 0) {
141 is_negative = false;
142 ts_sec_abs = ts_sec - 1;
143 ts_nsec_abs = NSEC_PER_SEC + ts_nsec;
144 } else if (ts_sec == 0 && ts_nsec < 0) {
145 is_negative = true;
146 ts_sec_abs = ts_sec;
147 ts_nsec_abs = -ts_nsec;
148 } else if (ts_sec < 0 && ts_nsec > 0) {
149 is_negative = true;
150 ts_sec_abs = -(ts_sec + 1);
151 ts_nsec_abs = NSEC_PER_SEC - ts_nsec;
152 } else if (ts_sec < 0 && ts_nsec == 0) {
153 is_negative = true;
154 ts_sec_abs = -ts_sec;
155 ts_nsec_abs = ts_nsec;
156 } else { /* (ts_sec < 0 && ts_nsec < 0) */
157 is_negative = true;
158 ts_sec_abs = -ts_sec;
159 ts_nsec_abs = -ts_nsec;
160 }
161
3228cc1d 162 if (!pretty->options.clock_seconds) {
1556a1af
JG
163 struct tm tm;
164 time_t time_s = (time_t) ts_sec_abs;
165
18adbd19 166 if (is_negative && !pretty->negative_timestamp_warning_done) {
5280f742 167 // TODO: log instead
1556a1af 168 fprintf(stderr, "[warning] Fallback to [sec.ns] to print negative time value. Use --clock-seconds.\n");
18adbd19 169 pretty->negative_timestamp_warning_done = true;
1556a1af
JG
170 goto seconds;
171 }
172
3228cc1d 173 if (!pretty->options.clock_gmt) {
1556a1af
JG
174 struct tm *res;
175
58a2480d 176 res = bt_localtime_r(&time_s, &tm);
1556a1af 177 if (!res) {
5280f742 178 // TODO: log instead
1556a1af
JG
179 fprintf(stderr, "[warning] Unable to get localtime.\n");
180 goto seconds;
181 }
182 } else {
183 struct tm *res;
184
58a2480d 185 res = bt_gmtime_r(&time_s, &tm);
1556a1af 186 if (!res) {
5280f742 187 // TODO: log instead
1556a1af
JG
188 fprintf(stderr, "[warning] Unable to get gmtime.\n");
189 goto seconds;
190 }
191 }
3228cc1d 192 if (pretty->options.clock_date) {
1556a1af
JG
193 char timestr[26];
194 size_t res;
195
196 /* Print date and time */
197 res = strftime(timestr, sizeof(timestr),
4d2a94f1 198 "%Y-%m-%d ", &tm);
1556a1af 199 if (!res) {
5280f742 200 // TODO: log instead
1556a1af
JG
201 fprintf(stderr, "[warning] Unable to print ascii time.\n");
202 goto seconds;
203 }
5280f742 204
dd61c4ed 205 bt_common_g_string_append(pretty->string, timestr);
1556a1af 206 }
5280f742 207
1556a1af 208 /* Print time in HH:MM:SS.ns */
f354b1e1 209 bt_common_g_string_append_printf(pretty->string,
5280f742
PP
210 "%02d:%02d:%02d.%09" PRIu64, tm.tm_hour, tm.tm_min,
211 tm.tm_sec, ts_nsec_abs);
1556a1af
JG
212 goto end;
213 }
214seconds:
f354b1e1 215 bt_common_g_string_append_printf(pretty->string, "%s%" PRId64 ".%09" PRIu64,
5280f742 216 is_negative ? "-" : "", ts_sec_abs, ts_nsec_abs);
1556a1af
JG
217end:
218 return;
af9a82eb
JG
219}
220
221static
d94d92ac 222int print_event_timestamp(struct pretty_component *pretty,
2c091c04 223 const bt_message *event_msg, bool *start_line)
af9a82eb 224{
3228cc1d 225 bool print_names = pretty->options.print_header_field_names;
d94d92ac 226 int ret = 0;
605e1019 227 const bt_clock_snapshot *clock_snapshot = NULL;
af9a82eb 228
81c25620
PP
229 if (!bt_message_event_borrow_stream_class_default_clock_class_const(
230 event_msg)) {
2c091c04 231 /* No default clock class: skip the timestamp without an error */
f504043c
MD
232 goto end;
233 }
d9f65f09 234
0cbc2c33 235 clock_snapshot = bt_message_event_borrow_default_clock_snapshot_const(event_msg);
af9a82eb 236
ad96d936 237 if (print_names) {
3228cc1d 238 print_name_equal(pretty, "timestamp");
ad96d936 239 } else {
dd61c4ed 240 bt_common_g_string_append(pretty->string, "[");
ad96d936 241 }
3228cc1d 242 if (pretty->use_colors) {
dd61c4ed 243 bt_common_g_string_append(pretty->string, COLOR_TIMESTAMP);
ad96d936 244 }
3228cc1d 245 if (pretty->options.print_timestamp_cycles) {
9c202476 246 print_timestamp_cycles(pretty, clock_snapshot, true);
af9a82eb 247 } else {
9c202476 248 print_timestamp_wall(pretty, clock_snapshot, true);
af9a82eb 249 }
3228cc1d 250 if (pretty->use_colors) {
dd61c4ed 251 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 252 }
af9a82eb 253
c3c30b08 254 if (!print_names)
dd61c4ed 255 bt_common_g_string_append(pretty->string, "] ");
c3c30b08 256
3228cc1d 257 if (pretty->options.print_delta_field) {
ad96d936 258 if (print_names) {
dd61c4ed 259 bt_common_g_string_append(pretty->string, ", ");
3228cc1d 260 print_name_equal(pretty, "delta");
ad96d936 261 } else {
dd61c4ed 262 bt_common_g_string_append(pretty->string, "(");
ad96d936 263 }
3228cc1d
PP
264 if (pretty->options.print_timestamp_cycles) {
265 if (pretty->delta_cycles == -1ULL) {
dd61c4ed 266 bt_common_g_string_append(pretty->string,
c6a871e9 267 "+??????????\?\?"); /* Not a trigraph. */
3af83b5a 268 } else {
f354b1e1 269 bt_common_g_string_append_printf(pretty->string,
5280f742 270 "+%012" PRIu64, pretty->delta_cycles);
3af83b5a
MD
271 }
272 } else {
3228cc1d 273 if (pretty->delta_real_timestamp != -1ULL) {
3af83b5a 274 uint64_t delta_sec, delta_nsec, delta;
f504043c 275
3228cc1d 276 delta = pretty->delta_real_timestamp;
3af83b5a
MD
277 delta_sec = delta / NSEC_PER_SEC;
278 delta_nsec = delta % NSEC_PER_SEC;
f354b1e1 279 bt_common_g_string_append_printf(pretty->string,
5280f742 280 "+%" PRIu64 ".%09" PRIu64,
3af83b5a
MD
281 delta_sec, delta_nsec);
282 } else {
dd61c4ed 283 bt_common_g_string_append(pretty->string, "+?.?????????");
3af83b5a
MD
284 }
285 }
286 if (!print_names) {
dd61c4ed 287 bt_common_g_string_append(pretty->string, ") ");
3af83b5a
MD
288 }
289 }
290 *start_line = !print_names;
f504043c 291
af9a82eb 292end:
af9a82eb
JG
293 return ret;
294}
295
6a18b281 296static
d94d92ac 297int print_event_header(struct pretty_component *pretty,
2c091c04 298 const bt_message *event_msg)
af9a82eb 299{
3228cc1d 300 bool print_names = pretty->options.print_header_field_names;
d94d92ac 301 int ret = 0;
b19ff26f 302 const bt_event_class *event_class = NULL;
b19ff26f
PP
303 const bt_stream *stream = NULL;
304 const bt_trace *trace = NULL;
2c091c04 305 const bt_event *event = bt_message_event_borrow_event_const(event_msg);
64925bba 306 const char *ev_name;
60535549 307 int dom_print = 0;
4cdfc5e8 308 bt_property_availability prop_avail;
af9a82eb 309
40f4ba76 310 event_class = bt_event_borrow_class_const(event);
26fc5aed 311 stream = bt_event_borrow_stream_const(event);
862ca4ed 312 trace = bt_stream_borrow_trace_const(stream);
2c091c04 313 ret = print_event_timestamp(pretty, event_msg, &pretty->start_line);
d94d92ac 314 if (ret) {
af9a82eb
JG
315 goto end;
316 }
3228cc1d 317 if (pretty->options.print_trace_field) {
c3c30b08
MD
318 const char *name;
319
862ca4ed 320 name = bt_trace_get_name(trace);
c3c30b08 321 if (name) {
3228cc1d 322 if (!pretty->start_line) {
dd61c4ed 323 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 324 }
c3c30b08 325 if (print_names) {
3228cc1d 326 print_name_equal(pretty, "trace");
c3c30b08 327 }
5280f742 328
dd61c4ed 329 bt_common_g_string_append(pretty->string, name);
5280f742 330
22b7fdc6 331 if (print_names) {
dd61c4ed 332 bt_common_g_string_append(pretty->string, ", ");
60535549 333 }
c3c30b08
MD
334 }
335 }
3228cc1d 336 if (pretty->options.print_trace_hostname_field) {
b19ff26f 337 const bt_value *hostname_str;
c3c30b08 338
335a2da5
PP
339 hostname_str = bt_trace_borrow_environment_entry_value_by_name_const(
340 trace, "hostname");
c3c30b08
MD
341 if (hostname_str) {
342 const char *str;
343
3228cc1d 344 if (!pretty->start_line) {
dd61c4ed 345 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 346 }
c3c30b08 347 if (print_names) {
3228cc1d 348 print_name_equal(pretty, "trace:hostname");
c3c30b08 349 }
601b0d3c 350 str = bt_value_string_get(hostname_str);
dd61c4ed 351 bt_common_g_string_append(pretty->string, str);
60535549 352 dom_print = 1;
c3c30b08
MD
353 }
354 }
3228cc1d 355 if (pretty->options.print_trace_domain_field) {
b19ff26f 356 const bt_value *domain_str;
c3c30b08 357
335a2da5
PP
358 domain_str = bt_trace_borrow_environment_entry_value_by_name_const(
359 trace, "domain");
c3c30b08
MD
360 if (domain_str) {
361 const char *str;
362
3228cc1d 363 if (!pretty->start_line) {
dd61c4ed 364 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 365 }
c3c30b08 366 if (print_names) {
3228cc1d 367 print_name_equal(pretty, "trace:domain");
60535549 368 } else if (dom_print) {
dd61c4ed 369 bt_common_g_string_append(pretty->string, ":");
c3c30b08 370 }
601b0d3c 371 str = bt_value_string_get(domain_str);
dd61c4ed 372 bt_common_g_string_append(pretty->string, str);
60535549 373 dom_print = 1;
c3c30b08
MD
374 }
375 }
3228cc1d 376 if (pretty->options.print_trace_procname_field) {
b19ff26f 377 const bt_value *procname_str;
c3c30b08 378
335a2da5
PP
379 procname_str = bt_trace_borrow_environment_entry_value_by_name_const(
380 trace, "procname");
c3c30b08
MD
381 if (procname_str) {
382 const char *str;
383
3228cc1d 384 if (!pretty->start_line) {
dd61c4ed 385 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 386 }
c3c30b08 387 if (print_names) {
3228cc1d 388 print_name_equal(pretty, "trace:procname");
60535549 389 } else if (dom_print) {
dd61c4ed 390 bt_common_g_string_append(pretty->string, ":");
c3c30b08 391 }
601b0d3c 392 str = bt_value_string_get(procname_str);
dd61c4ed 393 bt_common_g_string_append(pretty->string, str);
60535549 394 dom_print = 1;
c3c30b08
MD
395 }
396 }
3228cc1d 397 if (pretty->options.print_trace_vpid_field) {
b19ff26f 398 const bt_value *vpid_value;
c3c30b08 399
335a2da5
PP
400 vpid_value = bt_trace_borrow_environment_entry_value_by_name_const(
401 trace, "vpid");
c3c30b08
MD
402 if (vpid_value) {
403 int64_t value;
404
3228cc1d 405 if (!pretty->start_line) {
dd61c4ed 406 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 407 }
c3c30b08 408 if (print_names) {
3228cc1d 409 print_name_equal(pretty, "trace:vpid");
60535549 410 } else if (dom_print) {
dd61c4ed 411 bt_common_g_string_append(pretty->string, ":");
c3c30b08 412 }
9c08c816 413 value = bt_value_integer_signed_get(vpid_value);
f354b1e1 414 bt_common_g_string_append_printf(pretty->string,
601b0d3c 415 "(%" PRId64 ")", value);
60535549 416 dom_print = 1;
c3c30b08
MD
417 }
418 }
3228cc1d 419 if (pretty->options.print_loglevel_field) {
cf76ce92 420 static const char *log_level_names[] = {
50842bdc
PP
421 [ BT_EVENT_CLASS_LOG_LEVEL_EMERGENCY ] = "TRACE_EMERG",
422 [ BT_EVENT_CLASS_LOG_LEVEL_ALERT ] = "TRACE_ALERT",
423 [ BT_EVENT_CLASS_LOG_LEVEL_CRITICAL ] = "TRACE_CRIT",
424 [ BT_EVENT_CLASS_LOG_LEVEL_ERROR ] = "TRACE_ERR",
425 [ BT_EVENT_CLASS_LOG_LEVEL_WARNING ] = "TRACE_WARNING",
426 [ BT_EVENT_CLASS_LOG_LEVEL_NOTICE ] = "TRACE_NOTICE",
427 [ BT_EVENT_CLASS_LOG_LEVEL_INFO ] = "TRACE_INFO",
428 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM ] = "TRACE_DEBUG_SYSTEM",
429 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM ] = "TRACE_DEBUG_PROGRAM",
430 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS ] = "TRACE_DEBUG_PROCESS",
431 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE ] = "TRACE_DEBUG_MODULE",
432 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT ] = "TRACE_DEBUG_UNIT",
433 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION ] = "TRACE_DEBUG_FUNCTION",
434 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG_LINE ] = "TRACE_DEBUG_LINE",
435 [ BT_EVENT_CLASS_LOG_LEVEL_DEBUG ] = "TRACE_DEBUG",
cf76ce92 436 };
4cdfc5e8 437 bt_event_class_log_level log_level;
cf76ce92
PP
438 const char *log_level_str = NULL;
439
44c440bc
PP
440 prop_avail = bt_event_class_get_log_level(event_class,
441 &log_level);
442 if (prop_avail == BT_PROPERTY_AVAILABILITY_AVAILABLE) {
cf76ce92 443 log_level_str = log_level_names[log_level];
98b15851 444 BT_ASSERT_DBG(log_level_str);
c3c30b08 445
3228cc1d 446 if (!pretty->start_line) {
dd61c4ed 447 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 448 }
c3c30b08 449 if (print_names) {
3228cc1d 450 print_name_equal(pretty, "loglevel");
60535549 451 } else if (dom_print) {
dd61c4ed 452 bt_common_g_string_append(pretty->string, ":");
c3c30b08 453 }
cf76ce92 454
dd61c4ed 455 bt_common_g_string_append(pretty->string, log_level_str);
f354b1e1 456 bt_common_g_string_append_printf(
cf76ce92 457 pretty->string, " (%d)", (int) log_level);
60535549 458 dom_print = 1;
c3c30b08
MD
459 }
460 }
3228cc1d 461 if (pretty->options.print_emf_field) {
cf76ce92 462 const char *uri_str;
c3c30b08 463
50842bdc 464 uri_str = bt_event_class_get_emf_uri(event_class);
c3c30b08 465 if (uri_str) {
3228cc1d 466 if (!pretty->start_line) {
dd61c4ed 467 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 468 }
c3c30b08 469 if (print_names) {
3228cc1d 470 print_name_equal(pretty, "model.emf.uri");
60535549 471 } else if (dom_print) {
dd61c4ed 472 bt_common_g_string_append(pretty->string, ":");
c3c30b08 473 }
c3c30b08 474
dd61c4ed 475 bt_common_g_string_append(pretty->string, uri_str);
60535549 476 dom_print = 1;
c3c30b08
MD
477 }
478 }
60535549 479 if (dom_print && !print_names) {
dd61c4ed 480 bt_common_g_string_append(pretty->string, " ");
60535549 481 }
3228cc1d 482 if (!pretty->start_line) {
dd61c4ed 483 bt_common_g_string_append(pretty->string, ", ");
c3c30b08 484 }
3228cc1d 485 pretty->start_line = true;
6a18b281 486 if (print_names) {
3228cc1d 487 print_name_equal(pretty, "name");
ad96d936 488 }
64925bba 489 ev_name = bt_event_class_get_name(event_class);
3228cc1d 490 if (pretty->use_colors) {
64925bba 491 if (ev_name) {
dd61c4ed
MD
492 bt_common_g_string_append(pretty->string,
493 COLOR_EVENT_NAME);
64925bba 494 } else {
dd61c4ed
MD
495 bt_common_g_string_append(pretty->string,
496 COLOR_UNKNOWN);
64925bba
PP
497 }
498 }
499 if (ev_name) {
dd61c4ed 500 bt_common_g_string_append(pretty->string, ev_name);
64925bba 501 } else {
dd61c4ed 502 bt_common_g_string_append(pretty->string, "<unknown>");
6a18b281 503 }
3228cc1d 504 if (pretty->use_colors) {
dd61c4ed 505 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 506 }
60535549 507 if (!print_names) {
dd61c4ed 508 bt_common_g_string_append(pretty->string, ": ");
60535549 509 } else {
dd61c4ed 510 bt_common_g_string_append(pretty->string, ", ");
60535549 511 }
a82e90e8 512
af9a82eb 513end:
6a18b281
MD
514 return ret;
515}
516
517static
d94d92ac 518int print_integer(struct pretty_component *pretty,
b19ff26f 519 const bt_field *field)
6a18b281 520{
d94d92ac 521 int ret = 0;
4cdfc5e8 522 bt_field_class_integer_preferred_display_base base;
b19ff26f 523 const bt_field_class *int_fc;
6a18b281
MD
524 union {
525 uint64_t u;
526 int64_t s;
527 } v;
ad96d936 528 bool rst_color = false;
4cdfc5e8 529 bt_field_class_type ft_type;
6a18b281 530
40f4ba76 531 int_fc = bt_field_borrow_class_const(field);
98b15851 532 BT_ASSERT_DBG(int_fc);
864cad70 533 ft_type = bt_field_get_class_type(field);
ebdb6693
PP
534 if (bt_field_class_type_is(ft_type,
535 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER)) {
9c08c816 536 v.u = bt_field_integer_unsigned_get_value(field);
6a18b281 537 } else {
9c08c816 538 v.s = bt_field_integer_signed_get_value(field);
6a18b281
MD
539 }
540
3228cc1d 541 if (pretty->use_colors) {
dd61c4ed 542 bt_common_g_string_append(pretty->string, COLOR_NUMBER_VALUE);
ad96d936
PP
543 rst_color = true;
544 }
545
5cd6d0e5 546 base = bt_field_class_integer_get_preferred_display_base(int_fc);
6a18b281 547 switch (base) {
5cd6d0e5 548 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY:
6a18b281
MD
549 {
550 int bitnr, len;
551
5cd6d0e5 552 len = bt_field_class_integer_get_field_value_range(int_fc);
dd61c4ed 553 bt_common_g_string_append(pretty->string, "0b");
7f140ae8 554 _bt_safe_lshift(v.u, 64 - len);
6a18b281 555 for (bitnr = 0; bitnr < len; bitnr++) {
242ed509
MD
556 bt_common_g_string_append_c(pretty->string,
557 (v.u & (1ULL << 63)) ? '1' : '0');
7f140ae8 558 _bt_safe_lshift(v.u, 1);
6a18b281
MD
559 }
560 break;
561 }
5cd6d0e5 562 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL:
6a18b281 563 {
ebdb6693
PP
564 if (bt_field_class_type_is(ft_type,
565 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER)) {
6a18b281
MD
566 int len;
567
5cd6d0e5
PP
568 len = bt_field_class_integer_get_field_value_range(
569 int_fc);
6a18b281
MD
570 if (len < 64) {
571 size_t rounded_len;
572
98b15851 573 BT_ASSERT_DBG(len != 0);
6a18b281
MD
574 /* Round length to the nearest 3-bit */
575 rounded_len = (((len - 1) / 3) + 1) * 3;
576 v.u &= ((uint64_t) 1 << rounded_len) - 1;
577 }
578 }
579
f354b1e1 580 bt_common_g_string_append_printf(pretty->string, "0%" PRIo64, v.u);
6a18b281
MD
581 break;
582 }
5cd6d0e5 583 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL:
ebdb6693
PP
584 if (bt_field_class_type_is(ft_type,
585 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER)) {
f354b1e1 586 bt_common_g_string_append_printf(pretty->string, "%" PRIu64, v.u);
6a18b281 587 } else {
f354b1e1 588 bt_common_g_string_append_printf(pretty->string, "%" PRId64, v.s);
6a18b281
MD
589 }
590 break;
5cd6d0e5 591 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL:
6a18b281
MD
592 {
593 int len;
594
5cd6d0e5 595 len = bt_field_class_integer_get_field_value_range(int_fc);
6a18b281
MD
596 if (len < 64) {
597 /* Round length to the nearest nibble */
598 uint8_t rounded_len = ((len + 3) & ~0x3);
599
600 v.u &= ((uint64_t) 1 << rounded_len) - 1;
601 }
602
f354b1e1 603 bt_common_g_string_append_printf(pretty->string, "0x%" PRIX64, v.u);
6a18b281
MD
604 break;
605 }
606 default:
d94d92ac 607 ret = -1;
6a18b281
MD
608 goto end;
609 }
610end:
ad96d936 611 if (rst_color) {
dd61c4ed 612 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 613 }
6a18b281
MD
614 return ret;
615}
616
93a4161c 617static
3228cc1d 618void print_escape_string(struct pretty_component *pretty, const char *str)
93a4161c
JD
619{
620 int i;
621
dd61c4ed 622 bt_common_g_string_append_c(pretty->string, '"');
5280f742 623
93a4161c
JD
624 for (i = 0; i < strlen(str); i++) {
625 /* Escape sequences not recognized by iscntrl(). */
626 switch (str[i]) {
627 case '\\':
dd61c4ed 628 bt_common_g_string_append(pretty->string, "\\\\");
93a4161c
JD
629 continue;
630 case '\'':
dd61c4ed 631 bt_common_g_string_append(pretty->string, "\\\'");
93a4161c
JD
632 continue;
633 case '\"':
dd61c4ed 634 bt_common_g_string_append(pretty->string, "\\\"");
93a4161c
JD
635 continue;
636 case '\?':
dd61c4ed 637 bt_common_g_string_append(pretty->string, "\\\?");
93a4161c
JD
638 continue;
639 }
640
641 /* Standard characters. */
642 if (!iscntrl(str[i])) {
dd61c4ed 643 bt_common_g_string_append_c(pretty->string, str[i]);
93a4161c
JD
644 continue;
645 }
646
647 switch (str[i]) {
648 case '\0':
dd61c4ed 649 bt_common_g_string_append(pretty->string, "\\0");
93a4161c
JD
650 break;
651 case '\a':
dd61c4ed 652 bt_common_g_string_append(pretty->string, "\\a");
93a4161c
JD
653 break;
654 case '\b':
dd61c4ed 655 bt_common_g_string_append(pretty->string, "\\b");
93a4161c
JD
656 break;
657 case '\e':
dd61c4ed 658 bt_common_g_string_append(pretty->string, "\\e");
93a4161c
JD
659 break;
660 case '\f':
dd61c4ed 661 bt_common_g_string_append(pretty->string, "\\f");
93a4161c
JD
662 break;
663 case '\n':
dd61c4ed 664 bt_common_g_string_append(pretty->string, "\\n");
93a4161c
JD
665 break;
666 case '\r':
dd61c4ed 667 bt_common_g_string_append(pretty->string, "\\r");
93a4161c
JD
668 break;
669 case '\t':
dd61c4ed 670 bt_common_g_string_append(pretty->string, "\\t");
93a4161c
JD
671 break;
672 case '\v':
dd61c4ed 673 bt_common_g_string_append(pretty->string, "\\v");
93a4161c
JD
674 break;
675 default:
676 /* Unhandled control-sequence, print as hex. */
f354b1e1 677 bt_common_g_string_append_printf(pretty->string, "\\x%02x", str[i]);
93a4161c
JD
678 break;
679 }
680 }
5280f742 681
dd61c4ed 682 bt_common_g_string_append_c(pretty->string, '"');
93a4161c
JD
683}
684
6a18b281 685static
d94d92ac 686int print_enum(struct pretty_component *pretty,
b19ff26f 687 const bt_field *field)
6a18b281 688{
d94d92ac 689 int ret = 0;
b19ff26f 690 const bt_field_class *enumeration_field_class = NULL;
5cd6d0e5 691 bt_field_class_enumeration_mapping_label_array label_array;
44c440bc
PP
692 uint64_t label_count;
693 uint64_t i;
96e8f959 694
40f4ba76 695 enumeration_field_class = bt_field_borrow_class_const(field);
5cd6d0e5 696 if (!enumeration_field_class) {
d94d92ac 697 ret = -1;
96e8f959
MD
698 goto end;
699 }
44c440bc 700
864cad70
PP
701 switch (bt_field_get_class_type(field)) {
702 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
9c08c816 703 ret = bt_field_enumeration_unsigned_get_mapping_labels(field,
44c440bc
PP
704 &label_array, &label_count);
705 break;
864cad70 706 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
9c08c816 707 ret = bt_field_enumeration_signed_get_mapping_labels(field,
44c440bc
PP
708 &label_array, &label_count);
709 break;
710 default:
711 abort();
96e8f959 712 }
44c440bc
PP
713
714 if (ret) {
d94d92ac 715 ret = -1;
96e8f959
MD
716 goto end;
717 }
44c440bc 718
dd61c4ed 719 bt_common_g_string_append(pretty->string, "( ");
44c440bc 720 if (label_count == 0) {
83ef3205 721 if (pretty->use_colors) {
dd61c4ed 722 bt_common_g_string_append(pretty->string, COLOR_UNKNOWN);
83ef3205 723 }
dd61c4ed 724 bt_common_g_string_append(pretty->string, "<unknown>");
83ef3205 725 if (pretty->use_colors) {
dd61c4ed 726 bt_common_g_string_append(pretty->string, COLOR_RST);
83ef3205
MD
727 }
728 goto skip_loop;
96e8f959 729 }
44c440bc
PP
730 for (i = 0; i < label_count; i++) {
731 const char *mapping_name = label_array[i];
96e8f959 732
55c68a1a 733 if (i != 0) {
dd61c4ed 734 bt_common_g_string_append(pretty->string, ", ");
44c440bc 735 }
3228cc1d 736 if (pretty->use_colors) {
dd61c4ed 737 bt_common_g_string_append(pretty->string, COLOR_ENUM_MAPPING_NAME);
ad96d936 738 }
3228cc1d
PP
739 print_escape_string(pretty, mapping_name);
740 if (pretty->use_colors) {
dd61c4ed 741 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 742 }
96e8f959 743 }
83ef3205 744skip_loop:
dd61c4ed 745 bt_common_g_string_append(pretty->string, " : container = ");
312c056a 746 ret = print_integer(pretty, field);
d94d92ac 747 if (ret != 0) {
6a18b281
MD
748 goto end;
749 }
dd61c4ed 750 bt_common_g_string_append(pretty->string, " )");
6a18b281 751end:
6a18b281
MD
752 return ret;
753}
754
755static
d94d92ac 756int print_struct_field(struct pretty_component *pretty,
b19ff26f
PP
757 const bt_field *_struct,
758 const bt_field_class *struct_class,
2f84c7be 759 uint64_t i, bool print_names, uint64_t *nr_printed_fields)
6a18b281 760{
d94d92ac 761 int ret = 0;
6a18b281 762 const char *field_name;
b19ff26f 763 const bt_field *field = NULL;
1e6fd1d7 764 const bt_field_class_structure_member *member;
6a18b281 765
40f4ba76 766 field = bt_field_structure_borrow_member_field_by_index_const(_struct, i);
6a18b281 767 if (!field) {
d94d92ac 768 ret = -1;
6a18b281
MD
769 goto end;
770 }
44c440bc 771
1e6fd1d7
PP
772 member = bt_field_class_structure_borrow_member_by_index_const(
773 struct_class, i);
774 field_name = bt_field_class_structure_member_get_name(member);
6a18b281 775
2b4c4a7c 776 if (*nr_printed_fields > 0) {
dd61c4ed 777 bt_common_g_string_append(pretty->string, ", ");
6a18b281 778 } else {
dd61c4ed 779 bt_common_g_string_append(pretty->string, " ");
6a18b281
MD
780 }
781 if (print_names) {
6acddae3 782 print_field_name_equal(pretty, field_name);
6a18b281 783 }
2f84c7be 784 ret = print_field(pretty, field, print_names);
2b4c4a7c 785 *nr_printed_fields += 1;
a82e90e8 786
6a18b281 787end:
6a18b281
MD
788 return ret;
789}
790
791static
d94d92ac 792int print_struct(struct pretty_component *pretty,
2f84c7be 793 const bt_field *_struct, bool print_names)
6a18b281 794{
d94d92ac 795 int ret = 0;
b19ff26f 796 const bt_field_class *struct_class = NULL;
44c440bc 797 uint64_t nr_fields, i, nr_printed_fields;
6a18b281 798
40f4ba76 799 struct_class = bt_field_borrow_class_const(_struct);
5cd6d0e5 800 if (!struct_class) {
d94d92ac 801 ret = -1;
6a18b281
MD
802 goto end;
803 }
53dc85fa 804
5cd6d0e5 805 nr_fields = bt_field_class_structure_get_member_count(struct_class);
53dc85fa 806
dd61c4ed 807 bt_common_g_string_append(pretty->string, "{");
3228cc1d 808 pretty->depth++;
2b4c4a7c 809 nr_printed_fields = 0;
6a18b281 810 for (i = 0; i < nr_fields; i++) {
5cd6d0e5 811 ret = print_struct_field(pretty, _struct, struct_class, i,
2f84c7be 812 print_names, &nr_printed_fields);
d94d92ac 813 if (ret != 0) {
6a18b281
MD
814 goto end;
815 }
816 }
3228cc1d 817 pretty->depth--;
dd61c4ed 818 bt_common_g_string_append(pretty->string, " }");
a82e90e8 819
6a18b281 820end:
6a18b281
MD
821 return ret;
822}
823
824static
d94d92ac 825int print_array_field(struct pretty_component *pretty,
b19ff26f 826 const bt_field *array, uint64_t i, bool print_names)
6a18b281 827{
b19ff26f 828 const bt_field *field = NULL;
6a18b281 829
44c440bc 830 if (i != 0) {
dd61c4ed 831 bt_common_g_string_append(pretty->string, ", ");
44c440bc 832 } else {
dd61c4ed 833 bt_common_g_string_append(pretty->string, " ");
6a18b281 834 }
44c440bc 835 if (print_names) {
f354b1e1 836 bt_common_g_string_append_printf(pretty->string, "[%" PRIu64 "] = ", i);
6a18b281 837 }
a82e90e8 838
40f4ba76 839 field = bt_field_array_borrow_element_field_by_index_const(array, i);
98b15851 840 BT_ASSERT_DBG(field);
2f84c7be 841 return print_field(pretty, field, print_names);
6a18b281
MD
842}
843
844static
d94d92ac 845int print_array(struct pretty_component *pretty,
b19ff26f 846 const bt_field *array, bool print_names)
6a18b281 847{
d94d92ac 848 int ret = 0;
b19ff26f 849 const bt_field_class *array_class = NULL;
44c440bc 850 uint64_t len;
6a18b281 851 uint64_t i;
6a18b281 852
40f4ba76 853 array_class = bt_field_borrow_class_const(array);
5cd6d0e5 854 if (!array_class) {
d94d92ac 855 ret = -1;
6a18b281
MD
856 goto end;
857 }
44c440bc 858 len = bt_field_array_get_length(array);
dd61c4ed 859 bt_common_g_string_append(pretty->string, "[");
3228cc1d 860 pretty->depth++;
6a18b281 861 for (i = 0; i < len; i++) {
44c440bc 862 ret = print_array_field(pretty, array, i, print_names);
d94d92ac 863 if (ret != 0) {
6a18b281
MD
864 goto end;
865 }
866 }
3228cc1d 867 pretty->depth--;
dd61c4ed 868 bt_common_g_string_append(pretty->string, " ]");
a82e90e8 869
6a18b281 870end:
6a18b281
MD
871 return ret;
872}
873
874static
d94d92ac 875int print_sequence_field(struct pretty_component *pretty,
b19ff26f 876 const bt_field *seq, uint64_t i, bool print_names)
6a18b281 877{
b19ff26f 878 const bt_field *field = NULL;
6a18b281 879
44c440bc 880 if (i != 0) {
dd61c4ed 881 bt_common_g_string_append(pretty->string, ", ");
44c440bc 882 } else {
dd61c4ed 883 bt_common_g_string_append(pretty->string, " ");
6a18b281 884 }
44c440bc 885 if (print_names) {
f354b1e1 886 bt_common_g_string_append_printf(pretty->string, "[%" PRIu64 "] = ", i);
6a18b281 887 }
a82e90e8 888
40f4ba76 889 field = bt_field_array_borrow_element_field_by_index_const(seq, i);
98b15851 890 BT_ASSERT_DBG(field);
2f84c7be 891 return print_field(pretty, field, print_names);
6a18b281
MD
892}
893
894static
d94d92ac 895int print_sequence(struct pretty_component *pretty,
b19ff26f 896 const bt_field *seq, bool print_names)
6a18b281 897{
d94d92ac 898 int ret = 0;
44c440bc 899 uint64_t len;
6a18b281 900 uint64_t i;
6a18b281 901
44c440bc 902 len = bt_field_array_get_length(seq);
dd61c4ed 903 bt_common_g_string_append(pretty->string, "[");
6a18b281 904
3228cc1d 905 pretty->depth++;
6a18b281 906 for (i = 0; i < len; i++) {
44c440bc 907 ret = print_sequence_field(pretty, seq, i, print_names);
d94d92ac 908 if (ret != 0) {
6a18b281
MD
909 goto end;
910 }
911 }
3228cc1d 912 pretty->depth--;
dd61c4ed 913 bt_common_g_string_append(pretty->string, " ]");
a82e90e8 914
6a18b281 915end:
6a18b281
MD
916 return ret;
917}
918
51e61f06
PP
919static
920int print_option(struct pretty_component *pretty,
921 const bt_field *option, bool print_names)
922{
923 int ret = 0;
924 const bt_field *field = NULL;
925
926 field = bt_field_option_borrow_field_const(option);
927 if (field) {
928 bt_common_g_string_append(pretty->string, "{ ");
929 pretty->depth++;
930 if (print_names) {
931 // TODO: find tag's name using field path
932 // print_field_name_equal(pretty, tag_choice);
933 }
934 ret = print_field(pretty, field, print_names);
935 if (ret != 0) {
936 goto end;
937 }
938 pretty->depth--;
939 bt_common_g_string_append(pretty->string, " }");
940 } else {
941 bt_common_g_string_append(pretty->string, "<none>");
942 }
943
944end:
945 return ret;
946}
947
6a18b281 948static
d94d92ac 949int print_variant(struct pretty_component *pretty,
b19ff26f 950 const bt_field *variant, bool print_names)
6a18b281 951{
d94d92ac 952 int ret = 0;
b19ff26f 953 const bt_field *field = NULL;
6a18b281 954
40f4ba76 955 field = bt_field_variant_borrow_selected_option_field_const(variant);
98b15851 956 BT_ASSERT_DBG(field);
dd61c4ed 957 bt_common_g_string_append(pretty->string, "{ ");
3228cc1d 958 pretty->depth++;
6a18b281 959 if (print_names) {
44c440bc
PP
960 // TODO: find tag's name using field path
961 // print_field_name_equal(pretty, tag_choice);
6a18b281 962 }
2f84c7be 963 ret = print_field(pretty, field, print_names);
d94d92ac 964 if (ret != 0) {
6a18b281
MD
965 goto end;
966 }
3228cc1d 967 pretty->depth--;
dd61c4ed 968 bt_common_g_string_append(pretty->string, " }");
a82e90e8 969
6a18b281 970end:
6a18b281
MD
971 return ret;
972}
973
974static
d94d92ac 975int print_field(struct pretty_component *pretty,
2f84c7be 976 const bt_field *field, bool print_names)
6a18b281 977{
4cdfc5e8 978 bt_field_class_type class_id;
6a18b281 979
864cad70 980 class_id = bt_field_get_class_type(field);
ebdb6693 981 if (class_id == BT_FIELD_CLASS_TYPE_BOOL) {
ff87f7c6
PP
982 bt_bool v;
983 const char *text;
984
985 v = bt_field_bool_get_value(field);
986 if (pretty->use_colors) {
987 bt_common_g_string_append(pretty->string, COLOR_NUMBER_VALUE);
988 }
989 if (v) {
990 text = "true";
991 } else {
992 text = "false";
993 }
994 bt_common_g_string_append(pretty->string, text);
995 if (pretty->use_colors) {
996 bt_common_g_string_append(pretty->string, COLOR_RST);
997 }
998 return 0;
ebdb6693 999 } else if (class_id == BT_FIELD_CLASS_TYPE_BIT_ARRAY) {
6be72e6c
PP
1000 uint64_t v = bt_field_bit_array_get_value_as_integer(field);
1001
1002 if (pretty->use_colors) {
1003 bt_common_g_string_append(pretty->string,
1004 COLOR_NUMBER_VALUE);
1005 }
1006 bt_common_g_string_append_printf(pretty->string, "0x%" PRIX64,
1007 v);
1008 if (pretty->use_colors) {
1009 bt_common_g_string_append(pretty->string, COLOR_RST);
1010 }
1011 return 0;
ebdb6693
PP
1012 } else if (bt_field_class_type_is(class_id,
1013 BT_FIELD_CLASS_TYPE_ENUMERATION)) {
1014 return print_enum(pretty, field);
1015 } else if (bt_field_class_type_is(class_id,
1016 BT_FIELD_CLASS_TYPE_INTEGER)) {
3228cc1d 1017 return print_integer(pretty, field);
ebdb6693
PP
1018 } else if (bt_field_class_type_is(class_id,
1019 BT_FIELD_CLASS_TYPE_REAL)) {
6a18b281
MD
1020 double v;
1021
fe4df857 1022 if (class_id == BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL) {
ebdb6693 1023 v = bt_field_real_single_precision_get_value(field);
fe4df857
FD
1024 } else {
1025 v = bt_field_real_double_precision_get_value(field);
1026 }
1027
3228cc1d 1028 if (pretty->use_colors) {
dd61c4ed 1029 bt_common_g_string_append(pretty->string, COLOR_NUMBER_VALUE);
ad96d936 1030 }
f354b1e1 1031 bt_common_g_string_append_printf(pretty->string, "%g", v);
3228cc1d 1032 if (pretty->use_colors) {
dd61c4ed 1033 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 1034 }
d94d92ac 1035 return 0;
ebdb6693 1036 } else if (class_id == BT_FIELD_CLASS_TYPE_STRING) {
95a518bf
JG
1037 const char *str;
1038
50842bdc 1039 str = bt_field_string_get_value(field);
95a518bf 1040 if (!str) {
d94d92ac 1041 return -1;
95a518bf
JG
1042 }
1043
3228cc1d 1044 if (pretty->use_colors) {
dd61c4ed 1045 bt_common_g_string_append(pretty->string, COLOR_STRING_VALUE);
ad96d936 1046 }
95a518bf 1047 print_escape_string(pretty, str);
3228cc1d 1048 if (pretty->use_colors) {
dd61c4ed 1049 bt_common_g_string_append(pretty->string, COLOR_RST);
ad96d936 1050 }
d94d92ac 1051 return 0;
ebdb6693 1052 } else if (class_id == BT_FIELD_CLASS_TYPE_STRUCTURE) {
2f84c7be 1053 return print_struct(pretty, field, print_names);
ebdb6693
PP
1054 } else if (bt_field_class_type_is(class_id,
1055 BT_FIELD_CLASS_TYPE_OPTION)) {
51e61f06 1056 return print_option(pretty, field, print_names);
ebdb6693
PP
1057 } else if (bt_field_class_type_is(class_id,
1058 BT_FIELD_CLASS_TYPE_VARIANT)) {
3228cc1d 1059 return print_variant(pretty, field, print_names);
ebdb6693 1060 } else if (class_id == BT_FIELD_CLASS_TYPE_STATIC_ARRAY) {
3228cc1d 1061 return print_array(pretty, field, print_names);
ebdb6693
PP
1062 } else if (bt_field_class_type_is(class_id,
1063 BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY)) {
3228cc1d 1064 return print_sequence(pretty, field, print_names);
ebdb6693 1065 } else {
5280f742 1066 // TODO: log instead
5cd6d0e5 1067 fprintf(pretty->err, "[error] Unknown type id: %d\n", (int) class_id);
d94d92ac 1068 return -1;
6a18b281
MD
1069 }
1070}
1071
1072static
d94d92ac 1073int print_stream_packet_context(struct pretty_component *pretty,
b19ff26f 1074 const bt_event *event)
6a18b281 1075{
d94d92ac 1076 int ret = 0;
b19ff26f
PP
1077 const bt_packet *packet = NULL;
1078 const bt_field *main_field = NULL;
6a18b281 1079
40f4ba76 1080 packet = bt_event_borrow_packet_const(event);
6a18b281 1081 if (!packet) {
6a18b281
MD
1082 goto end;
1083 }
40f4ba76 1084 main_field = bt_packet_borrow_context_field_const(packet);
6a18b281 1085 if (!main_field) {
6a18b281
MD
1086 goto end;
1087 }
3228cc1d 1088 if (!pretty->start_line) {
dd61c4ed 1089 bt_common_g_string_append(pretty->string, ", ");
6e1bc0df 1090 }
3228cc1d
PP
1091 pretty->start_line = false;
1092 if (pretty->options.print_scope_field_names) {
1093 print_name_equal(pretty, "stream.packet.context");
6a18b281 1094 }
3228cc1d 1095 ret = print_field(pretty, main_field,
2f84c7be 1096 pretty->options.print_context_field_names);
a82e90e8 1097
6a18b281 1098end:
6a18b281
MD
1099 return ret;
1100}
1101
6a18b281 1102static
d94d92ac 1103int print_stream_event_context(struct pretty_component *pretty,
b19ff26f 1104 const bt_event *event)
6a18b281 1105{
d94d92ac 1106 int ret = 0;
b19ff26f 1107 const bt_field *main_field = NULL;
6a18b281 1108
40f4ba76 1109 main_field = bt_event_borrow_common_context_field_const(event);
6a18b281 1110 if (!main_field) {
6a18b281
MD
1111 goto end;
1112 }
3228cc1d 1113 if (!pretty->start_line) {
dd61c4ed 1114 bt_common_g_string_append(pretty->string, ", ");
6e1bc0df 1115 }
3228cc1d
PP
1116 pretty->start_line = false;
1117 if (pretty->options.print_scope_field_names) {
1118 print_name_equal(pretty, "stream.event.context");
6a18b281 1119 }
3228cc1d 1120 ret = print_field(pretty, main_field,
2f84c7be 1121 pretty->options.print_context_field_names);
a82e90e8 1122
6a18b281 1123end:
6a18b281
MD
1124 return ret;
1125}
1126
1127static
d94d92ac 1128int print_event_context(struct pretty_component *pretty,
b19ff26f 1129 const bt_event *event)
6a18b281 1130{
d94d92ac 1131 int ret = 0;
b19ff26f 1132 const bt_field *main_field = NULL;
6a18b281 1133
40f4ba76 1134 main_field = bt_event_borrow_specific_context_field_const(event);
6a18b281 1135 if (!main_field) {
6a18b281
MD
1136 goto end;
1137 }
3228cc1d 1138 if (!pretty->start_line) {
dd61c4ed 1139 bt_common_g_string_append(pretty->string, ", ");
6e1bc0df 1140 }
3228cc1d
PP
1141 pretty->start_line = false;
1142 if (pretty->options.print_scope_field_names) {
1143 print_name_equal(pretty, "event.context");
6a18b281 1144 }
3228cc1d 1145 ret = print_field(pretty, main_field,
2f84c7be 1146 pretty->options.print_context_field_names);
a82e90e8 1147
6a18b281 1148end:
6a18b281
MD
1149 return ret;
1150}
1151
1152static
d94d92ac 1153int print_event_payload(struct pretty_component *pretty,
b19ff26f 1154 const bt_event *event)
6a18b281 1155{
d94d92ac 1156 int ret = 0;
b19ff26f 1157 const bt_field *main_field = NULL;
6a18b281 1158
40f4ba76 1159 main_field = bt_event_borrow_payload_field_const(event);
6a18b281 1160 if (!main_field) {
6a18b281
MD
1161 goto end;
1162 }
3228cc1d 1163 if (!pretty->start_line) {
dd61c4ed 1164 bt_common_g_string_append(pretty->string, ", ");
6e1bc0df 1165 }
3228cc1d
PP
1166 pretty->start_line = false;
1167 if (pretty->options.print_scope_field_names) {
1168 print_name_equal(pretty, "event.fields");
6a18b281 1169 }
3228cc1d 1170 ret = print_field(pretty, main_field,
2f84c7be 1171 pretty->options.print_payload_field_names);
a82e90e8 1172
6a18b281 1173end:
af9a82eb
JG
1174 return ret;
1175}
1176
08899d39 1177static
0f6bea4e 1178int flush_buf(FILE *stream, struct pretty_component *pretty)
08899d39
PP
1179{
1180 int ret = 0;
1181
1182 if (pretty->string->len == 0) {
1183 goto end;
1184 }
1185
0f6bea4e 1186 if (fwrite(pretty->string->str, pretty->string->len, 1, stream) != 1) {
08899d39
PP
1187 ret = -1;
1188 }
1189
1190end:
1191 return ret;
1192}
1193
af9a82eb 1194BT_HIDDEN
d94d92ac 1195int pretty_print_event(struct pretty_component *pretty,
d6e69534 1196 const bt_message *event_msg)
af9a82eb 1197{
d94d92ac 1198 int ret;
b19ff26f 1199 const bt_event *event =
d6e69534 1200 bt_message_event_borrow_event_const(event_msg);
af9a82eb 1201
98b15851 1202 BT_ASSERT_DBG(event);
3228cc1d 1203 pretty->start_line = true;
5280f742 1204 g_string_assign(pretty->string, "");
2c091c04 1205 ret = print_event_header(pretty, event_msg);
d94d92ac 1206 if (ret != 0) {
af9a82eb
JG
1207 goto end;
1208 }
6a18b281 1209
3228cc1d 1210 ret = print_stream_packet_context(pretty, event);
d94d92ac 1211 if (ret != 0) {
6a18b281
MD
1212 goto end;
1213 }
6a18b281 1214
3228cc1d 1215 ret = print_stream_event_context(pretty, event);
d94d92ac 1216 if (ret != 0) {
6a18b281
MD
1217 goto end;
1218 }
6a18b281 1219
3228cc1d 1220 ret = print_event_context(pretty, event);
d94d92ac 1221 if (ret != 0) {
6a18b281
MD
1222 goto end;
1223 }
6a18b281 1224
3228cc1d 1225 ret = print_event_payload(pretty, event);
d94d92ac 1226 if (ret != 0) {
6a18b281
MD
1227 goto end;
1228 }
af9a82eb 1229
dd61c4ed 1230 bt_common_g_string_append_c(pretty->string, '\n');
0f6bea4e 1231 if (flush_buf(pretty->out, pretty)) {
d94d92ac 1232 ret = -1;
5280f742
PP
1233 goto end;
1234 }
1235
af9a82eb
JG
1236end:
1237 return ret;
1238}
0f6bea4e
PP
1239
1240static
8e53bed4
PP
1241int print_discarded_elements_msg(struct pretty_component *pretty,
1242 const bt_stream *stream,
1243 const bt_clock_snapshot *begin_clock_snapshot,
1244 const bt_clock_snapshot *end_clock_snapshot,
0f6bea4e
PP
1245 uint64_t count, const char *elem_type)
1246{
d94d92ac 1247 int ret = 0;
b19ff26f
PP
1248 const bt_stream_class *stream_class = NULL;
1249 const bt_trace *trace = NULL;
0f6bea4e
PP
1250 const char *stream_name;
1251 const char *trace_name;
8e53bed4 1252 bt_uuid trace_uuid;
0f6bea4e
PP
1253 int64_t stream_class_id;
1254 int64_t stream_id;
697f479d 1255 const char *init_msg;
0f6bea4e
PP
1256
1257 /* Stream name */
0f6bea4e 1258 stream_name = bt_stream_get_name(stream);
8e53bed4
PP
1259 if (!stream_name) {
1260 stream_name = "(unknown)";
1261 }
0f6bea4e
PP
1262
1263 /* Stream class ID */
40f4ba76 1264 stream_class = bt_stream_borrow_class_const(stream);
0f6bea4e
PP
1265 BT_ASSERT(stream_class);
1266 stream_class_id = bt_stream_class_get_id(stream_class);
1267
1268 /* Stream ID */
1269 stream_id = bt_stream_get_id(stream);
1270
1271 /* Trace name */
8e53bed4 1272 trace = bt_stream_borrow_trace_const(stream);
0f6bea4e
PP
1273 BT_ASSERT(trace);
1274 trace_name = bt_trace_get_name(trace);
1275 if (!trace_name) {
1276 trace_name = "(unknown)";
1277 }
1278
1279 /* Trace UUID */
335a2da5 1280 trace_uuid = bt_trace_get_uuid(trace);
0f6bea4e
PP
1281
1282 /* Format message */
1283 g_string_assign(pretty->string, "");
697f479d
PP
1284
1285 if (count == UINT64_C(-1)) {
1286 init_msg = "Tracer may have discarded";
1287 } else {
1288 init_msg = "Tracer discarded";
1289 }
1290
f354b1e1 1291 bt_common_g_string_append_printf(pretty->string,
697f479d 1292 "%s%sWARNING%s%s: %s ",
0f6bea4e
PP
1293 bt_common_color_fg_yellow(),
1294 bt_common_color_bold(),
1295 bt_common_color_reset(),
697f479d 1296 bt_common_color_fg_yellow(), init_msg);
8e53bed4
PP
1297
1298 if (count == UINT64_C(-1)) {
f354b1e1 1299 bt_common_g_string_append_printf(pretty->string, "%ss", elem_type);
8e53bed4 1300 } else {
f354b1e1 1301 bt_common_g_string_append_printf(pretty->string,
8e53bed4
PP
1302 "%" PRIu64 " %s%s", count, elem_type,
1303 count == 1 ? "" : "s");
1304 }
0f6bea4e 1305
dd61c4ed 1306 bt_common_g_string_append_c(pretty->string, ' ');
3f2f6b21 1307
605e1019 1308 if (begin_clock_snapshot && end_clock_snapshot) {
dd61c4ed 1309 bt_common_g_string_append(pretty->string, "between [");
9c202476 1310 print_timestamp_wall(pretty, begin_clock_snapshot, false);
dd61c4ed 1311 bt_common_g_string_append(pretty->string, "] and [");
9c202476 1312 print_timestamp_wall(pretty, end_clock_snapshot, false);
dd61c4ed 1313 bt_common_g_string_append(pretty->string, "]");
0f6bea4e 1314 } else {
dd61c4ed 1315 bt_common_g_string_append(pretty->string, "(unknown time range)");
0f6bea4e
PP
1316 }
1317
f354b1e1 1318 bt_common_g_string_append_printf(pretty->string, " in trace \"%s\" ", trace_name);
0f6bea4e
PP
1319
1320 if (trace_uuid) {
f354b1e1 1321 bt_common_g_string_append_printf(pretty->string,
6162e6b7
MJ
1322 "(UUID: " BT_UUID_FMT ") ",
1323 BT_UUID_FMT_VALUES(trace_uuid));
0f6bea4e 1324 } else {
dd61c4ed 1325 bt_common_g_string_append(pretty->string, "(no UUID) ");
0f6bea4e
PP
1326 }
1327
f354b1e1 1328 bt_common_g_string_append_printf(pretty->string,
8e53bed4 1329 "within stream \"%s\" (stream class ID: %" PRIu64 ", ",
0f6bea4e
PP
1330 stream_name, stream_class_id);
1331
1332 if (stream_id >= 0) {
f354b1e1 1333 bt_common_g_string_append_printf(pretty->string,
8e53bed4 1334 "stream ID: %" PRIu64, stream_id);
0f6bea4e 1335 } else {
dd61c4ed 1336 bt_common_g_string_append(pretty->string, "no stream ID");
0f6bea4e
PP
1337 }
1338
f354b1e1 1339 bt_common_g_string_append_printf(pretty->string, ").%s\n",
0f6bea4e
PP
1340 bt_common_color_reset());
1341
1342 /*
1343 * Print to standard error stream to remain backward compatible
1344 * with Babeltrace 1.
1345 */
1346 if (flush_buf(stderr, pretty)) {
d94d92ac 1347 ret = -1;
0f6bea4e
PP
1348 }
1349
1350 return ret;
1351}
1352
1353BT_HIDDEN
8e53bed4
PP
1354int pretty_print_discarded_items(struct pretty_component *pretty,
1355 const bt_message *msg)
0f6bea4e 1356{
8e53bed4
PP
1357 const bt_clock_snapshot *begin = NULL;
1358 const bt_clock_snapshot *end = NULL;
1359 const bt_stream *stream;
1360 const bt_stream_class *stream_class;
1361 uint64_t count = UINT64_C(-1);
1362 const char *elem_type;
1363
1364 switch (bt_message_get_type(msg)) {
1365 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1366 stream = bt_message_discarded_events_borrow_stream_const(msg);
1367
1368 if (bt_message_discarded_events_get_count(msg, &count) ==
1369 BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE) {
1370 count = UINT64_C(-1);
0f6bea4e 1371 }
8e53bed4
PP
1372
1373 elem_type = "event";
1374 break;
1375 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
1376 stream = bt_message_discarded_packets_borrow_stream_const(msg);
1377
1378 if (bt_message_discarded_packets_get_count(msg, &count) ==
1379 BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE) {
1380 count = UINT64_C(-1);
1381 }
1382
1383 elem_type = "packet";
1384 break;
1385 default:
1386 abort();
0f6bea4e
PP
1387 }
1388
8e53bed4
PP
1389 BT_ASSERT(stream);
1390 stream_class = bt_stream_borrow_class_const(stream);
1391
2e90378a
PP
1392 switch (bt_message_get_type(msg)) {
1393 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1394 if (bt_stream_class_discarded_events_have_default_clock_snapshots(
1395 stream_class)) {
9b24b6aa 1396 begin = bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(
0cbc2c33 1397 msg);
9b24b6aa 1398 end = bt_message_discarded_events_borrow_end_default_clock_snapshot_const(
0cbc2c33 1399 msg);
2e90378a
PP
1400 }
1401
1402 break;
1403 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
1404 if (bt_stream_class_discarded_packets_have_default_clock_snapshots(
1405 stream_class)) {
9b24b6aa 1406 begin = bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(
0cbc2c33 1407 msg);
9b24b6aa 1408 end = bt_message_discarded_packets_borrow_end_default_clock_snapshot_const(
0cbc2c33 1409 msg);
0f6bea4e 1410 }
2e90378a
PP
1411
1412 break;
1413 default:
1414 abort();
0f6bea4e
PP
1415 }
1416
8e53bed4
PP
1417 print_discarded_elements_msg(pretty, stream, begin, end,
1418 count, elem_type);
44c440bc 1419 return 0;
0f6bea4e 1420}
This page took 0.146937 seconds and 4 git commands to generate.