ctf: append error causes when returning errors
[babeltrace.git] / src / plugins / ctf / fs-src / query.c
index 33d9169c5b21805c5474d6ea0440e2a687c5f2e5..adc8f4d12fc9280f81d439c69bcb3f3134d2241d 100644 (file)
@@ -1,27 +1,9 @@
 /*
- * query.c
- *
- * Babeltrace CTF file system Reader Component queries
+ * SPDX-License-Identifier: MIT
  *
  * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
+ * Babeltrace CTF file system Reader Component queries
  */
 
 #define BT_LOG_OUTPUT_LEVEL log_level
@@ -123,6 +105,7 @@ bt_component_class_query_method_status metadata_info_query(
        }
 
        decoder_cfg.log_level = log_level;
+       decoder_cfg.self_comp_class = self_comp_class;
        decoder_cfg.keep_plain_text = true;
        decoder = ctf_metadata_decoder_create(&decoder_cfg);
        if (!decoder) {
@@ -171,7 +154,11 @@ end:
        ctf_metadata_decoder_destroy(decoder);
 
        if (metadata_fp) {
-               fclose(metadata_fp);
+               ret = fclose(metadata_fp);
+               if (ret) {
+                       BT_LOGE_ERRNO("Cannot close metatada file stream",
+                               ": path=\"%s\"", path);
+               }
        }
 
        *user_result = result;
@@ -459,6 +446,8 @@ bt_component_class_query_method_status support_info_query(
                bt_uuid_t uuid;
 
                metadata_decoder_config.log_level = log_level;
+               metadata_decoder_config.self_comp_class =
+                       bt_self_component_class_source_as_self_component_class(comp_class);
 
                metadata_decoder = ctf_metadata_decoder_create(
                        &metadata_decoder_config);
This page took 0.023385 seconds and 4 git commands to generate.