2 * Babeltrace - Debug info utilities
4 * Copyright (c) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29 const char *get_filename_from_path(const char *path
)
31 size_t i
= strlen(path
);
37 if (path
[i
- 1] == '/') {
39 * Path ends with a trailing slash, no filename to return.
40 * Return the original path.
56 bt_bool
is_event_common_ctx_dbg_info_compatible(const bt_field_class
*in_field_class
,
57 const char *debug_info_field_class_name
)
59 const bt_field_class_structure_member
*member
;
60 const bt_field_class
*ip_fc
, *vpid_fc
;
61 bt_bool match
= BT_FALSE
;
64 * If the debug info field is already present in the event common
65 * context. Do not try to add it.
68 bt_field_class_structure_borrow_member_by_name_const(
69 in_field_class
, debug_info_field_class_name
);
75 * Verify that the ip and vpid field are present and of the right field
78 member
= bt_field_class_structure_borrow_member_by_name_const(
79 in_field_class
, IP_FIELD_NAME
);
84 ip_fc
= bt_field_class_structure_member_borrow_field_class_const(
86 if (bt_field_class_get_type(ip_fc
) !=
87 BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER
) {
92 member
= bt_field_class_structure_borrow_member_by_name_const(
93 in_field_class
, VPID_FIELD_NAME
);
98 vpid_fc
= bt_field_class_structure_member_borrow_field_class_const(
101 if (bt_field_class_get_type(vpid_fc
) !=
102 BT_FIELD_CLASS_TYPE_SIGNED_INTEGER
) {
106 if (bt_field_class_integer_get_field_value_range(vpid_fc
) != 32) {