2 // This file is part of the aMule Project.
4 // Copyright (c) 2005-2008 aMule Team ( admin@amule.org / http://www.amule.org )
6 // Any parts of this program derived from the xMule, lMule or eMule project,
7 // or contributed by third-party developers are copyrighted by their
10 // This program is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation; either version 2 of the License, or
13 // (at your option) any later version.
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "Preferences.h"
28 #include <common/Macros.h>
29 #include <common/MacrosProgramSpecific.h>
31 #include <wx/tokenzr.h>
32 #include <wx/wfstream.h>
33 #include <wx/sstream.h>
34 #include <wx/filename.h>
37 DEFINE_LOCAL_EVENT_TYPE(MULE_EVT_LOGLINE
)
40 CDebugCategory g_debugcats
[] = {
41 CDebugCategory( logGeneral
, wxT("General") ),
42 CDebugCategory( logHasher
, wxT("Hasher") ),
43 CDebugCategory( logClient
, wxT("ED2k Client") ),
44 CDebugCategory( logLocalClient
, wxT("Local Client Protocol") ),
45 CDebugCategory( logRemoteClient
, wxT("Remote Client Protocol") ),
46 CDebugCategory( logPacketErrors
, wxT("Packet Parsing Errors") ),
47 CDebugCategory( logCFile
, wxT("CFile") ),
48 CDebugCategory( logFileIO
, wxT("FileIO") ),
49 CDebugCategory( logZLib
, wxT("ZLib") ),
50 CDebugCategory( logAICHThread
, wxT("AICH-Hasher") ),
51 CDebugCategory( logAICHTransfer
, wxT("AICH-Transfer") ),
52 CDebugCategory( logAICHRecovery
, wxT("AICH-Recovery") ),
53 CDebugCategory( logListenSocket
, wxT("ListenSocket") ),
54 CDebugCategory( logCredits
, wxT("Credits") ),
55 CDebugCategory( logClientUDP
, wxT("ClientUDPSocket") ),
56 CDebugCategory( logDownloadQueue
, wxT("DownloadQueue") ),
57 CDebugCategory( logIPFilter
, wxT("IPFilter") ),
58 CDebugCategory( logKnownFiles
, wxT("KnownFileList") ),
59 CDebugCategory( logPartFile
, wxT("PartFiles") ),
60 CDebugCategory( logSHAHashSet
, wxT("SHAHashSet") ),
61 CDebugCategory( logServer
, wxT("Servers") ),
62 CDebugCategory( logProxy
, wxT("Proxy") ),
63 CDebugCategory( logSearch
, wxT("Searching") ),
64 CDebugCategory( logServerUDP
, wxT("ServerUDP") ),
65 CDebugCategory( logClientKadUDP
, wxT("Client Kademlia UDP") ),
66 CDebugCategory( logKadSearch
, wxT("Kademlia Search") ),
67 CDebugCategory( logKadRouting
, wxT("Kademlia Routing") ),
68 CDebugCategory( logKadIndex
, wxT("Kademlia Indexing") ),
69 CDebugCategory( logKadMain
, wxT("Kademlia Main Thread") ),
70 CDebugCategory( logKadPrefs
, wxT("Kademlia Preferences") ),
71 CDebugCategory( logPfConvert
, wxT("PartFileConvert") ),
72 CDebugCategory( logMuleUDP
, wxT("MuleUDPSocket" ) ),
73 CDebugCategory( logThreads
, wxT("ThreadScheduler" ) ),
74 CDebugCategory( logUPnP
, wxT("Universal Plug and Play" ) ),
75 CDebugCategory( logKadUdpFwTester
, wxT("Kademlia UDP Firewall Tester") ),
76 CDebugCategory( logKadPacketTracking
, wxT("Kademlia Packet Tracking") ),
77 CDebugCategory( logKadEntryTracking
, wxT("Kademlia Entry Tracking") ),
78 CDebugCategory( logEC
, wxT("External Connect") ),
79 CDebugCategory( logHTTP
, wxT("HTTP") )
83 const int categoryCount
= sizeof( g_debugcats
) / sizeof( g_debugcats
[0] );
88 bool CLogger::IsEnabled( DebugType type
) const
90 int index
= (int)type
;
92 if ( index
>= 0 && index
< categoryCount
) {
93 const CDebugCategory
& cat
= g_debugcats
[ index
];
94 wxASSERT( type
== cat
.GetType() );
96 return ( cat
.IsEnabled() && thePrefs::GetVerbose() );
105 void CLogger::SetEnabled( DebugType type
, bool enabled
)
107 int index
= (int)type
;
109 if ( index
>= 0 && index
< categoryCount
) {
110 CDebugCategory
& cat
= g_debugcats
[ index
];
111 wxASSERT( type
== cat
.GetType() );
113 cat
.SetEnabled( enabled
);
120 void CLogger::AddLogLine(
121 const wxString
& DEBUG_ONLY(file
),
122 int DEBUG_ONLY(line
),
130 // handle Debug messages
131 if (type
!= logStandard
) {
132 if (!critical
&& !IsEnabled(type
)) {
135 int index
= (int)type
;
137 if ( index
>= 0 && index
< categoryCount
) {
138 const CDebugCategory
& cat
= g_debugcats
[ index
];
139 wxASSERT(type
== cat
.GetType());
141 msg
= cat
.GetName() + wxT(": ") + msg
;
149 msg
= file
.AfterLast(wxFileName::GetPathSeparator()).AfterLast(wxT('/')) << wxT("(") << line
<< wxT("): ") + msg
;
153 CLoggingEvent
Event(critical
, toStdout
, toGUI
, msg
);
155 // Try to handle events immediatly when possible (to save to file).
156 if (wxThread::IsMain()) {
157 // main thread and log file available: process directly
160 // otherwise put to background
161 AddPendingEvent(Event
);
166 void CLogger::AddLogLine(
167 const wxString
&file
,
171 const std::ostringstream
&msg
)
173 int index
= (int)type
;
175 if ( index
>= 0 && index
< categoryCount
) {
176 const CDebugCategory
& cat
= g_debugcats
[ index
];
177 wxASSERT(type
== cat
.GetType());
179 AddLogLine(file
, line
, critical
, logStandard
,
180 cat
.GetName() + wxT(": ") + char2unicode(msg
.str().c_str()));
185 const CDebugCategory
& CLogger::GetDebugCategory( int index
)
187 wxASSERT( index
>= 0 && index
< categoryCount
);
189 return g_debugcats
[ index
];
193 unsigned int CLogger::GetDebugCategoryCount()
195 return categoryCount
;
199 bool CLogger::OpenLogfile(const wxString
& name
)
201 applog
= new wxFFileOutputStream(name
);
202 bool ret
= applog
->Ok();
205 m_LogfileName
= name
;
213 void CLogger::CloseLogfile()
217 m_LogfileName
.Clear();
221 void CLogger::OnLoggingEvent(class CLoggingEvent
& evt
)
223 // Remove newspace at end
224 wxString bufferline
= evt
.Message().Strip(wxString::trailing
);
226 // Create the timestamp
227 wxString stamp
= wxDateTime::Now().FormatISODate() + wxT(" ") + wxDateTime::Now().FormatISOTime()
229 + wxT(" (remote-GUI): ");
234 // critical lines get a ! prepended, ordinary lines a blank
235 // logfile-only lines get a . to prevent transmission on EC
236 wxString prefix
= !evt
.ToGUI() ? wxT(".") : (evt
.IsCritical() ? wxT("!") : wxT(" "));
238 if ( bufferline
.IsEmpty() ) {
239 // If it's empty we just write a blank line with no timestamp.
240 DoLine(wxT(" \n"), evt
.ToStdout(), evt
.ToGUI());
242 // Split multi-line messages into individual lines
243 wxStringTokenizer
tokens( bufferline
, wxT("\n") );
244 while ( tokens
.HasMoreTokens() ) {
245 wxString fullline
= prefix
+ stamp
+ tokens
.GetNextToken() + wxT("\n");
246 DoLine(fullline
, evt
.ToStdout(), evt
.ToGUI());
252 void CLogger::DoLine(const wxString
& line
, bool toStdout
, bool GUI_ONLY(toGUI
))
261 if (m_StdoutLog
|| toStdout
) {
262 printf("%s", (const char*)unicode2char(line
));
265 // write to Listcontrol
267 theApp
->AddGuiLogLine(line
);
273 void CLogger::FlushApplog()
275 if (applog
) { // Wait with output until logfile is actually opened
276 wxStringInputStream
stream(m_ApplogBuf
);
285 BEGIN_EVENT_TABLE(CLogger
, wxEvtHandler
)
286 EVT_MULE_LOGGING(CLogger::OnLoggingEvent
)
290 CLoggerTarget::CLoggerTarget()
294 #if wxCHECK_VERSION(2, 9, 0)
295 void CLoggerTarget::DoLogText(const wxString
&msg
)
297 // prevent infinite recursion
298 static bool recursion
= false;
304 // This is much simpler than manually handling all wx log-types.
305 if (msg
.StartsWith(_("ERROR: ")) || msg
.StartsWith(_("WARNING: "))) {
314 void CLoggerTarget::DoLogString(const wxChar
* msg
, time_t)
316 // prevent infinite recursion
317 static bool recursion
= false;
323 wxCHECK_RET(msg
, wxT("Log message is NULL in DoLogString!"));
327 // This is much simpler than manually handling all wx log-types.
328 if (str
.StartsWith(_("ERROR: ")) || str
.StartsWith(_("WARNING: "))) {
338 CLoggerAccess::CLoggerAccess()
341 m_buffer
= new wxCharBuffer(m_bufferlen
);
347 void CLoggerAccess::Reset()
350 m_logfile
= new wxFFileInputStream(theLogger
.GetLogfileName());
356 CLoggerAccess::~CLoggerAccess()
364 // read a line of text from the logfile if available
365 // (can't believe there's no library function for this >:( )
367 bool CLoggerAccess::HasString()
370 int c
= m_logfile
->GetC();
374 // check for buffer overrun
375 if (m_pos
== m_bufferlen
) {
377 m_buffer
->extend(m_bufferlen
);
379 m_buffer
->data()[m_pos
++] = c
;
381 if (m_buffer
->data()[0] == '.') {
382 // Log-only line, skip
393 bool CLoggerAccess::GetString(wxString
& s
)
398 s
= wxString(m_buffer
->data(), wxConvUTF8
, m_pos
);
404 // Functions for EC logging
405 bool ECLogIsEnabled()
407 return theLogger
.IsEnabled(logEC
);
410 void DoECLogLine(const wxString
&line
)
413 theLogger
.AddLogLine(wxEmptyString
, 0, false, logStandard
, line
, false, false);
416 // File_checked_for_headers