-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathLogFile.cs
217 lines (177 loc) · 5.63 KB
/
LogFile.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
//
// Revit Batch Processor
//
// Copyright (c) 2020 Daniel Rumery, BVN
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace BatchRvtUtil;
public class LogFile
{
private const string DateFormat = "dd/MM/yyyy";
private const string TimeFormat = "HH:mm:ss";
private static readonly string SessionId = Guid.NewGuid().ToString();
private readonly string logFileName_;
private readonly string logFilePath_;
private readonly string logFolderPath_;
private readonly string logName_;
private StreamWriter appendTextStreamWriter_;
public LogFile(string logName, string logFolderPath, bool includeUsernamePrefix = true)
{
logFolderPath_ = logFolderPath;
logName_ = logName;
var logFilenamePrefix = includeUsernamePrefix ? Environment.UserName : string.Empty;
var separator = logFilenamePrefix != string.Empty ? "_" : string.Empty;
logFileName_ = logFilenamePrefix + separator + logName + ".log";
logFilePath_ = Path.Combine(
logFolderPath_,
logFileName_
);
}
private void Open()
{
Close();
try
{
appendTextStreamWriter_ = new FileInfo(logFilePath_).AppendText();
}
catch (Exception)
{
appendTextStreamWriter_ = null;
}
}
private static string GetSerializedLogEntry(DateTime dateTime, string sessionId, object message)
{
return SerializeAsJson(
GetLogObject(dateTime, sessionId, message)
);
}
public string GetLogFilePath()
{
return logFilePath_;
}
private static object GetLogObject(DateTime dateTime, string sessionId, object message)
{
var utcDateTime = dateTime.ToUniversalTime();
var logEntry = new
{
date = new
{
local = dateTime.ToString(DateFormat),
utc = utcDateTime.ToString(DateFormat)
},
time = new
{
local = dateTime.ToString(TimeFormat),
utc = utcDateTime.ToString(TimeFormat)
},
sessionId,
message
};
return logEntry;
}
private static string SerializeAsJson(object logObject)
{
return JObject.FromObject(logObject).ToString(Formatting.None);
}
private bool WriteMessage(string sessionId, object message)
{
var success = false;
var useExistingOpenStream = appendTextStreamWriter_ != null;
try
{
var dateTimeNow = DateTime.Now;
string logEntry = null;
try
{
logEntry = GetSerializedLogEntry(dateTimeNow, sessionId, message);
}
catch (Exception e)
{
var errorMessage = new
{
error = "FAILED TO PARSE LOG MESSAGE OBJECT",
exceptionType = e.GetType(),
exceptionMessage = e.Message
};
logEntry = GetSerializedLogEntry(dateTimeNow, sessionId, errorMessage);
}
if (!useExistingOpenStream) Open();
if (appendTextStreamWriter_ != null)
{
appendTextStreamWriter_.WriteLine(logEntry);
appendTextStreamWriter_.Flush();
}
success = true;
}
catch (Exception)
{
success = false;
}
if (!useExistingOpenStream) Close();
return success;
}
public bool WriteMessage(object message)
{
return WriteMessage(GetSessionId(), message);
}
private void Close()
{
if (appendTextStreamWriter_ == null) return;
try
{
appendTextStreamWriter_.Close();
}
catch (Exception)
{
// ignored
}
appendTextStreamWriter_ = null;
}
private static string GetSessionId()
{
return SessionId;
}
private static string ReadLineAsPlainText(string logLine, bool useUniversalTime)
{
var plainTextLine = logLine;
var jobject = JsonUtil.DeserializeFromJson(logLine);
if (jobject == null) return plainTextLine;
var dateString = jobject["date"][useUniversalTime ? "utc" : "local"];
var timeString = jobject["time"][useUniversalTime ? "utc" : "local"];
var message = jobject["message"]["message"];
plainTextLine = dateString + " " + timeString + " : " + message;
return plainTextLine;
}
public static IEnumerable<string> ReadLinesAsPlainText(string logFilePath, bool useUniversalTime = false)
{
try
{
return File.ReadAllLines(logFilePath)
.Select(line => ReadLineAsPlainText(line, useUniversalTime))
.ToList();
}
catch (Exception e)
{
return null;
}
}
}