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