ctf: silence bogus warning in set_field_refs()
[babeltrace.git] / src / plugins / ctf / common / metadata / ctf-meta-warn-meaningless-header-fields.c
CommitLineData
83ebb7f1
PP
1/*
2 * Copyright 2018 - Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 */
14
f7b785ac
PP
15#define BT_COMP_LOG_SELF_COMP (log_cfg->self_comp)
16#define BT_LOG_OUTPUT_LEVEL (log_cfg->log_level)
350ad6c1 17#define BT_LOG_TAG "PLUGIN/CTF/META/WARN-MEANINGLESS-HEADER-FIELDS"
d9c39b0a 18#include "logging/comp-logging.h"
83ebb7f1 19
3fadfbc0 20#include <babeltrace2/babeltrace.h>
91d81473 21#include "common/macros.h"
578e048b 22#include "common/assert.h"
83ebb7f1
PP
23#include <glib.h>
24#include <stdint.h>
25#include <string.h>
26#include <inttypes.h>
27
28#include "ctf-meta-visitors.h"
f7b785ac 29#include "logging.h"
83ebb7f1
PP
30
31static inline
0746848c 32void warn_meaningless_field(const char *name, const char *scope_name,
f7b785ac 33 struct meta_log_config *log_cfg)
83ebb7f1 34{
f7b785ac 35 BT_COMP_LOGW("User field found in %s: ignoring: name=\"%s\"",
83ebb7f1
PP
36 scope_name, name);
37}
38
39static inline
40void warn_meaningless_fields(struct ctf_field_class *fc, const char *name,
f7b785ac 41 const char *scope_name, struct meta_log_config *log_cfg)
83ebb7f1
PP
42{
43 uint64_t i;
44
45 if (!fc) {
46 goto end;
47 }
48
49 switch (fc->type) {
50 case CTF_FIELD_CLASS_TYPE_FLOAT:
51 case CTF_FIELD_CLASS_TYPE_STRING:
f7b785ac 52 warn_meaningless_field(name, scope_name, log_cfg);
83ebb7f1
PP
53 break;
54 case CTF_FIELD_CLASS_TYPE_INT:
55 case CTF_FIELD_CLASS_TYPE_ENUM:
56 {
57 struct ctf_field_class_int *int_fc = (void *) fc;
58
59 if (int_fc->meaning == CTF_FIELD_CLASS_MEANING_NONE &&
60 !int_fc->mapped_clock_class) {
f7b785ac 61 warn_meaningless_field(name, scope_name, log_cfg);
83ebb7f1
PP
62 }
63
64 break;
65 }
66 case CTF_FIELD_CLASS_TYPE_STRUCT:
67 {
68 struct ctf_field_class_struct *struct_fc = (void *) fc;
69
70 for (i = 0; i < struct_fc->members->len; i++) {
71 struct ctf_named_field_class *named_fc =
72 ctf_field_class_struct_borrow_member_by_index(
73 struct_fc, i);
74
75 warn_meaningless_fields(named_fc->fc,
f7b785ac 76 named_fc->name->str, scope_name, log_cfg);
83ebb7f1
PP
77 }
78
79 break;
80 }
81 case CTF_FIELD_CLASS_TYPE_VARIANT:
82 {
83 struct ctf_field_class_variant *var_fc = (void *) fc;
84
85 for (i = 0; i < var_fc->options->len; i++) {
86 struct ctf_named_field_class *named_fc =
87 ctf_field_class_variant_borrow_option_by_index(
88 var_fc, i);
89
90 warn_meaningless_fields(named_fc->fc,
f7b785ac 91 named_fc->name->str, scope_name, log_cfg);
83ebb7f1
PP
92 }
93
94 break;
95 }
96 case CTF_FIELD_CLASS_TYPE_ARRAY:
97 {
98 struct ctf_field_class_array *array_fc = (void *) fc;
99
100 if (array_fc->meaning != CTF_FIELD_CLASS_MEANING_NONE) {
101 goto end;
102 }
103
83ebb7f1 104 }
2f69c7e7 105 /* fall-through */
83ebb7f1
PP
106 case CTF_FIELD_CLASS_TYPE_SEQUENCE:
107 {
108 struct ctf_field_class_array_base *array_fc = (void *) fc;
109
0746848c 110 warn_meaningless_fields(array_fc->elem_fc, name, scope_name,
f7b785ac 111 log_cfg);
83ebb7f1
PP
112 break;
113 }
114 default:
115 abort();
116 }
117
118end:
119 return;
120}
121
122BT_HIDDEN
123void ctf_trace_class_warn_meaningless_header_fields(
0746848c 124 struct ctf_trace_class *ctf_tc,
f7b785ac 125 struct meta_log_config *log_cfg)
83ebb7f1
PP
126{
127 uint64_t i;
128
129 if (!ctf_tc->is_translated) {
130 warn_meaningless_fields(
0746848c 131 ctf_tc->packet_header_fc, NULL, "packet header",
f7b785ac 132 log_cfg);
83ebb7f1
PP
133 }
134
135 for (i = 0; i < ctf_tc->stream_classes->len; i++) {
136 struct ctf_stream_class *sc = ctf_tc->stream_classes->pdata[i];
137
138 if (!sc->is_translated) {
139 warn_meaningless_fields(sc->event_header_fc, NULL,
f7b785ac 140 "event header", log_cfg);
83ebb7f1
PP
141 }
142 }
143}
This page took 0.042529 seconds and 4 git commands to generate.