2 * SPDX-License-Identifier: MIT
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
7 #define BT_COMP_LOG_SELF_COMP (file->self_comp)
8 #define BT_LOG_OUTPUT_LEVEL (file->log_level)
9 #define BT_LOG_TAG "PLUGIN/SRC.CTF.FS/FILE"
10 #include "logging/comp-logging.h"
13 #include <sys/types.h>
20 void ctf_fs_file_destroy(struct ctf_fs_file
*file
)
27 BT_COMP_LOGD("Closing file \"%s\" (%p)",
28 file
->path
? file
->path
->str
: NULL
, file
->fp
);
30 if (fclose(file
->fp
)) {
31 BT_COMP_LOGE("Cannot close file \"%s\": %s",
32 file
->path
? file
->path
->str
: "NULL",
38 g_string_free(file
->path
, TRUE
);
45 struct ctf_fs_file
*ctf_fs_file_create(bt_logging_level log_level
,
46 bt_self_component
*self_comp
)
48 struct ctf_fs_file
*file
= g_new0(struct ctf_fs_file
, 1);
54 file
->log_level
= log_level
;
55 file
->self_comp
= self_comp
;
56 file
->path
= g_string_new(NULL
);
64 ctf_fs_file_destroy(file
);
72 int ctf_fs_file_open(struct ctf_fs_file
*file
, const char *mode
)
77 BT_COMP_LOGI("Opening file \"%s\" with mode \"%s\"", file
->path
->str
, mode
);
78 file
->fp
= fopen(file
->path
->str
, mode
);
80 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(file
->self_comp
,
81 "Cannot open file", ": path=%s, mode=%s",
82 file
->path
->str
, mode
);
86 BT_COMP_LOGI("Opened file: %p", file
->fp
);
88 if (fstat(fileno(file
->fp
), &stat
)) {
89 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(file
->self_comp
,
90 "Cannot get file information",
91 ": path=%s", file
->path
->str
);
95 file
->size
= stat
.st_size
;
96 BT_COMP_LOGI("File is %jd bytes", (intmax_t) file
->size
);
103 if (fclose(file
->fp
)) {
104 BT_COMP_LOGE("Cannot close file \"%s\": %s", file
->path
->str
,