2 * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef MANGOSSERVER_LOG_H
20 #define MANGOSSERVER_LOG_H
23 #include "Policies/Singleton.h"
30 LOG_FILTER_TRANSPORT_MOVES
= 1,
31 LOG_FILTER_CREATURE_MOVES
= 2,
32 LOG_FILTER_VISIBILITY_CHANGES
= 4,
33 LOG_FILTER_ACHIEVEMENT_UPDATES
= 8
55 const int Color_count
= int(WHITE
)+1;
57 class Log
: public MaNGOS::Singleton
<Log
, MaNGOS::ClassLevelLockable
<Log
, ACE_Thread_Mutex
> >
59 friend class MaNGOS::OperatorNew
<Log
>;
68 if( gmLogfile
!= NULL
)
72 if (charLogfile
!= NULL
)
76 if( dberLogfile
!= NULL
)
80 if (raLogfile
!= NULL
)
86 void InitColors(const std::string
& init_str
);
87 void outTitle( const char * str
);
88 void outCommand( uint32 account
, const char * str
, ...) ATTR_PRINTF(3,4);
89 void outString(); // any log level
91 void outString( const char * str
, ... ) ATTR_PRINTF(2,3);
93 void outError( const char * err
, ... ) ATTR_PRINTF(2,3);
95 void outBasic( const char * str
, ... ) ATTR_PRINTF(2,3);
97 void outDetail( const char * str
, ... ) ATTR_PRINTF(2,3);
99 void outDebugInLine( const char * str
, ... ) ATTR_PRINTF(2,3);
101 void outDebug( const char * str
, ... ) ATTR_PRINTF(2,3);
103 void outMenu( const char * str
, ... ) ATTR_PRINTF(2,3);
105 void outErrorDb( const char * str
, ... ) ATTR_PRINTF(2,3);
107 void outChar( const char * str
, ... ) ATTR_PRINTF(2,3);
109 void outCharDump( const char * str
, uint32 account_id
, uint32 guid
, const char * name
);
110 void outRALog( const char * str
, ... ) ATTR_PRINTF(2,3);
111 void SetLogLevel(char * Level
);
112 void SetLogFileLevel(char * Level
);
113 void SetColor(bool stdout_stream
, Color color
);
114 void ResetColor(bool stdout_stream
);
116 static void outTimestamp(FILE* file
);
117 static std::string
GetTimestampStr();
118 uint32
getLogFilter() const { return m_logFilter
; }
119 bool IsOutDebug() const { return m_logLevel
> 2 || (m_logFileLevel
> 2 && logfile
); }
120 bool IsOutCharDump() const { return m_charLog_Dump
; }
121 bool IsIncludeTime() const { return m_includeTime
; }
123 FILE* openLogFile(char const* configFileName
,char const* configTimeStampFlag
, char const* mode
);
124 FILE* openGmlogPerAccount(uint32 account
);
132 // log/console control
134 uint32 m_logFileLevel
;
140 // cache values for after initilization use (like gm log per account case)
141 std::string m_logsDir
;
142 std::string m_logsTimestamp
;
148 bool m_gmlog_per_account
;
149 std::string m_gmlog_filename_format
;
152 #define sLog MaNGOS::Singleton<Log>::Instance()
155 #define DEBUG_LOG MaNGOS::Singleton<Log>::Instance().outDebug
160 // primary for script library
161 void MANGOS_DLL_SPEC
outstring_log(const char * str
, ...) ATTR_PRINTF(1,2);
162 void MANGOS_DLL_SPEC
detail_log(const char * str
, ...) ATTR_PRINTF(1,2);
163 void MANGOS_DLL_SPEC
debug_log(const char * str
, ...) ATTR_PRINTF(1,2);
164 void MANGOS_DLL_SPEC
error_log(const char * str
, ...) ATTR_PRINTF(1,2);
165 void MANGOS_DLL_SPEC
error_db_log(const char * str
, ...) ATTR_PRINTF(1,2);