Move to kernel style SPDX license identifiers
[babeltrace.git] / src / plugins / ctf / fs-src / file.c
index 84d85cc29ba4f1a27565bcbf9b5939ce97737d6a..b705ca4222558198aa91097bed55689498bda9dc 100644 (file)
@@ -1,29 +1,13 @@
 /*
- * Copyright 2016 - Philippe Proulx <pproulx@efficios.com>
+ * SPDX-License-Identifier: MIT
  *
- * 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.
+ * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
  */
 
 #define BT_COMP_LOG_SELF_COMP (file->self_comp)
 #define BT_LOG_OUTPUT_LEVEL (file->log_level)
 #define BT_LOG_TAG "PLUGIN/SRC.CTF.FS/FILE"
-#include "plugins/comp-logging.h"
+#include "logging/comp-logging.h"
 
 #include <stdio.h>
 #include <sys/types.h>
@@ -93,15 +77,18 @@ int ctf_fs_file_open(struct ctf_fs_file *file, const char *mode)
        BT_COMP_LOGI("Opening file \"%s\" with mode \"%s\"", file->path->str, mode);
        file->fp = fopen(file->path->str, mode);
        if (!file->fp) {
-               BT_COMP_LOGE("Cannot open file \"%s\" with mode \"%s\": %s",
-                       file->path->str, mode, strerror(errno));
+               BT_COMP_LOGE_APPEND_CAUSE_ERRNO(file->self_comp,
+                       "Cannot open file", ": path=%s, mode=%s",
+                       file->path->str, mode);
                goto error;
        }
 
        BT_COMP_LOGI("Opened file: %p", file->fp);
 
        if (fstat(fileno(file->fp), &stat)) {
-               BT_COMP_LOGE("Cannot get file information: %s", strerror(errno));
+               BT_COMP_LOGE_APPEND_CAUSE_ERRNO(file->self_comp,
+                       "Cannot get file information",
+                       ": path=%s", file->path->str);
                goto error;
        }
 
This page took 0.024242 seconds and 4 git commands to generate.