Visibility hidden by default
[babeltrace.git] / src / plugins / ctf / fs-src / file.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
5 */
6
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"
11
12 #include <stdio.h>
13 #include <sys/types.h>
14 #include <sys/stat.h>
15 #include <unistd.h>
16 #include <glib.h>
17 #include "file.hpp"
18
19 void ctf_fs_file_destroy(struct ctf_fs_file *file)
20 {
21 if (!file) {
22 return;
23 }
24
25 if (file->fp) {
26 BT_COMP_LOGD("Closing file \"%s\" (%p)", file->path ? file->path->str : NULL, file->fp);
27
28 if (fclose(file->fp)) {
29 BT_COMP_LOGE("Cannot close file \"%s\": %s", file->path ? file->path->str : "NULL",
30 strerror(errno));
31 }
32 }
33
34 if (file->path) {
35 g_string_free(file->path, TRUE);
36 }
37
38 g_free(file);
39 }
40
41 struct ctf_fs_file *ctf_fs_file_create(bt_logging_level log_level, bt_self_component *self_comp)
42 {
43 struct ctf_fs_file *file = g_new0(struct ctf_fs_file, 1);
44
45 if (!file) {
46 goto error;
47 }
48
49 file->log_level = log_level;
50 file->self_comp = self_comp;
51 file->path = g_string_new(NULL);
52 if (!file->path) {
53 goto error;
54 }
55
56 goto end;
57
58 error:
59 ctf_fs_file_destroy(file);
60 file = NULL;
61
62 end:
63 return file;
64 }
65
66 int ctf_fs_file_open(struct ctf_fs_file *file, const char *mode)
67 {
68 int ret = 0;
69 struct stat stat;
70
71 BT_COMP_LOGI("Opening file \"%s\" with mode \"%s\"", file->path->str, mode);
72 file->fp = fopen(file->path->str, mode);
73 if (!file->fp) {
74 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(file->self_comp, "Cannot open file", ": path=%s, mode=%s",
75 file->path->str, mode);
76 goto error;
77 }
78
79 BT_COMP_LOGI("Opened file: %p", file->fp);
80
81 if (fstat(fileno(file->fp), &stat)) {
82 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(file->self_comp, "Cannot get file information", ": path=%s",
83 file->path->str);
84 goto error;
85 }
86
87 file->size = stat.st_size;
88 BT_COMP_LOGI("File is %jd bytes", (intmax_t) file->size);
89 goto end;
90
91 error:
92 ret = -1;
93
94 if (file->fp) {
95 if (fclose(file->fp)) {
96 BT_COMP_LOGE("Cannot close file \"%s\": %s", file->path->str, strerror(errno));
97 }
98 }
99
100 end:
101 return ret;
102 }
This page took 0.031327 seconds and 4 git commands to generate.