aboutsummaryrefslogtreecommitdiff
path: root/src/zenutil/logging/rotatingfilesink.cpp
blob: 23cf60d16fb16ac5cac9df663d4106a5080f4413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
// Copyright Epic Games, Inc. All Rights Reserved.

#include <zenutil/logging/rotatingfilesink.h>

#include <zencore/basicfile.h>
#include <zencore/filesystem.h>
#include <zencore/logging/helpers.h>
#include <zencore/logging/messageonlyformatter.h>
#include <zencore/memory/llm.h>
#include <zencore/thread.h>

#include <atomic>

namespace zen::logging {

struct RotatingFileSink::Impl
{
	Impl(const std::filesystem::path& BaseFilename, std::size_t MaxSize, std::size_t MaxFiles, bool RotateOnOpen)
	: m_BaseFilename(BaseFilename)
	, m_MaxSize(MaxSize)
	, m_MaxFiles(MaxFiles)
	, m_Formatter(std::make_unique<MessageOnlyFormatter>())
	{
		ZEN_MEMSCOPE(ELLMTag::Logging);

		std::error_code Ec;
		if (RotateOnOpen)
		{
			RwLock::ExclusiveLockScope RotateLock(m_Lock);
			Rotate(RotateLock, Ec);
		}
		else
		{
			m_CurrentFile.Open(m_BaseFilename, BasicFile::Mode::kWrite, Ec);
			if (!Ec)
			{
				m_CurrentSize = m_CurrentFile.FileSize(Ec);
			}
			if (!Ec)
			{
				if (m_CurrentSize > m_MaxSize)
				{
					RwLock::ExclusiveLockScope RotateLock(m_Lock);
					Rotate(RotateLock, Ec);
				}
			}
		}

		if (Ec)
		{
			throw std::system_error(Ec, fmt::format("Failed to open log file '{}'", m_BaseFilename.string()));
		}
	}

	~Impl()
	{
		try
		{
			RwLock::ExclusiveLockScope RotateLock(m_Lock);
			m_CurrentFile.Close();
		}
		catch (const std::exception&)
		{
		}
	}

	void Rotate(RwLock::ExclusiveLockScope&, std::error_code& OutEc)
	{
		ZEN_MEMSCOPE(ELLMTag::Logging);

		m_CurrentFile.Close();

		OutEc = RotateFiles(m_BaseFilename, m_MaxFiles);
		if (OutEc)
		{
			return;
		}

		m_CurrentFile.Open(m_BaseFilename, BasicFile::Mode::kWrite, OutEc);
		if (OutEc)
		{
			return;
		}

		m_CurrentSize = m_CurrentFile.FileSize(OutEc);
		if (OutEc)
		{
			// FileSize failed but we have an open file — reset to 0
			// so we can at least attempt writes from the start
			m_CurrentSize = 0;
			OutEc.clear();
		}
	}

	bool TrySinkIt(const LogMessage& Msg, MemoryBuffer& OutFormatted)
	{
		ZEN_MEMSCOPE(ELLMTag::Logging);

		RwLock::SharedLockScope Lock(m_Lock);
		if (!m_CurrentFile.IsOpen())
		{
			return false;
		}
		m_Formatter->Format(Msg, OutFormatted);
		helpers::StripAnsiSgrSequences(OutFormatted);
		size_t AddSize	= OutFormatted.size();
		size_t WritePos = m_CurrentSize.fetch_add(AddSize);
		if (WritePos + AddSize > m_MaxSize)
		{
			return false;
		}
		std::error_code Ec;
		m_CurrentFile.Write(OutFormatted.data(), OutFormatted.size(), WritePos, Ec);
		if (Ec)
		{
			return false;
		}
		m_NeedFlush = true;
		return true;
	}

	bool TrySinkIt(const MemoryBuffer& Formatted)
	{
		ZEN_MEMSCOPE(ELLMTag::Logging);

		RwLock::SharedLockScope Lock(m_Lock);
		if (!m_CurrentFile.IsOpen())
		{
			return false;
		}
		size_t AddSize	= Formatted.size();
		size_t WritePos = m_CurrentSize.fetch_add(AddSize);
		if (WritePos + AddSize > m_MaxSize)
		{
			return false;
		}

		std::error_code Ec;
		m_CurrentFile.Write(Formatted.data(), Formatted.size(), WritePos, Ec);
		if (Ec)
		{
			return false;
		}
		m_NeedFlush = true;
		return true;
	}

	RwLock						m_Lock;
	const std::filesystem::path m_BaseFilename;
	const std::size_t			m_MaxSize;
	const std::size_t			m_MaxFiles;
	std::unique_ptr<Formatter>	m_Formatter;
	std::atomic_size_t			m_CurrentSize;
	BasicFile					m_CurrentFile;
	std::atomic<bool>			m_NeedFlush = false;
};

RotatingFileSink::RotatingFileSink(const std::filesystem::path& BaseFilename, std::size_t MaxSize, std::size_t MaxFiles, bool RotateOnOpen)
: m_Impl(std::make_unique<Impl>(BaseFilename, MaxSize, MaxFiles, RotateOnOpen))
{
}

RotatingFileSink::~RotatingFileSink() = default;

void
RotatingFileSink::Log(const LogMessage& Msg)
{
	ZEN_MEMSCOPE(ELLMTag::Logging);

	try
	{
		MemoryBuffer Formatted;
		if (m_Impl->TrySinkIt(Msg, Formatted))
		{
			return;
		}

		// This intentionally has no limit on the number of retries, see
		// comment above.
		for (;;)
		{
			{
				RwLock::ExclusiveLockScope RotateLock(m_Impl->m_Lock);
				// Only rotate if no-one else has rotated before us
				if (m_Impl->m_CurrentSize > m_Impl->m_MaxSize || !m_Impl->m_CurrentFile.IsOpen())
				{
					std::error_code Ec;
					m_Impl->Rotate(RotateLock, Ec);
					if (Ec)
					{
						return;
					}
				}
			}
			if (m_Impl->TrySinkIt(Formatted))
			{
				return;
			}
		}
	}
	catch (const std::exception&)
	{
		// Silently eat errors
	}
}

void
RotatingFileSink::Flush()
{
	if (!m_Impl->m_NeedFlush)
	{
		return;
	}

	ZEN_MEMSCOPE(ELLMTag::Logging);

	try
	{
		RwLock::SharedLockScope Lock(m_Impl->m_Lock);
		if (m_Impl->m_CurrentFile.IsOpen())
		{
			m_Impl->m_CurrentFile.Flush();
		}
	}
	catch (const std::exception&)
	{
		// Silently eat errors
	}

	m_Impl->m_NeedFlush = false;
}

void
RotatingFileSink::SetFormatter(std::unique_ptr<Formatter> InFormatter)
{
	ZEN_MEMSCOPE(ELLMTag::Logging);

	try
	{
		RwLock::ExclusiveLockScope _(m_Impl->m_Lock);
		m_Impl->m_Formatter = std::move(InFormatter);
	}
	catch (const std::exception&)
	{
		// Silently eat errors
	}
}

}  // namespace zen::logging