This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsIRC_Line.cpp
135 lines (104 loc) · 2.95 KB
/
zsIRC_Line.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
// zsIRC_Line.cpp: implementation of the zsIRC_Line class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "zsIRC.h"
#include "zsIRC_Line.h"
#include "zsIRC_Settings.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
zsIRC_Line::zsIRC_Line()
{
}
zsIRC_Line::zsIRC_Line(TCHAR * szMessage, COLORREF cColor)
{
GetLocalTime(&tTimestamp);
//this->szSender = szSender;
this->szMessage = szMessage;
this->cColor = cColor;
}
zsIRC_Line::~zsIRC_Line()
{
}
CString zsIRC_Line::toString()
{
CString rv;
if (SETUP.nDoTimestamp) {
TCHAR sTemp[1024];
_sntprintf(sTemp,1024,_T("[%02d:%02d:%02d]"),tTimestamp.wHour,tTimestamp.wMinute,tTimestamp.wSecond);
rv += sTemp;
rv += _T(" ");
}
/*
if (szSender.GetLength()) {
rv += _T("<");
rv += szSender;
rv += _T("> ");
}
*/
rv += szMessage;
return rv;
}
void PrintToLogFile(TCHAR * szFilename,TCHAR * szMessage) {
if (!SETUP.nDoLogging) return;
CString sInvalidChars = _T("\\/?*:|\"'<>");
CString sSolidFilename = szFilename;
for (int i=0; i<sSolidFilename.GetLength(); i++)
if (sInvalidChars.Find(sSolidFilename[i]) >= 0)
sSolidFilename.SetAt(i,_T('_'));
TCHAR buffer[1000];
GetModuleFileName(NULL,buffer,1000);
CString path = buffer;
int nPos = path.ReverseFind(_T('\\'));
if (nPos==-1) path = "";
else path = path.Left(nPos);
path += _T("\\");
path += SETUP.szLogDirectory;
CreateDirectory(path.LockBuffer(),NULL);
path += _T("\\");
path += sSolidFilename;
HANDLE hFile = CreateFile(path.LockBuffer(),GENERIC_WRITE,FILE_SHARE_WRITE,NULL,OPEN_ALWAYS,NULL,NULL);
if (hFile!=INVALID_HANDLE_VALUE) {
DWORD nWritten;
char s8[2048];
//AfxW2AHelper(s,szMessage,2048);
WideCharToMultiByte(SETUP.nCodepage, 0, szMessage, -1, s8, 2048, NULL, NULL);
SetFilePointer(hFile,NULL,NULL,FILE_END);
WriteFile(hFile,s8,strlen(s8),&nWritten,NULL);
CloseHandle(hFile);
}
}
void PrintToLogFileF(TCHAR * szFilename,TCHAR * szFormat, ...) {
TCHAR text[2048];
va_list ap;
va_start(ap, szFormat);
_vsntprintf(text, 2048, szFormat, ap);
va_end(ap);
PrintToLogFile(szFilename,text);
}
void zsIRC_Line::LogToFile(TCHAR * szFilename)
{
CString rv;
if (SETUP.nDoLogTimestamp) {
TCHAR sTemp[1024];
_sntprintf(sTemp,1024,_T("[%02d:%02d:%02d]"),tTimestamp.wHour,tTimestamp.wMinute,tTimestamp.wSecond);
rv += sTemp;
rv += _T(" ");
}
/*
if (szSender.GetLength()) {
rv += _T("<");
rv += szSender;
rv += _T("> ");
}
*/
rv += szMessage;
rv += _T("\r\n");
PrintToLogFile(szFilename,rv.LockBuffer());
}