forked from QuantConnect/Lean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileLogHandler.cs
128 lines (117 loc) · 4.4 KB
/
FileLogHandler.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
/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Globalization;
using System.IO;
namespace QuantConnect.Logging
{
/// <summary>
/// Provides an implementation of <see cref="ILogHandler"/> that writes all log messages to a file on disk.
/// </summary>
public class FileLogHandler : ILogHandler
{
private bool _disposed;
// we need to control synchronization to our stream writer since it's not inherently thread-safe
private readonly object _lock = new object();
private readonly Lazy<TextWriter> _writer;
private readonly bool _useTimestampPrefix;
/// <summary>
/// Initializes a new instance of the <see cref="FileLogHandler"/> class to write messages to the specified file path.
/// The file will be opened using <see cref="FileMode.Append"/>
/// </summary>
/// <param name="filepath">The file path use to save the log messages</param>
/// <param name="useTimestampPrefix">True to prefix each line in the log which the UTC timestamp, false otherwise</param>
public FileLogHandler(string filepath, bool useTimestampPrefix = true)
{
_useTimestampPrefix = useTimestampPrefix;
_writer = new Lazy<TextWriter>(
() => new StreamWriter(File.Open(filepath, FileMode.Append, FileAccess.Write, FileShare.Read))
);
}
/// <summary>
/// Initializes a new instance of the <see cref="FileLogHandler"/> class using 'log.txt' for the filepath.
/// </summary>
public FileLogHandler()
: this(Log.FilePath)
{
}
/// <summary>
/// Write error message to log
/// </summary>
/// <param name="text">The error text to log</param>
public void Error(string text)
{
WriteMessage(text, "ERROR");
}
/// <summary>
/// Write debug message to log
/// </summary>
/// <param name="text">The debug text to log</param>
public void Debug(string text)
{
WriteMessage(text, "DEBUG");
}
/// <summary>
/// Write debug message to log
/// </summary>
/// <param name="text">The trace text to log</param>
public void Trace(string text)
{
WriteMessage(text, "TRACE");
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
/// <filterpriority>2</filterpriority>
public void Dispose()
{
lock (_lock)
{
if (_writer.IsValueCreated)
{
_disposed = true;
_writer.Value.Dispose();
}
}
}
/// <summary>
/// Creates the message to be logged
/// </summary>
/// <param name="text">The text to be logged</param>
/// <param name="level">The logging leel</param>
/// <returns></returns>
protected virtual string CreateMessage(string text, string level)
{
if (_useTimestampPrefix)
{
return $"{DateTime.UtcNow.ToString("o", CultureInfo.InvariantCulture)} {level}:: {text}";
}
return $"{level}:: {text}";
}
/// <summary>
/// Writes the message to the writer
/// </summary>
private void WriteMessage(string text, string level)
{
var message = CreateMessage(text, level);
lock (_lock)
{
if (_disposed) return;
_writer.Value.WriteLine(message);
_writer.Value.Flush();
}
}
}
}