TrinityCore
Loading...
Searching...
No Matches
AppenderFile.h
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef APPENDERFILE_H
19#define APPENDERFILE_H
20
21#include "Appender.h"
22#include <atomic>
23#include <vector>
24
26{
27 public:
28 static constexpr AppenderType type = APPENDER_FILE;
29
30 AppenderFile(uint8 id, std::string name, LogLevel level, AppenderFlags flags, std::vector<std::string_view> const& args);
32 FILE* OpenFile(std::string const& name, std::string const& mode, bool backup);
33 AppenderType getType() const override { return type; }
34
35 private:
36 void CloseFile();
37 void _write(LogMessage const* message) override;
38 FILE* logfile;
39 std::string _fileName;
40 std::string _logDir;
42 bool _backup;
44 std::atomic<uint64> _fileSize;
45};
46
47#endif
uint8_t uint8
Definition Define.h:156
#define TC_COMMON_API
Definition Define.h:99
uint64_t uint64
Definition Define.h:153
uint16 flags
AppenderFlags
Definition LogCommon.h:50
AppenderType
Definition LogCommon.h:40
@ APPENDER_FILE
Definition LogCommon.h:43
LogLevel
Definition LogCommon.h:25
std::atomic< uint64 > _fileSize
uint64 _maxFileSize
std::string _fileName
std::string _logDir
AppenderType getType() const override
virtual void _write(LogMessage const *)=0