Logging: pass dynamic log level to common functions and subsystems
[babeltrace.git] / src / common / common.h
1 #ifndef BABELTRACE_COMMON_INTERNAL_H
2 #define BABELTRACE_COMMON_INTERNAL_H
3
4 /*
5 * Copyright (c) 2018 EfficiOS Inc. and Linux Foundation
6 * Copyright (c) 2018 Philippe Proulx <pproulx@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26
27 #include <errno.h>
28 #include <glib.h>
29 #include <inttypes.h>
30 #include <stdarg.h>
31 #include <stdbool.h>
32 #include <stdint.h>
33 #include <stdlib.h>
34 #include <unistd.h>
35
36 #include <babeltrace2/graph/self-message-iterator.h>
37 #include <babeltrace2/trace-ir/event-class-const.h>
38 #include <babeltrace2/trace-ir/field-class-const.h>
39 #include <babeltrace2/trace-ir/field-path-const.h>
40 #include <babeltrace2/logging.h>
41 #include <babeltrace2/value.h>
42
43 #include "common/assert.h"
44 #include "common/macros.h"
45 #include "common/safe.h"
46
47 #define BT_COMMON_COLOR_RESET "\033[0m"
48 #define BT_COMMON_COLOR_BOLD "\033[1m"
49 #define BT_COMMON_COLOR_FG_DEFAULT "\033[39m"
50 #define BT_COMMON_COLOR_FG_RED "\033[31m"
51 #define BT_COMMON_COLOR_FG_GREEN "\033[32m"
52 #define BT_COMMON_COLOR_FG_YELLOW "\033[33m"
53 #define BT_COMMON_COLOR_FG_BLUE "\033[34m"
54 #define BT_COMMON_COLOR_FG_MAGENTA "\033[35m"
55 #define BT_COMMON_COLOR_FG_CYAN "\033[36m"
56 #define BT_COMMON_COLOR_FG_LIGHT_GRAY "\033[37m"
57 #define BT_COMMON_COLOR_BG_DEFAULT "\033[49m"
58 #define BT_COMMON_COLOR_BG_RED "\033[41m"
59 #define BT_COMMON_COLOR_BG_GREEN "\033[42m"
60 #define BT_COMMON_COLOR_BG_YELLOW "\033[43m"
61 #define BT_COMMON_COLOR_BG_BLUE "\033[44m"
62 #define BT_COMMON_COLOR_BG_MAGENTA "\033[45m"
63 #define BT_COMMON_COLOR_BG_CYAN "\033[46m"
64 #define BT_COMMON_COLOR_BG_LIGHT_GRAY "\033[47m"
65
66 struct bt_common_lttng_live_url_parts {
67 GString *proto;
68 GString *hostname;
69 GString *target_hostname;
70 GString *session_name;
71
72 /* -1 means default port */
73 int port;
74 };
75
76 /*
77 * Checks if the current process has setuid or setgid access rights.
78 * Returns `true` if so.
79 */
80 BT_HIDDEN
81 bool bt_common_is_setuid_setgid(void);
82
83 /*
84 * Returns the system-wide plugin path, e.g.
85 * `/usr/lib/babeltrace2/plugins`. Do not free the return value.
86 */
87 BT_HIDDEN
88 const char *bt_common_get_system_plugin_path(void);
89
90 /*
91 * Returns the user plugin path, e.g.
92 * `/home/user/.local/lib/babeltrace2/plugins`. You need to free the
93 * return value.
94 */
95 BT_HIDDEN
96 char *bt_common_get_home_plugin_path(int log_level);
97
98 /*
99 * Appends the list of directories in `paths` to the array `dirs`.
100 * `paths` is a list of directories separated by `:`. Returns 0 on
101 * success.
102 */
103 BT_HIDDEN
104 int bt_common_append_plugin_path_dirs(const char *paths, GPtrArray *dirs);
105
106 /*
107 * Returns `true` if terminal color codes are supported for this
108 * process.
109 */
110 BT_HIDDEN
111 bool bt_common_colors_supported(void);
112
113 BT_HIDDEN
114 const char *bt_common_color_reset(void);
115
116 BT_HIDDEN
117 const char *bt_common_color_bold(void);
118
119 BT_HIDDEN
120 const char *bt_common_color_fg_default(void);
121
122 BT_HIDDEN
123 const char *bt_common_color_fg_red(void);
124
125 BT_HIDDEN
126 const char *bt_common_color_fg_green(void);
127
128 BT_HIDDEN
129 const char *bt_common_color_fg_yellow(void);
130
131 BT_HIDDEN
132 const char *bt_common_color_fg_blue(void);
133
134 BT_HIDDEN
135 const char *bt_common_color_fg_magenta(void);
136
137 BT_HIDDEN
138 const char *bt_common_color_fg_cyan(void);
139
140 BT_HIDDEN
141 const char *bt_common_color_fg_light_gray(void);
142
143 BT_HIDDEN
144 const char *bt_common_color_bg_default(void);
145
146 BT_HIDDEN
147 const char *bt_common_color_bg_red(void);
148
149 BT_HIDDEN
150 const char *bt_common_color_bg_green(void);
151
152 BT_HIDDEN
153 const char *bt_common_color_bg_yellow(void);
154
155 BT_HIDDEN
156 const char *bt_common_color_bg_blue(void);
157
158 BT_HIDDEN
159 const char *bt_common_color_bg_magenta(void);
160
161 BT_HIDDEN
162 const char *bt_common_color_bg_cyan(void);
163
164 BT_HIDDEN
165 const char *bt_common_color_bg_light_gray(void);
166
167 /*
168 * Returns the substring from `input` to the first character found
169 * in the list of characters `end_chars`, unescaping any character
170 * found in `escapable_chars`, and sets `*end_pos` to the position of
171 * the end (from `input`). The caller owns the returned GString.
172 */
173 BT_HIDDEN
174 GString *bt_common_string_until(const char *input, const char *escapable_chars,
175 const char *end_chars, size_t *end_pos);
176
177 /*
178 * Returns the quoted version of `input` for a shell. If
179 * `with_single_quotes` is `true`, prepends and appends the `'` prefix
180 * and suffix to the returned string; otherwise the caller should
181 * prepend and append them manually, although they are not always
182 * required. The caller owns the returned GString.
183 */
184 BT_HIDDEN
185 GString *bt_common_shell_quote(const char *input, bool with_single_quotes);
186
187 /*
188 * Returns `true` if `input` is a string made only of printable
189 * characters.
190 */
191 BT_HIDDEN
192 bool bt_common_string_is_printable(const char *input);
193
194 /*
195 * Destroys the parts of an LTTng live URL as returned by
196 * bt_common_parse_lttng_live_url().
197 */
198 BT_HIDDEN
199 void bt_common_destroy_lttng_live_url_parts(
200 struct bt_common_lttng_live_url_parts *parts);
201
202 /*
203 * Parses the LTTng live URL `url` and returns its different parts.
204 * If there's an error, writes the error message into `*error_buf`
205 * up to `error_buf_size` bytes. You must destroy the returned value
206 * with bt_common_destroy_lttng_live_url_parts().
207 */
208 BT_HIDDEN
209 struct bt_common_lttng_live_url_parts bt_common_parse_lttng_live_url(
210 const char *url, char *error_buf, size_t error_buf_size);
211
212 /*
213 * Normalizes (in place) a star globbing pattern to be used with
214 * bt_common_star_glob_match(). This function always succeeds.
215 */
216 BT_HIDDEN
217 void bt_common_normalize_star_glob_pattern(char *pattern);
218
219 /*
220 * Returns `true` if `candidate` (of size `candidate_len`) matches
221 * the star globbing pattern `pattern` (of size `pattern_len`).
222 */
223 BT_HIDDEN
224 bool bt_common_star_glob_match(const char *pattern, size_t pattern_len,
225 const char *candidate, size_t candidate_len);
226
227 /*
228 * Normalizes the path `path`:
229 *
230 * * If it's a relative path, converts it to an absolute path using
231 * `wd` as the working directory (or the current working directory
232 * if `wd` is NULL).
233 * * Removes consecutive and trailing slashes.
234 * * Resolves `..` and `.` in the path (both in `path` and in `wd`).
235 * * Does NOT resolve symbolic links.
236 *
237 * The caller owns the returned GString.
238 */
239 BT_HIDDEN
240 GString *bt_common_normalize_path(const char *path, const char *wd);
241
242 typedef void (* bt_common_handle_custom_specifier_func)(void *priv_data,
243 char **buf, size_t avail_size, const char **fmt, va_list *args);
244
245 /*
246 * This is a custom vsnprintf() which handles the standard conversion
247 * specifier as well as custom ones.
248 *
249 * `fmt` is a typical printf()-style format string, with the following
250 * limitations:
251 *
252 * * The `*` width specifier is not accepted.
253 * * The `*` precision specifier is not accepted.
254 * * The `j` and `t` length modifiers are not accepted.
255 * * The `n` format specifier is not accepted.
256 * * The format specifiers defined in <inttypes.h> are not accepted
257 * except for `PRId64`, `PRIu64`, `PRIx64`, `PRIX64`, `PRIo64`, and
258 * `PRIi64`.
259 *
260 * `intro` specifies which special character immediately following an
261 * introductory `%` character in `fmt` is used to indicate a custom
262 * conversion specifier. For example, if `intro` is '@', then any `%@`
263 * sequence in `fmt` is the beginning of a custom conversion specifier.
264 *
265 * When a custom conversion specifier is encountered in `fmt`,
266 * the function calls `handle_specifier`. This callback receives:
267 *
268 * `priv_data`:
269 * Custom, private data.
270 *
271 * `buf`:
272 * Address of the current buffer pointer. `*buf` is the position to
273 * append new data. The callback must update `*buf` when appending
274 * new data. The callback must ensure not to write passed the whole
275 * buffer passed to bt_common_custom_vsnprintf().
276 *
277 * `avail_size`:
278 * Number of bytes left in whole buffer from the `*buf` point.
279 *
280 * `fmt`:
281 * Address of the current format string pointer. `*fmt` points to
282 * the introductory `%` character, which is followed by the
283 * character `intro`. The callback must update `*fmt` so that it
284 * points after the whole custom conversion specifier.
285 *
286 * `args`:
287 * Variable argument list. Use va_arg() to get new arguments from
288 * this list and update it at the same time.
289 *
290 * Because this is an internal utility, this function and its callback
291 * do not return error codes: they abort when there's any error (bad
292 * format string, for example).
293 */
294 BT_HIDDEN
295 void bt_common_custom_vsnprintf(char *buf, size_t buf_size,
296 char intro,
297 bt_common_handle_custom_specifier_func handle_specifier,
298 void *priv_data, const char *fmt, va_list *args);
299
300 /*
301 * Variadic form of bt_common_custom_vsnprintf().
302 */
303 BT_HIDDEN
304 void bt_common_custom_snprintf(char *buf, size_t buf_size,
305 char intro,
306 bt_common_handle_custom_specifier_func handle_specifier,
307 void *priv_data, const char *fmt, ...);
308
309 /*
310 * Returns the system page size.
311 */
312 BT_HIDDEN
313 size_t bt_common_get_page_size(int log_level);
314
315 /*
316 * Adds the digit separator `sep` as many times as needed to form groups
317 * of `digits_per_group` digits within `str`. `str` must have enough
318 * room to accomodate the new separators, that is:
319 *
320 * strlen(str) + (strlen(str) / digits_per_group) + 1
321 *
322 * Example: with `str` `1983198398213`, `digits_per_group` 3, and `sep`
323 * `,`, `str` becomes `1,983,198,398,213`.
324 *
325 * `strlen(str)` must not be 0. `digits_per_group` must not be 0. `sep`
326 * must not be `\0`.
327 */
328 BT_HIDDEN
329 void bt_common_sep_digits(char *str, unsigned int digits_per_group, char sep);
330
331 /*
332 * Wraps read() function to handle EINTR and partial reads.
333 * On success, it returns `count` received as parameter. On error, it returns a
334 * value smaller than the requested `count`.
335 */
336 static inline
337 ssize_t bt_common_read(int fd, void *buf, size_t count, int log_level)
338 {
339 size_t i = 0;
340 ssize_t ret;
341
342 BT_ASSERT(buf);
343
344 /* Never return an overflow value. */
345 BT_ASSERT(count <= SSIZE_MAX);
346
347 do {
348 ret = read(fd, buf + i, count - i);
349 if (ret < 0) {
350 if (errno == EINTR) {
351 #ifdef BT_LOG_WRITE_CUR_LVL
352 BT_LOG_WRITE_CUR_LVL(BT_LOG_DEBUG, log_level,
353 BT_LOG_TAG,
354 "read() call interrupted; retrying...");
355 #endif
356 /* retry operation */
357 continue;
358 } else {
359 #ifdef BT_LOG_WRITE_ERRNO_CUR_LVL
360 BT_LOG_WRITE_ERRNO_CUR_LVL(BT_LOG_ERROR,
361 log_level, BT_LOG_TAG,
362 "Error while reading", ": fd=%d", fd);
363 #endif
364 goto end;
365 }
366 }
367 i += ret;
368 BT_ASSERT(i <= count);
369 } while (count - i > 0 && ret > 0);
370
371 end:
372 if (ret >= 0) {
373 if (i == 0) {
374 ret = -1;
375 } else {
376 ret = i;
377 }
378 }
379
380 return ret;
381 }
382
383 static inline
384 const char *bt_common_field_class_type_string(enum bt_field_class_type class_type)
385 {
386 switch (class_type) {
387 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
388 return "BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER";
389 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER:
390 return "BT_FIELD_CLASS_TYPE_SIGNED_INTEGER";
391 case BT_FIELD_CLASS_TYPE_REAL:
392 return "BT_FIELD_CLASS_TYPE_REAL";
393 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
394 return "BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION";
395 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
396 return "BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION";
397 case BT_FIELD_CLASS_TYPE_STRING:
398 return "BT_FIELD_CLASS_TYPE_STRING";
399 case BT_FIELD_CLASS_TYPE_STRUCTURE:
400 return "BT_FIELD_CLASS_TYPE_STRUCTURE";
401 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
402 return "BT_FIELD_CLASS_TYPE_STATIC_ARRAY";
403 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY:
404 return "BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY";
405 case BT_FIELD_CLASS_TYPE_VARIANT:
406 return "BT_FIELD_CLASS_TYPE_VARIANT";
407 default:
408 return "(unknown)";
409 }
410 };
411
412 static inline
413 const char *bt_common_field_class_integer_preferred_display_base_string(enum bt_field_class_integer_preferred_display_base base)
414 {
415 switch (base) {
416 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY:
417 return "BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_BINARY";
418 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL:
419 return "BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL";
420 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL:
421 return "BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_DECIMAL";
422 case BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL:
423 return "BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL";
424 default:
425 return "(unknown)";
426 }
427 }
428
429 static inline
430 const char *bt_common_scope_string(enum bt_scope scope)
431 {
432 switch (scope) {
433 case BT_SCOPE_PACKET_CONTEXT:
434 return "BT_SCOPE_PACKET_CONTEXT";
435 case BT_SCOPE_EVENT_COMMON_CONTEXT:
436 return "BT_SCOPE_EVENT_COMMON_CONTEXT";
437 case BT_SCOPE_EVENT_SPECIFIC_CONTEXT:
438 return "BT_SCOPE_EVENT_SPECIFIC_CONTEXT";
439 case BT_SCOPE_EVENT_PAYLOAD:
440 return "BT_SCOPE_EVENT_PAYLOAD";
441 default:
442 return "(unknown)";
443 }
444 }
445
446 static inline
447 const char *bt_common_event_class_log_level_string(
448 enum bt_event_class_log_level level)
449 {
450 switch (level) {
451 case BT_EVENT_CLASS_LOG_LEVEL_EMERGENCY:
452 return "BT_EVENT_CLASS_LOG_LEVEL_EMERGENCY";
453 case BT_EVENT_CLASS_LOG_LEVEL_ALERT:
454 return "BT_EVENT_CLASS_LOG_LEVEL_ALERT";
455 case BT_EVENT_CLASS_LOG_LEVEL_CRITICAL:
456 return "BT_EVENT_CLASS_LOG_LEVEL_CRITICAL";
457 case BT_EVENT_CLASS_LOG_LEVEL_ERROR:
458 return "BT_EVENT_CLASS_LOG_LEVEL_ERROR";
459 case BT_EVENT_CLASS_LOG_LEVEL_WARNING:
460 return "BT_EVENT_CLASS_LOG_LEVEL_WARNING";
461 case BT_EVENT_CLASS_LOG_LEVEL_NOTICE:
462 return "BT_EVENT_CLASS_LOG_LEVEL_NOTICE";
463 case BT_EVENT_CLASS_LOG_LEVEL_INFO:
464 return "BT_EVENT_CLASS_LOG_LEVEL_INFO";
465 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM:
466 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM";
467 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM:
468 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM";
469 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS:
470 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS";
471 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE:
472 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE";
473 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT:
474 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT";
475 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION:
476 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION";
477 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG_LINE:
478 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG_LINE";
479 case BT_EVENT_CLASS_LOG_LEVEL_DEBUG:
480 return "BT_EVENT_CLASS_LOG_LEVEL_DEBUG";
481 default:
482 return "(unknown)";
483 }
484 };
485
486 static inline
487 const char *bt_common_value_type_string(enum bt_value_type type)
488 {
489 switch (type) {
490 case BT_VALUE_TYPE_NULL:
491 return "BT_VALUE_TYPE_NULL";
492 case BT_VALUE_TYPE_BOOL:
493 return "BT_VALUE_TYPE_BOOL";
494 case BT_VALUE_TYPE_UNSIGNED_INTEGER:
495 return "BT_VALUE_TYPE_UNSIGNED_INTEGER";
496 case BT_VALUE_TYPE_SIGNED_INTEGER:
497 return "BT_VALUE_TYPE_SIGNED_INTEGER";
498 case BT_VALUE_TYPE_REAL:
499 return "BT_VALUE_TYPE_REAL";
500 case BT_VALUE_TYPE_STRING:
501 return "BT_VALUE_TYPE_STRING";
502 case BT_VALUE_TYPE_ARRAY:
503 return "BT_VALUE_TYPE_ARRAY";
504 case BT_VALUE_TYPE_MAP:
505 return "BT_VALUE_TYPE_MAP";
506 default:
507 return "(unknown)";
508 }
509 };
510
511 static inline
512 GString *bt_common_field_path_string(struct bt_field_path *path)
513 {
514 GString *str = g_string_new(NULL);
515 uint64_t i;
516
517 BT_ASSERT(path);
518
519 if (!str) {
520 goto end;
521 }
522
523 g_string_append_printf(str, "[%s", bt_common_scope_string(
524 bt_field_path_get_root_scope(path)));
525
526 for (i = 0; i < bt_field_path_get_item_count(path); i++) {
527 const struct bt_field_path_item *fp_item =
528 bt_field_path_borrow_item_by_index_const(path, i);
529
530 switch (bt_field_path_item_get_type(fp_item)) {
531 case BT_FIELD_PATH_ITEM_TYPE_INDEX:
532 g_string_append_printf(str, ", %" PRIu64,
533 bt_field_path_item_index_get_index(fp_item));
534 break;
535 case BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT:
536 g_string_append(str, ", <CUR>");
537 break;
538 default:
539 abort();
540 }
541 }
542
543 g_string_append(str, "]");
544
545 end:
546 return str;
547 }
548
549 static inline
550 const char *bt_common_self_message_iterator_status_string(
551 enum bt_self_message_iterator_status status)
552 {
553 switch (status) {
554 case BT_SELF_MESSAGE_ITERATOR_STATUS_AGAIN:
555 return "BT_SELF_MESSAGE_ITERATOR_STATUS_AGAIN";
556 case BT_SELF_MESSAGE_ITERATOR_STATUS_END:
557 return "BT_SELF_MESSAGE_ITERATOR_STATUS_END";
558 case BT_SELF_MESSAGE_ITERATOR_STATUS_OK:
559 return "BT_SELF_MESSAGE_ITERATOR_STATUS_OK";
560 case BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR:
561 return "BT_SELF_MESSAGE_ITERATOR_STATUS_ERROR";
562 case BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM:
563 return "BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM";
564 default:
565 return "(unknown)";
566 }
567 };
568
569 static inline
570 const char *bt_common_logging_level_string(
571 enum bt_logging_level level)
572 {
573 switch (level) {
574 case BT_LOGGING_LEVEL_VERBOSE:
575 return "BT_LOGGING_LEVEL_VERBOSE";
576 case BT_LOGGING_LEVEL_DEBUG:
577 return "BT_LOGGING_LEVEL_DEBUG";
578 case BT_LOGGING_LEVEL_INFO:
579 return "BT_LOGGING_LEVEL_INFO";
580 case BT_LOGGING_LEVEL_WARN:
581 return "BT_LOGGING_LEVEL_WARN";
582 case BT_LOGGING_LEVEL_ERROR:
583 return "BT_LOGGING_LEVEL_ERROR";
584 case BT_LOGGING_LEVEL_FATAL:
585 return "BT_LOGGING_LEVEL_FATAL";
586 case BT_LOGGING_LEVEL_NONE:
587 return "BT_LOGGING_LEVEL_NONE";
588 default:
589 return "(unknown)";
590 }
591 };
592
593 #define NS_PER_S_I INT64_C(1000000000)
594 #define NS_PER_S_U UINT64_C(1000000000)
595
596 static inline
597 int bt_common_clock_value_from_ns_from_origin(
598 int64_t cc_offset_seconds, uint64_t cc_offset_cycles,
599 uint64_t cc_freq, int64_t ns_from_origin,
600 uint64_t *raw_value)
601 {
602 int ret = 0;
603 int64_t offset_in_ns;
604 uint64_t value_in_ns;
605 uint64_t rem_value_in_ns;
606 uint64_t value_periods;
607 uint64_t value_period_cycles;
608 int64_t ns_to_add;
609
610 BT_ASSERT(raw_value);
611
612 /* Compute offset part of requested value, in nanoseconds */
613 if (!bt_safe_to_mul_int64(cc_offset_seconds, NS_PER_S_I)) {
614 ret = -1;
615 goto end;
616 }
617
618 offset_in_ns = cc_offset_seconds * NS_PER_S_I;
619
620 if (cc_freq == NS_PER_S_U) {
621 ns_to_add = (int64_t) cc_offset_cycles;
622 } else {
623 if (!bt_safe_to_mul_int64((int64_t) cc_offset_cycles,
624 NS_PER_S_I)) {
625 ret = -1;
626 goto end;
627 }
628
629 ns_to_add = ((int64_t) cc_offset_cycles * NS_PER_S_I) /
630 (int64_t) cc_freq;
631 }
632
633 if (!bt_safe_to_add_int64(offset_in_ns, ns_to_add)) {
634 ret = -1;
635 goto end;
636 }
637
638 offset_in_ns += ns_to_add;
639
640 /* Value part in nanoseconds */
641 if (ns_from_origin < offset_in_ns) {
642 ret = -1;
643 goto end;
644 }
645
646 value_in_ns = (uint64_t) (ns_from_origin - offset_in_ns);
647
648 /* Number of whole clock periods in `value_in_ns` */
649 value_periods = value_in_ns / NS_PER_S_U;
650
651 /* Remaining nanoseconds in cycles + whole clock periods in cycles */
652 rem_value_in_ns = value_in_ns - value_periods * NS_PER_S_U;
653
654 if (value_periods > UINT64_MAX / cc_freq) {
655 ret = -1;
656 goto end;
657 }
658
659 if (!bt_safe_to_mul_uint64(value_periods, cc_freq)) {
660 ret = -1;
661 goto end;
662 }
663
664 value_period_cycles = value_periods * cc_freq;
665
666 if (!bt_safe_to_mul_uint64(cc_freq, rem_value_in_ns)) {
667 ret = -1;
668 goto end;
669 }
670
671 if (!bt_safe_to_add_uint64(cc_freq * rem_value_in_ns / NS_PER_S_U,
672 value_period_cycles)) {
673 ret = -1;
674 goto end;
675 }
676
677 *raw_value = cc_freq * rem_value_in_ns / NS_PER_S_U +
678 value_period_cycles;
679
680 end:
681 return ret;
682 }
683
684 static inline
685 enum bt_self_message_iterator_status bt_common_message_iterator_status_to_self(
686 enum bt_message_iterator_status status)
687 {
688 return (int) status;
689 }
690
691 #endif /* BABELTRACE_COMMON_INTERNAL_H */
This page took 0.053928 seconds and 5 git commands to generate.