Commit | Line | Data |
---|---|---|
924dc299 PP |
1 | #ifndef BABELTRACE2_TRACE_IR_EVENT_CLASS_CONST_H |
2 | #define BABELTRACE2_TRACE_IR_EVENT_CLASS_CONST_H | |
40f4ba76 PP |
3 | |
4 | /* | |
bbb7b5f0 | 5 | * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation |
40f4ba76 | 6 | * |
40f4ba76 PP |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
20 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
23 | * SOFTWARE. | |
40f4ba76 PP |
24 | */ |
25 | ||
4fa90f32 PP |
26 | #ifndef __BT_IN_BABELTRACE_H |
27 | # error "Please include <babeltrace2/babeltrace.h> instead." | |
28 | #endif | |
29 | ||
40f4ba76 PP |
30 | #include <stdint.h> |
31 | #include <stddef.h> | |
32 | ||
959b3d46 PP |
33 | #include <babeltrace2/property.h> |
34 | #include <babeltrace2/types.h> | |
35 | ||
40f4ba76 PP |
36 | #ifdef __cplusplus |
37 | extern "C" { | |
38 | #endif | |
39 | ||
4cdfc5e8 | 40 | typedef enum bt_event_class_log_level { |
7b6afccb PP |
41 | BT_EVENT_CLASS_LOG_LEVEL_EMERGENCY = 0, |
42 | BT_EVENT_CLASS_LOG_LEVEL_ALERT = 1, | |
43 | BT_EVENT_CLASS_LOG_LEVEL_CRITICAL = 2, | |
44 | BT_EVENT_CLASS_LOG_LEVEL_ERROR = 3, | |
45 | BT_EVENT_CLASS_LOG_LEVEL_WARNING = 4, | |
46 | BT_EVENT_CLASS_LOG_LEVEL_NOTICE = 5, | |
47 | BT_EVENT_CLASS_LOG_LEVEL_INFO = 6, | |
48 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM = 7, | |
49 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM = 8, | |
50 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS = 9, | |
51 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE = 10, | |
52 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT = 11, | |
53 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION = 12, | |
54 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG_LINE = 13, | |
55 | BT_EVENT_CLASS_LOG_LEVEL_DEBUG = 14, | |
4cdfc5e8 | 56 | } bt_event_class_log_level; |
40f4ba76 | 57 | |
c6962c96 PP |
58 | extern const bt_value *bt_event_class_borrow_user_attributes_const( |
59 | const bt_event_class *event_class); | |
60 | ||
b19ff26f PP |
61 | extern const bt_stream_class *bt_event_class_borrow_stream_class_const( |
62 | const bt_event_class *event_class); | |
40f4ba76 | 63 | |
b19ff26f | 64 | extern const char *bt_event_class_get_name(const bt_event_class *event_class); |
40f4ba76 | 65 | |
b19ff26f | 66 | extern uint64_t bt_event_class_get_id(const bt_event_class *event_class); |
40f4ba76 | 67 | |
4cdfc5e8 | 68 | extern bt_property_availability bt_event_class_get_log_level( |
b19ff26f | 69 | const bt_event_class *event_class, |
4cdfc5e8 | 70 | bt_event_class_log_level *log_level); |
40f4ba76 PP |
71 | |
72 | extern const char *bt_event_class_get_emf_uri( | |
b19ff26f | 73 | const bt_event_class *event_class); |
40f4ba76 | 74 | |
b19ff26f | 75 | extern const bt_field_class * |
11310164 | 76 | bt_event_class_borrow_specific_context_field_class_const( |
b19ff26f | 77 | const bt_event_class *event_class); |
40f4ba76 | 78 | |
11310164 | 79 | extern const bt_field_class *bt_event_class_borrow_payload_field_class_const( |
b19ff26f | 80 | const bt_event_class *event_class); |
40f4ba76 | 81 | |
b19ff26f | 82 | extern void bt_event_class_get_ref(const bt_event_class *event_class); |
c5b9b441 | 83 | |
b19ff26f | 84 | extern void bt_event_class_put_ref(const bt_event_class *event_class); |
c5b9b441 PP |
85 | |
86 | #define BT_EVENT_CLASS_PUT_REF_AND_RESET(_var) \ | |
87 | do { \ | |
88 | bt_event_class_put_ref(_var); \ | |
89 | (_var) = NULL; \ | |
90 | } while (0) | |
91 | ||
92 | #define BT_EVENT_CLASS_MOVE_REF(_var_dst, _var_src) \ | |
93 | do { \ | |
94 | bt_event_class_put_ref(_var_dst); \ | |
95 | (_var_dst) = (_var_src); \ | |
96 | (_var_src) = NULL; \ | |
97 | } while (0) | |
98 | ||
40f4ba76 PP |
99 | #ifdef __cplusplus |
100 | } | |
101 | #endif | |
102 | ||
924dc299 | 103 | #endif /* BABELTRACE2_TRACE_IR_EVENT_CLASS_CONST_H */ |