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