action list: missing renames from previous name "group"
[lttng-tools.git] / src / bin / lttng / utils.h
CommitLineData
f3ed775e 1/*
ab5be9fa 2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
f3ed775e 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
f3ed775e 5 *
f3ed775e
DG
6 */
7
8#ifndef _LTTNG_UTILS_H
9#define _LTTNG_UTILS_H
10
679b4943 11#include <popt.h>
e358ddd5
JG
12#include <common/argpar/argpar.h>
13#include <common/dynamic-array.h>
679b4943 14
b9dfb167
DG
15#include <lttng/lttng.h>
16
8960e9cd 17extern char *opt_relayd_path;
92360082
JG
18extern int opt_no_sessiond;
19extern char * opt_sessiond_path;
92360082 20extern pid_t sessiond_pid;
8960e9cd 21
3c9bd23c
SM
22struct cmd_struct;
23
f3ed775e 24char *get_session_name(void);
1dac0189 25char *get_session_name_quiet(void);
3c9bd23c 26void list_commands(struct cmd_struct *commands, FILE *ofp);
679b4943 27void list_cmd_options(FILE *ofp, struct poptOption *options);
b083f028 28void list_cmd_options_argpar(FILE *ofp, const struct argpar_opt_descr *options);
f3ed775e 29
8ce58bad
MD
30/*
31 * Return the minimum order for which x <= (1UL << order).
32 * Return -1 if x is 0.
33 */
34int get_count_order_u32(uint32_t x);
35
36/*
37 * Return the minimum order for which x <= (1UL << order).
38 * Return -1 if x is 0.
39 */
40int get_count_order_u64(uint64_t x);
41
42/*
43 * Return the minimum order for which x <= (1UL << order).
44 * Return -1 if x is 0.
45 */
46int get_count_order_ulong(unsigned long x);
47
b9dfb167 48const char *get_domain_str(enum lttng_domain_type domain);
4fd2697f 49const char *get_event_type_str(enum lttng_event_type event_type);
b9dfb167 50
3533d06b
JG
51int print_missing_or_multiple_domains(unsigned int domain_count,
52 bool include_agent_domains);
b9dfb167 53
8960e9cd
DG
54int spawn_relayd(const char *pathname, int port);
55int check_relayd(void);
20fb9e02 56void print_session_stats(const char *session_name);
58f237ca 57int get_session_stats_str(const char *session_name, char **str);
4fc83d94 58int show_cmd_help(const char *cmd_name, const char *help_msg);
8960e9cd 59
bbbfd849
JG
60int print_trace_archive_location(
61 const struct lttng_trace_archive_location *location,
62 const char *session_name);
63
e358ddd5
JG
64int validate_exclusion_list(const char *event_name,
65 const struct lttng_dynamic_pointer_array *exclusions);
66
f3ed775e 67#endif /* _LTTNG_UTILS_H */
This page took 0.056739 seconds and 4 git commands to generate.