-
Notifications
You must be signed in to change notification settings - Fork 9
/
log.cpp
602 lines (516 loc) · 15.1 KB
/
log.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
//
// AYA version 5
//
// ロギング用クラス CLog
// written by umeici. 2004
//
#include <algorithm>
#if defined(WIN32) || defined(_WIN32_WCE)
# include "stdafx.h"
#endif
#include "deelx.h"
#include "ccct.h"
#include "log.h"
#include "manifest.h"
#include "messages.h"
#include "misc.h"
#if defined(POSIX)
# include "posix_utils.h"
#endif
#include "globaldef.h"
#include "timer.h"
#include "wsex.h"
//////////DEBUG/////////////////////////
#ifdef _WINDOWS
#ifdef _DEBUG
#include <crtdbg.h>
#define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
#endif
#endif
////////////////////////////////////////
/* -----------------------------------------------------------------------
* 関数名 : CLog::Start
* 機能概要: ロギングを開始します
* -----------------------------------------------------------------------
*/
void CLog::Start(const yaya::string_t &p, int cs, HWND hw, char il)
{
iolog = il;
if( open ) {
if(path != p || charset != cs
#ifdef _WINDOWS
|| hw != hWnd
#endif
) {
Termination();
}
else {
if ( ! iolog ) {
Termination();
}
return;
}
}
path = p;
charset = cs;
if( hw || loghandler) { //hwがある=玉からの呼び出しなので強制ON、ファイル無効
path.erase();
}
else if ( ! il ) {
enable = 0;
return;
}
#if defined(WIN32)
// もしhWndがNULLなら起動中のチェックツールを探して取得する
hWnd = hw != NULL ? hw : GetCheckerWnd();
#endif
#if defined(POSIX)
fix_filepath(path);
#endif
// ロギング有効/無効の判定
if ( path.size() ) {
fileen = 1;
enable = 1;
}
else {
fileen = 0;
enable = 1;
if(
loghandler == NULL
#if defined(WIN32)
&&hWnd == NULL
#endif
) {
enable = 0;
return;
}
}
timer.restart();
// 文字列作成
yaya::string_t str = yayamsg::GetTextFromTable(E_J,0);
str += GetDateString();
str += L"\n\n";
#ifdef _WINDOWS
// ファイルへ書き込み
if (fileen) {
char *tmpstr = Ccct::Ucs2ToMbcs(str, charset);
if (tmpstr != NULL) {
FILE *fp = yaya::w_fopen(path.c_str(), L"w");
if (fp != NULL) {
/* if (charset == CHARSET_UTF8)
write_utf8bom(fp);*/
fputs(tmpstr,fp);
fclose(fp);
}
free(tmpstr);
}
}
#endif
open = 1;
// チェックツールへ送出 最初に文字コードを設定してから文字列を送出
if(charset == CHARSET_SJIS)
Call_loghandler(L"", E_SJIS);
else if(charset == CHARSET_UTF8)
Call_loghandler(L"", E_UTF8);
else // CHARSET_DEFAULT
Call_loghandler(L"", E_DEFAULT);
Call_loghandler(str, E_I);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::Termination
* 機能概要: ロギングを終了します
* -----------------------------------------------------------------------
*/
void CLog::Termination(void)
{
if (!enable)
return;
Message(1);
yaya::string_t str = GetDateString();
str += L"\n\n";
Write(str);
open = 0;
Call_loghandler(L"", E_END);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::Write
* 機能概要: ログに文字列を書き込みます
* -----------------------------------------------------------------------
*/
void CLog::Write(const yaya::char_t *str, int mode, int id)
{
if (!enable)
return;
if (str == NULL)
return;
if (!wcslen(str))
return;
// 文字列中の\rは消す
yaya::string_t cstr = str;
size_t len = cstr.size();
for(size_t i = 0; i < len; ) {
if(cstr[i] == L'\r') {
cstr.erase(i, 1);
len--;
continue;
}
i++;
}
#ifdef _WINDOWS
// ファイルへ書き込み
if (fileen) {
if (! path.empty()) {
char *tmpstr = Ccct::Ucs2ToMbcs(cstr, charset);
if (tmpstr != NULL) {
FILE *fp = yaya::w_fopen(path.c_str(), L"a");
if (fp != NULL) {
fputs(tmpstr, fp);
fclose(fp);
}
free(tmpstr);
}
}
}
#endif
// チェックツールへ送出
Call_loghandler(cstr, mode, id);
}
//----
void CLog::Write(const yaya::string_t &str, int mode, int id)
{
Write(str.c_str(), mode, id);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::Filename
* 機能概要: 既定のフォーマットでファイル名をログに記録します
* -----------------------------------------------------------------------
*/
void CLog::Filename(const yaya::string_t &filename)
{
yaya::string_t str = L"- ";
str += filename;
str += L"\n";
Write(str);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::Message
* 機能概要: idで指定された既定のメッセージをログに書き込みます
* -----------------------------------------------------------------------
*/
void CLog::Message(int id, int mode)
{
Write(yayamsg::GetTextFromTable(E_J,id), mode, id);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::Error
* 機能概要: ログにmodeとidで指定されたエラー文字列を書き込みます
*
* 引数 : ref 付加情報
* dicfilename エラーを起こした箇所を含む辞書ファイルの名前
* linecount エラーを起こした行番号
*
* refとdicfilenameはNULL、linecountは-1とすることで、これらを
* 非表示にできます
* -----------------------------------------------------------------------
*/
void CLog::Error(int mode, int id, const yaya::char_t *ref, const yaya::string_t &dicfilename, ptrdiff_t linecount)
{
if (locking)
return;
// ログに書き込み文字列を作成(辞書ファイル名と行番号)
yaya::string_t logstr;
if (dicfilename.empty())
logstr = L"-(-) : ";
else {
logstr = dicfilename + L'(';
if(linecount == -1)
logstr += L"-) : ";
else {
logstr += yaya::ws_lltoa(linecount);
logstr += L") : ";
}
}
// ログに書き込み文字列を作成(本文)
{
logstr += yayamsg::GetTextFromTable(mode,id);
}
// ログに書き込み文字列を作成(付加情報)
if (ref != NULL) {
logstr += L" : ";
logstr += ref;
}
// 念の為改行コードを消しておく
for(yaya::string_t::iterator it = logstr.begin(); it != logstr.end(); it++){
if ( *it == '\r' || *it == '\n' ) {
*it = ' ';
}
}
AddErrorLogHistory(logstr);
// 書き込み
if (!enable)
return;
logstr += L'\n';
Write(logstr, mode, id);
}
//----
void CLog::Error(int mode, int id, const yaya::string_t& ref, const yaya::string_t& dicfilename, ptrdiff_t linecount)
{
Error(mode, id, (yaya::char_t *)ref.c_str(), dicfilename, linecount);
}
//----
void CLog::Error(int mode, int id, const yaya::char_t *ref)
{
Error(mode, id, ref, yaya::string_t(), -1);
}
//----
void CLog::Error(int mode, int id, const yaya::string_t& ref)
{
Error(mode, id, (yaya::char_t *)ref.c_str(), yaya::string_t(), -1);
}
//----
void CLog::Error(int mode, int id, const yaya::string_t& dicfilename, ptrdiff_t linecount)
{
Error(mode, id, (yaya::char_t *)NULL, dicfilename, linecount);
}
//----
void CLog::Error(int mode, int id)
{
Error(mode, id, (yaya::char_t *)NULL, yaya::string_t(), -1);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::Io
* 機能概要: 入出力文字列と実行時間をログに記録します
* 引数 : io 0/1=開始時/終了時
* -----------------------------------------------------------------------
*/
void CLog::Io(char io, const yaya::char_t *str)
{
if (!enable || !iolog)
return;
if(!io) {
//ignoreiolog機能。
if ( iolog_filter_keyword.size() > 0 || iolog_filter_keyword_regex.size() > 0 ) {
yaya::string_t cstr=str;
bool found = false;
std::vector<yaya::string_t>::iterator it;
for(it = iolog_filter_keyword.begin(); it != iolog_filter_keyword.end(); it++){
if(cstr.find(*it) != yaya::string_t::npos){
found = true;
break;
}
}
if ( ! found ) {
for(it = iolog_filter_keyword_regex.begin(); it != iolog_filter_keyword_regex.end(); it++){
CRegexpT<yaya::char_t> regex(it->c_str(),MULTILINE | EXTENDED);
MatchResult result = regex.Match(cstr.c_str());
if ( result.IsMatched() ) {
found = true;
break;
}
}
}
if ( iolog_filter_mode == 0 ) { //denylist
if ( found ) {
skip_next_log_output = 1;
return;
}
}
else { //allowlist
if ( ! found ) {
skip_next_log_output = 1;
return;
}
}
}
Write(L"// request\n");
Write(str);
Write(L"\n");
timer.restart();
}
else {
//ログ抑制
if(skip_next_log_output){
skip_next_log_output=0;
return;
}
int elapsed_time = timer.elapsed();
yaya::string_t t_str = L"// response (Execution time : " + yaya::ws_itoa(elapsed_time) + L"[ms])\n";
Write(t_str);
Write(str);
Write(L"\n");
}
}
void CLog::Io(char io, const yaya::string_t &str)
{
Io(io,str.c_str());
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::IoLib
* 機能概要: 外部ライブラリ入出力文字列と実行時間をログに記録します
* 引数 : io 0/1=開始時/終了時
* -----------------------------------------------------------------------
*/
void CLog::IoLib(char io, const yaya::string_t &str, const yaya::string_t &name)
{
if (!enable || !iolog)
return;
static yaya::timer timer;
if (!io) {
Write(L"// request to library\n// name : ");
Write(name + L"\n");
Write(str + L"\n");
timer.restart();
}
else {
int elapsed_time = timer.elapsed();
yaya::string_t t_str = L"// response (Execution time : " + yaya::ws_itoa(elapsed_time) + L"[ms])\n";
Write(t_str);
Write(str + L"\n");
}
}
void CLog::Call_loghandler(const yaya::string_t &str, int mode, int id)
{
Call_loghandler((yaya::char_t *)str.c_str(), mode, id);
}
void CLog::Call_loghandler(const yaya::char_t *str, int mode, int id){
if (loghandler)
loghandler(str,mode,id);
else
#if defined(WIN32)
SendLogToWnd(str,mode);
#else
return;
#endif
}
void CLog::Set_loghandler(void (*loghandler_v)(const yaya::char_t *str, int mode, int id)){
loghandler=loghandler_v;
if(loghandler)
enable = 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::SendLogToWnd
* 機能概要: チェックツールに制御メッセージおよびログ文字列をWM_COPYDATAで送信します
* -----------------------------------------------------------------------
*/
#if defined(WIN32)
void CLog::SendLogToWnd(const yaya::char_t *str, int mode)
{
if (hWnd == NULL)
return;
COPYDATASTRUCT cds;
cds.dwData = mode;
cds.cbData = (wcslen(str) + 1)*sizeof(yaya::char_t);
cds.lpData = (LPVOID)str;
DWORD res_dword = 0;
::SendMessageTimeout(hWnd, WM_COPYDATA, (WPARAM)NULL, (LPARAM)&cds, SMTO_ABORTIFHUNG|SMTO_BLOCK, 5000, &res_dword);
}
#endif
/* -----------------------------------------------------------------------
* 関数名 : CLog::GetCheckerWnd
* 機能概要: チェックツールのhWndを取得しますに
* -----------------------------------------------------------------------
*/
#if defined(WIN32)
HWND CLog::GetCheckerWnd(void)
{
return FindWindowA(CLASSNAME_CHECKTOOL, NULL);
}
#endif
/* -----------------------------------------------------------------------
* 関数名 : CLog::AddIologFilterKeyword / KeywordRegex
* 機能概要: IOログの無視する文字列リストを追加します
* -----------------------------------------------------------------------
*/
void CLog::AddIologFilterKeyword(const yaya::string_t &ignorestr){
std::vector<yaya::string_t>::iterator it = std::find(iolog_filter_keyword.begin(), iolog_filter_keyword.end(), ignorestr);
if ( it == iolog_filter_keyword.end() ){
iolog_filter_keyword.emplace_back(ignorestr);
}
}
void CLog::AddIologFilterKeywordRegex(const yaya::string_t &ignorestr){
std::vector<yaya::string_t>::iterator it = std::find(iolog_filter_keyword_regex.begin(), iolog_filter_keyword_regex.end(), ignorestr);
if ( it == iolog_filter_keyword_regex.end() ){
iolog_filter_keyword_regex.emplace_back(ignorestr);
}
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::DeleteIologFilterKeyword / KeywordRegex
* 機能概要: IOログの無視する文字列リストを削除します
* -----------------------------------------------------------------------
*/
void CLog::DeleteIologFilterKeyword(const yaya::string_t &ignorestr){
std::vector<yaya::string_t>::iterator it = std::find(iolog_filter_keyword.begin(), iolog_filter_keyword.end(), ignorestr);
if ( it != iolog_filter_keyword.end() ){
iolog_filter_keyword.erase(it);
}
}
void CLog::DeleteIologFilterKeywordRegex(const yaya::string_t &ignorestr){
std::vector<yaya::string_t>::iterator it = std::find(iolog_filter_keyword_regex.begin(), iolog_filter_keyword_regex.end(), ignorestr);
if ( it != iolog_filter_keyword_regex.end() ){
iolog_filter_keyword_regex.erase(it);
}
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::ClearIologFilterKeyword
* 機能概要: IOログの無視する文字列リストをクリアします
* -----------------------------------------------------------------------
*/
void CLog::ClearIologFilterKeyword(){
iolog_filter_keyword.clear();
iolog_filter_keyword_regex.clear();
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::SetIologFilterMode
* 機能概要: IOログのフィルタモード(ホワイトリスト=1/ブラックリスト=0)
* -----------------------------------------------------------------------
*/
void CLog::SetIologFilterMode(char mode)
{
iolog_filter_mode = mode;
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::AddErrorLogHistory
* 機能概要: 内部エラーログ履歴に追加します
* -----------------------------------------------------------------------
*/
void CLog::AddErrorLogHistory(const yaya::string_t &err) {
if(logmaxnum && error_log_history.size() >= logmaxnum) {
error_log_history.pop_back();
}
error_log_history.push_front(err);
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::GetErrorLogHistory
* 機能概要: 内部エラーログ履歴を返します
* -----------------------------------------------------------------------
*/
std::deque<yaya::string_t> & CLog::GetErrorLogHistory(void) {
return error_log_history;
}
/* -----------------------------------------------------------------------
* 関数名 : CLog::AppendErrorLogHistoryToBegin
* 機能概要: 内部エラーログ履歴を直接設定します
* -----------------------------------------------------------------------
*/
void CLog::AppendErrorLogHistoryToBegin(std::deque<yaya::string_t> &log) {
if(error_log_history.size())
error_log_history.insert(error_log_history.begin(),log.begin(),log.end());
else
error_log_history=log;
}
#if CPP_STD_VER >= 2011
void CLog::AppendErrorLogHistoryToBegin(std::deque<yaya::string_t> &&log) {
if(error_log_history.size())
error_log_history.insert(error_log_history.begin(),log.begin(),log.end());
else
error_log_history=log;
}
#endif
void CLog::SetMaxLogNum(size_t num)
{
logmaxnum = num;
}
size_t CLog::GetMaxLogNum()
{
return logmaxnum;
}