SoW-2020-0003: Trace Hit Counters
[lttng-tools.git] / include / lttng / log-level-rule-internal.h
1 /*
2 * Copyright (C) 2020 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #ifndef LTTNG_LOG_LEVEL_RULE_INTERNAL_H
9 #define LTTNG_LOG_LEVEL_RULE_INTERNAL_H
10
11 #include <stdint.h>
12
13 #include <common/buffer-view.h>
14 #include <common/dynamic-array.h>
15 #include <common/macros.h>
16 #include <common/payload-view.h>
17 #include <common/payload.h>
18 #include <lttng/event.h>
19 #include <lttng/log-level-rule.h>
20
21 /*
22 * For now only a single backing struct is used for both type of log level
23 * rule (exactly, as_severe) since both only have a "level" as property.
24 */
25 struct lttng_log_level_rule {
26 enum lttng_log_level_rule_type type;
27
28 /* Property */
29 int level;
30 };
31
32 struct lttng_log_level_rule_comm {
33 /* enum lttng_log_level_rule_type */
34 int8_t type;
35 int32_t level;
36 };
37
38 LTTNG_HIDDEN
39 ssize_t lttng_log_level_rule_create_from_payload(
40 struct lttng_payload_view *view,
41 struct lttng_log_level_rule **rule);
42
43 LTTNG_HIDDEN
44 int lttng_log_level_rule_serialize(const struct lttng_log_level_rule *rule,
45 struct lttng_payload *payload);
46
47 LTTNG_HIDDEN
48 bool lttng_log_level_rule_is_equal(const struct lttng_log_level_rule *a,
49 const struct lttng_log_level_rule *b);
50
51 LTTNG_HIDDEN
52 struct lttng_log_level_rule *lttng_log_level_rule_copy(
53 const struct lttng_log_level_rule *source);
54
55 LTTNG_HIDDEN
56 void lttng_log_level_rule_to_loglevel(
57 const struct lttng_log_level_rule *log_level_rule,
58 enum lttng_loglevel_type *loglevel_type,
59 int *loglevel_value);
60 LTTNG_HIDDEN
61 unsigned long lttng_log_level_rule_hash(
62 const struct lttng_log_level_rule *log_level_rule);
63
64 #endif /* LTTNG_LOG_LEVEL_RULE_INTERNAL_H */
This page took 0.031891 seconds and 5 git commands to generate.