-
Notifications
You must be signed in to change notification settings - Fork 0
/
wxMsFileLog.cpp
137 lines (124 loc) · 3.87 KB
/
wxMsFileLog.cpp
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
/*-----------------------------------------------------------------
* Name: wxMsFileLog.cpp
* Purpose:
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*---------------------------------------------------------------- */
/*----------------------------------------------------------------
* Standard wxWidgets headers
*---------------------------------------------------------------- */
// Note __VISUALC__ is defined by wxWidgets, not by MSVC IDE
// and thus won't be defined until some wxWidgets headers are included
#if defined( _MSC_VER )
# if defined ( _DEBUG )
// this statement NEEDS to go BEFORE all headers
# define _CRTDBG_MAP_ALLOC
# endif
#endif
#include "wxMsPreProcDefsh.h" // needs to be first
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
/* For all others, include the necessary headers
* (this file is usually all you need because it
* includes almost all "standard" wxWidgets headers) */
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
// ------------------------------------------------------------------
#include "wxMsFileLogh.h"
// ------------------------------------------------------------------
#if defined( _MSC_VER ) // from Autohotkey-hummer.ahk
// this block needs to go AFTER all headers
#include <crtdbg.h>
# ifdef _DEBUG
# define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
# define new DEBUG_NEW
# endif
#endif
// ------------------------------------------------------------------
MyFileLog::MyFileLog(const wxString& fileName)
{
wxLogNull ln;
if ( m_logFile.Open(fileName, "a+") )
m_logFile.Write(wxString::Format("(%s) === LOGGING STARTED ===\n",
wxDateTime::Now().FormatISOCombined(' ')));
/*
* works - any message below warning is dropped
* but, note, so is the feedback to the log window ;-)
* The DEBUG & TRACE messages are ONLY show in the debug version
* they are suppessed as it is in release versions.
*/
// wxLog::SetLogLevel( wxLOG_Warning );
}
// ------------------------------------------------------------------
MyFileLog::~MyFileLog()
{
CloseLog();
}
// ------------------------------------------------------------------
void MyFileLog::Flush()
{
if ( m_logFile.IsOpened() )
m_logFile.Flush();
}
// ------------------------------------------------------------------
void MyFileLog::OpenLog( const wxString& fileName )
{
wxLogNull ln;
if ( m_logFile.Open(fileName, "a+") )
m_logFile.Write(wxString::Format("(%s) === LOGGING STARTED ===\n",
wxDateTime::Now().FormatISOCombined(' ')));
}
// ------------------------------------------------------------------
void MyFileLog::CloseLog()
{
if ( IsLogFileOK() )
{
m_logFile.Write(wxString::Format("(%s) === LOGGING FINISHED ===\n\n",
wxDateTime::Now().FormatISOCombined(' ')));
m_logFile.Flush();
m_logFile.Close();
}
}
// ------------------------------------------------------------------
void MyFileLog::DoLogRecord(wxLogLevel level, const wxString& msg, const wxLogRecordInfo& info)
{
if ( !IsLogFileOK() )
return;
wxString prefix;
prefix.Printf("(%s) ", wxDateTime(info.timestamp).FormatISOCombined(' '));
switch ( level )
{
case wxLOG_Error:
prefix += "ERROR: ";
break;
case wxLOG_Warning:
prefix += "Warning: ";
break;
case wxLOG_Message:
prefix += "Message: ";
break;
case wxLOG_Status:
prefix += "Status: ";
break;
case wxLOG_Info:
prefix += "Info: ";
break;
case wxLOG_Debug:
prefix += "Debug: ";
break;
case wxLOG_Trace:
prefix += "Trace: ";
break;
default:
prefix += "Other: ";
}
m_logFile.Write(wxString::Format("%s%s [%s in %s(%d)]\n",
prefix, msg, info.func, info.filename, info.line));
}
// ------------------------------- eof ------------------------------