2 * Copyright (C) 2020 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_LOG_LEVEL_RULE_INTERNAL_H
9 #define LTTNG_LOG_LEVEL_RULE_INTERNAL_H
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>
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 require "level" as property.
25 struct lttng_log_level_rule
{
26 enum lttng_log_level_rule_type type
;
30 struct lttng_log_level_rule_comm
{
31 /* enum lttng_log_level_rule_type */
37 ssize_t
lttng_log_level_rule_create_from_payload(
38 struct lttng_payload_view
*view
,
39 struct lttng_log_level_rule
**rule
);
42 int lttng_log_level_rule_serialize(const struct lttng_log_level_rule
*rule
,
43 struct lttng_payload
*payload
);
46 bool lttng_log_level_rule_is_equal(const struct lttng_log_level_rule
*a
,
47 const struct lttng_log_level_rule
*b
);
50 struct lttng_log_level_rule
*lttng_log_level_rule_copy(
51 const struct lttng_log_level_rule
*source
);
54 void lttng_log_level_rule_to_loglevel(
55 const struct lttng_log_level_rule
*log_level_rule
,
56 enum lttng_loglevel_type
*loglevel_type
,
60 unsigned long lttng_log_level_rule_hash(
61 const struct lttng_log_level_rule
*log_level_rule
);
63 #endif /* LTTNG_LOG_LEVEL_RULE_INTERNAL_H */