TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
AppenderFile.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
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 <atomic>
22 #include "Appender.h"
23 
25 {
26  public:
27  typedef std::integral_constant<AppenderType, APPENDER_FILE>::type TypeIndex;
28 
29  AppenderFile(uint8 id, std::string const& name, LogLevel level, AppenderFlags flags, ExtraAppenderArgs extraArgs);
30  ~AppenderFile();
31  FILE* OpenFile(std::string const& name, std::string const& mode, bool backup);
32  AppenderType getType() const override { return TypeIndex::value; }
33 
34  private:
35  void CloseFile();
36  void _write(LogMessage const* message) override;
37  FILE* logfile;
38  std::string _fileName;
39  std::string _logDir;
41  bool _backup;
43  std::atomic<uint64> _fileSize;
44 };
45 
46 #endif
std::string _logDir
Definition: AppenderFile.h:39
AppenderType
Definition: Appender.h:44
std::string _fileName
Definition: AppenderFile.h:38
virtual void _write(LogMessage const *)=0
std::vector< char const * > ExtraAppenderArgs
Definition: Appender.h:116
AppenderFlags
Definition: Appender.h:52
Definition: AppenderFile.h:24
bool _backup
Definition: AppenderFile.h:41
Definition: Appender.h:62
AppenderType getType() const override
Definition: AppenderFile.h:32
LogLevel
Definition: Appender.h:31
uint64_t uint64
Definition: Define.h:149
uint64 _maxFileSize
Definition: AppenderFile.h:42
#define TC_COMMON_API
Definition: Define.h:116
FILE * logfile
Definition: AppenderFile.h:37
std::atomic< uint64 > _fileSize
Definition: AppenderFile.h:43
uint8_t uint8
Definition: Define.h:152
const FieldDescriptor value
Definition: descriptor.h:1522
uint8 flags
Definition: DisableMgr.cpp:44
Definition: Appender.h:88
bool _dynamicName
Definition: AppenderFile.h:40
std::integral_constant< AppenderType, APPENDER_FILE >::type TypeIndex
Definition: AppenderFile.h:27