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