-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDailyLoggingTraceListener.cs
717 lines (635 loc) · 36 KB
/
DailyLoggingTraceListener.cs
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Text;
//using System.Windows.Forms;
namespace Tomochan154.Debugging
{
/// <summary>日付単位でファイルを分割したメッセージを出力する機能を提供します。</summary>
public class DailyLoggingTraceListener : TraceListener
{
#region Field
/// <summary>排他ロックに使用する object。</summary>
private readonly object _syncLock = new object();
#endregion
#region Constructor
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
public DailyLoggingTraceListener()
: this(-1, null, null, null, null, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
public DailyLoggingTraceListener(long maxSize)
: this(maxSize, null, null, null, null, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(long maxSize, string appName)
: this(maxSize, null, null, null, null, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
public DailyLoggingTraceListener(string outputDirectory)
: this(-1, outputDirectory, null, null, null, null, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(string outputDirectory, string appName)
: this(-1, outputDirectory, null, null, null, null, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="filter">メッセージの出力を制御する <see cref="TraceFilter"/>。</param>
public DailyLoggingTraceListener(string outputDirectory, TraceFilter filter)
: this(-1, outputDirectory, null, null, null, filter, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="filter">メッセージの出力を制御する <see cref="TraceFilter"/>。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(string outputDirectory, TraceFilter filter, string appName)
: this(-1, outputDirectory, null, null, null, filter, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
public DailyLoggingTraceListener(long maxSize, string outputDirectory, string fileNameFormat, string datetimeFormat)
: this(maxSize, outputDirectory, fileNameFormat, datetimeFormat, null, null, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(long maxSize, string outputDirectory, string fileNameFormat, string datetimeFormat, string appName)
: this(maxSize, outputDirectory, fileNameFormat, datetimeFormat, null, null, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="encoding">メッセージのエンコーディングを表す <see cref="Encoding"/>。</param>
public DailyLoggingTraceListener(string outputDirectory, string fileNameFormat, string datetimeFormat, Encoding encoding)
: this(-1, outputDirectory, fileNameFormat, datetimeFormat, encoding, null, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="encoding">メッセージのエンコーディングを表す <see cref="Encoding"/>。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(string outputDirectory, string fileNameFormat, string datetimeFormat, Encoding encoding, string appName)
: this(-1, outputDirectory, fileNameFormat, datetimeFormat, encoding, null, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="filter">メッセージの出力を制御する <see cref="TraceFilter"/>。</param>
public DailyLoggingTraceListener(string outputDirectory, string fileNameFormat, string datetimeFormat, TraceFilter filter)
: this(-1, outputDirectory, fileNameFormat, datetimeFormat, null, filter, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="filter">メッセージの出力を制御する <see cref="TraceFilter"/>。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(string outputDirectory, string fileNameFormat, string datetimeFormat, TraceFilter filter, string appName)
: this(-1, outputDirectory, fileNameFormat, datetimeFormat, null, filter, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="encoding">メッセージのエンコーディングを表す <see cref="Encoding"/>。</param>
public DailyLoggingTraceListener(long maxSize, string outputDirectory, string fileNameFormat, string datetimeFormat, Encoding encoding)
: this(maxSize, outputDirectory, fileNameFormat, datetimeFormat, encoding, null, null)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="encoding">メッセージのエンコーディングを表す <see cref="Encoding"/>。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(long maxSize, string outputDirectory, string fileNameFormat, string datetimeFormat, Encoding encoding, string appName)
: this(maxSize, outputDirectory, fileNameFormat, datetimeFormat, encoding, null, appName)
{
}
/// <summary>インスタンスを初期化します。</summary>
/// <param name="maxSize">
/// ファイルの最大サイズを表す long。<br/>
/// ゼロを指定した場合はサイズによるファイルの分割を行いません。<br/>
/// 負の値を指定した場合は <see cref="DefaultMaxSize"/> プロパティの値が使用されます。
/// </param>
/// <param name="outputDirectory">出力先のディレクトリパスを表す string。</param>
/// <param name="fileNameFormat">
/// 出力ファイル名の複合書式指定文字列を表す string。<br/>
/// 各要素のインデックスは以下の通りです。<br/>
/// 0 = 書き込み日時、1 = ファイル番号。
/// </param>
/// <param name="datetimeFormat">日付と時刻の複合書式指定文字列を表す string。</param>
/// <param name="encoding">メッセージのエンコーディングを表す <see cref="Encoding"/>。</param>
/// <param name="filter">メッセージの出力を制御する <see cref="TraceFilter"/>。</param>
/// <param name="appName">メッセージを出力するアプリケーション名を表す string。</param>
public DailyLoggingTraceListener(long maxSize, string outputDirectory, string fileNameFormat, string datetimeFormat, Encoding encoding, TraceFilter filter, string appName)
: base(appName)
{
this.FileNumber = 0;
this.LastUpdate = DateTime.MinValue;
this.Filter = filter;
if (maxSize < 0)
{
if (this.Attributes.ContainsKey("maxSize") == true)
{
this.MaxSize = long.Parse(this.Attributes["maxSize"]);
}
else
{
this.MaxSize = this.DefaultMaxSize;
}
}
else
{
this.MaxSize = maxSize;
}
if (outputDirectory == null)
{
if (this.Attributes.ContainsKey("outputDirectory") == true)
{
this.OutputDirectory = this.Attributes["outputDirectory"];
}
else
{
this.OutputDirectory = Environment.CurrentDirectory + Path.DirectorySeparatorChar;
//this.OutputDirectory = Application.StartupPath + Path.DirectorySeparatorChar;
}
}
else
{
this.OutputDirectory = outputDirectory;
}
if (fileNameFormat == null)
{
if (this.Attributes.ContainsKey("fileNameFormat") == true)
{
this.FileNameFormat = this.Attributes["fileNameFormat"];
}
else
{
this.FileNameFormat = this.DefaultFileNameFormat;
}
}
else
{
this.FileNameFormat = fileNameFormat;
}
if (datetimeFormat == null)
{
if (this.Attributes.ContainsKey("datetimeFormat") == true)
{
this.DatetimeFormat = this.Attributes["datetimeFormat"];
}
else
{
this.DatetimeFormat = this.DefaultDatetimeFormat;
}
}
else
{
this.DatetimeFormat = datetimeFormat;
}
if (encoding == null)
{
if (this.Attributes.ContainsKey("encoding") == true)
{
this.Encoding = Encoding.GetEncoding(this.Attributes["encoding"]);
}
else
{
this.Encoding = this.DefaultEncoding;
}
}
else
{
this.Encoding = encoding;
}
}
#endregion
#region Dispose
/// <summary>すべてのリソースを解放します。</summary>
/// <param name="disposing">マネージリソースを解放するかどうかを表す bool。</param>
/// <remarks><paramref name="disposing"/> に <see langword="false"/> を指定してはいけません。</remarks>
protected override void Dispose(bool disposing)
{
if (disposing == true)
{
this.Close();
}
}
#endregion
#region Property
/// <summary>このクラスがスレッドセーフかどうかを取得します。</summary>
public override bool IsThreadSafe { get { return true; } }
/// <summary>テキストライタを取得または設定します。</summary>
public TextWriter Writer { get; set; }
/// <summary>メッセージのエンコーディングを取得または設定します。</summary>
public Encoding Encoding { get; set; }
/// <summary>ファイルの最大サイズを取得または設定します。</summary>
public long MaxSize { get; set; }
/// <summary>出力ファイル名の書式指定文字列を取得または設定します。</summary>
public string FileNameFormat { get; set; }
/// <summary>日付と時刻の書式指定文字列を取得または設定します。</summary>
public string DatetimeFormat { get; set; }
/// <summary>現在のファイル番号を取得します。</summary>
public int FileNumber { get; protected set; }
/// <summary>メッセージを書き込んだ最終日時を取得します。</summary>
public DateTime LastUpdate { get; protected set; }
/// <summary>出力先のディレクトリパスを取得または設定します。</summary>
public string OutputDirectory { get; set; }
/// <summary>現在開いているファイル情報を取得します。</summary>
public FileInfo CurrentFile { get; protected set; }
/// <summary>MaxSize プロパティの既定値を取得します。</summary>
public virtual long DefaultMaxSize { get { return 1024 * 1024; } }
/// <summary>FileNameFormat プロパティの既定値を取得します。</summary>
public virtual string DefaultFileNameFormat { get { return "{0:yyyyMMdd}_{1}.txt"; } }
/// <summary>DatetimeFormat プロパティの既定値を取得します。</summary>
public virtual string DefaultDatetimeFormat { get { return "{0:MM/dd HH:mm:ss}"; } }
/// <summary>Encoding プロパティの既定値を取得します。</summary>
public virtual Encoding DefaultEncoding { get { return Encoding.Default; } }
#endregion
#region Method
/// <summary>オプションのメッセージを作成します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <returns>作成したオプションのメッセージを表す string。</returns>
protected virtual string CreateOptionString(TraceEventCache eventCache)
{
StringBuilder buffer = new StringBuilder();
string indent = new string(' ', this.IndentSize * (this.IndentLevel + 1));
if ((this.TraceOutputOptions & TraceOptions.ProcessId) != 0)
{
buffer.AppendLine(indent + "ProcessId=" + eventCache.ProcessId);
}
if ((this.TraceOutputOptions & TraceOptions.LogicalOperationStack) != 0)
{
bool first = true;
foreach (Object obj in eventCache.LogicalOperationStack)
{
if (first == true)
{
buffer.Append(indent + "LogicalOperationStack=" + obj.ToString());
}
else
{
buffer.Append(", " + obj.ToString());
}
first = false;
}
buffer.AppendLine();
}
if ((this.TraceOutputOptions & TraceOptions.ThreadId) != 0)
{
buffer.AppendLine(indent + "ThreadId=" + eventCache.ThreadId);
}
if ((this.TraceOutputOptions & TraceOptions.Timestamp) != 0)
{
buffer.AppendLine(indent + "Timestamp=" + eventCache.Timestamp);
}
if ((this.TraceOutputOptions & TraceOptions.DateTime) != 0)
{
buffer.AppendLine(indent + "DateTime" + eventCache.DateTime.ToString("o", CultureInfo.CurrentCulture));
}
if ((this.TraceOutputOptions & TraceOptions.Callstack) != 0)
{
buffer.AppendLine(indent + "Callstack=" + eventCache.Callstack);
}
return buffer.ToString();
}
/// <summary>トレース情報に対応するトレースメッセージを作成します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="message">メッセージとして出力する文字列を表す string。</param>
/// <returns>作成したトレースメッセージを表す string。</returns>
protected virtual string CreateMessage(TraceEventCache eventCache, String source, TraceEventType eventType, int id, string message)
{
if (this.TraceOutputOptions == TraceOptions.None)
{
return string.Format(CultureInfo.CurrentCulture, this.DatetimeFormat + " {1}: {2} : {3}", eventCache.DateTime, eventType.ToString(), id.ToString(CultureInfo.CurrentCulture), message);
}
else
{
return string.Format(CultureInfo.CurrentCulture, this.DatetimeFormat + " {1}: {2} : {3}", eventCache.DateTime, eventType.ToString(), id.ToString(CultureInfo.CurrentCulture), message) + Environment.NewLine + CreateOptionString(eventCache);
}
}
/// <summary>トレース情報に対応するトレースメッセージを作成します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="data">メッセージとして出力するデータを表す object[]。</param>
/// <returns>作成したトレースメッセージを表す string。</returns>
protected virtual string CreateMessage(TraceEventCache eventCache, String source, TraceEventType eventType, int id, params object[] data)
{
if (data != null && data.Length > 0)
{
StringBuilder buffer = new StringBuilder(data[0].ToString());
for (int i = 1; i < data.Length; i++)
{
if (data[i] != null)
{
buffer.Append(", " + data[i].ToString());
}
}
return CreateMessage(eventCache, source, eventType, id, buffer.ToString());
}
else
{
return CreateMessage(eventCache, source, eventType, id, null as string);
}
}
/// <summary>トレース情報に対応するトレースメッセージを作成します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="format">メッセージの複合書式指定文字列を表す string。</param>
/// <param name="args"><paramref name="format"/> に対応する出力データを表す object[]。</param>
/// <returns>作成したトレースメッセージを表す string。</returns>
protected virtual string CreateMessage(TraceEventCache eventCache, String source, TraceEventType eventType, int id, string format, params object[] args)
{
if (args != null)
{
return CreateMessage(eventCache, source, eventType, id, string.Format(CultureInfo.CurrentCulture, format, args));
}
else
{
return CreateMessage(eventCache, source, eventType, id, format);
}
}
/// <summary>指定のメッセージが現在のファイルに出力できるか計算し、必要に応じて新規ファイルを作成して割り当てます。</summary>
/// <param name="appendLength">出力するメッセージのバイト数を表す int。</param>
private void CalculateFileSize(int appendLength)
{
DateTime now = DateTime.Now;
if (this.Writer == null || now.Date != this.LastUpdate)
{
CloseStream();
this.FileNumber = 0;
this.LastUpdate = now.Date;
this.CurrentFile = new FileInfo(string.Format(CultureInfo.CurrentCulture, this.OutputDirectory + this.FileNameFormat, this.LastUpdate, this.FileNumber));
if (this.Writer == null)
{
if (this.CurrentFile.Directory.Exists == false)
{
Directory.CreateDirectory(this.OutputDirectory);
this.CurrentFile.Directory.Create();
}
}
}
this.CurrentFile.Refresh();
while (this.CurrentFile.Exists == true && this.MaxSize > 0 && this.CurrentFile.Length + appendLength > this.MaxSize)
{
CloseStream();
this.FileNumber += 1;
this.CurrentFile = new FileInfo(string.Format(CultureInfo.CurrentCulture, this.OutputDirectory + this.FileNameFormat, this.LastUpdate, this.FileNumber));
}
if (this.Writer == null)
{
this.Writer = new StreamWriter(new FileStream(this.CurrentFile.FullName, FileMode.Append, FileAccess.Write, FileShare.Read));
}
}
/// <summary>指定のメッセージをファイルに出力します。</summary>
/// <param name="message">出力するメッセージを表す string。</param>
private void WriteLineInternal(string message)
{
WriteInternal(message + Environment.NewLine);
this.Writer.Flush();
this.NeedIndent = true;
}
/// <summary>指定のメッセージをファイルに出力します。</summary>
/// <param name="message">出力するメッセージを表す string。</param>
private void WriteInternal(string message)
{
if (this.NeedIndent == true && this.IndentLevel > 0)
{
this.NeedIndent = false;
message = new string(' ', this.IndentSize * this.IndentLevel) + message;
}
byte[] binary = this.Encoding.GetBytes(message);
CalculateFileSize(binary.Length);
this.Writer.Write(message);
this.Writer.Flush();
}
/// <summary>ストリームを閉じます。</summary>
private void CloseStream()
{
if (this.Writer != null)
{
this.Writer.Flush();
this.Writer.Close();
this.Writer = null;
}
}
#endregion
#region Override Method
/// <summary>トレース情報に対応するトレースメッセージを出力します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="data">メッセージとして出力するデータを表す object[]。</param>
public override void TraceData(TraceEventCache eventCache, string source, TraceEventType eventType, int id, params object[] data)
{
lock (_syncLock)
{
if (this.Filter == null || this.Filter.ShouldTrace(eventCache, source, eventType, id, null, null, null, data) == true)
{
WriteLineInternal(CreateMessage(eventCache, source, eventType, id, data));
}
}
}
/// <summary>トレース情報に対応するトレースメッセージを出力します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="data">メッセージとして出力するデータを表す object。</param>
public override void TraceData(TraceEventCache eventCache, string source, TraceEventType eventType, int id, object data)
{
lock (_syncLock)
{
if (this.Filter == null || this.Filter.ShouldTrace(eventCache, source, eventType, id, null, null, data, null) == true)
{
WriteLineInternal(CreateMessage(eventCache, source, eventType, id, data));
}
}
}
/// <summary>トレース情報に対応するトレースメッセージを出力します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="message">メッセージとして出力する文字列を表す string。</param>
public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string message)
{
lock (_syncLock)
{
if (this.Filter == null || this.Filter.ShouldTrace(eventCache, source, eventType, id, message, null, null, null) == true)
{
WriteLineInternal(CreateMessage(eventCache, source, eventType, id, message));
}
}
}
/// <summary>トレース情報に対応するトレースメッセージを出力します。</summary>
/// <param name="eventCache">固有のトレースイベント情報を表す <see cref="TraceEventCache"/>。</param>
/// <param name="source">メッセージを出力するアプリケーション名を表す string。</param>
/// <param name="eventType">トレースイベントの種類を表す <see cref="TraceEventType"/>。</param>
/// <param name="id">トレースイベントの識別子を表す int。</param>
/// <param name="format">メッセージの複合書式指定文字列を表す string。</param>
/// <param name="args"><paramref name="format"/> に対応する出力データを表す object[]。</param>
public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string format, params object[] args)
{
lock (_syncLock)
{
if (this.Filter == null || this.Filter.ShouldTrace(eventCache, source, eventType, id, format, args, null, null) == true)
{
WriteLineInternal(CreateMessage(eventCache, source, eventType, id, format, args));
}
}
}
/// <summary>インデントを出力します。</summary>
protected override void WriteIndent()
{
lock (_syncLock)
{
WriteInternal("");
}
}
/// <summary>指定のメッセージをファイルに出力します。</summary>
/// <param name="message">出力するメッセージを表す string。</param>
public override void Write(string message)
{
lock (_syncLock)
{
WriteInternal(message);
}
}
/// <summary>指定のメッセージの先頭に現在日時を付けてファイルに出力します。</summary>
/// <param name="message">出力するメッセージを表す string。</param>
public override void WriteLine(string message)
{
lock (_syncLock)
{
WriteLineInternal(String.Format(DatetimeFormat + " {1}", DateTime.Now, message));
}
}
/// <summary>ストリームを閉じます。</summary>
public override void Close()
{
lock (_syncLock)
{
CloseStream();
}
}
/// <summary>ストリームをフラッシュします。</summary>
public override void Flush()
{
lock (_syncLock)
{
this.Writer.Flush();
}
}
/// <summary>サポートされるカスタム属性を取得します。</summary>
/// <returns>カスタム属性名を表す string[]。</returns>
protected override string[] GetSupportedAttributes()
{
return new string[] { "maxSize", "outputDirectory", "fileNameFormat", "datetimeFormat", "encoding" };
}
#endregion
}
}