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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="LogService.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The log service.
// For now, this is just a simple logging service but we could provide support for a formal logging library later.
// Also, we can consider providing the UI layer with more functional logging. (i.e levels, time/date, highlighting etc)
// The Interop Classes are not very OO friendly, so this is going to be a static class.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Logging
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Timers;
using HandBrake.Interop.Interop;
using HandBrake.Interop.Interop.EventArgs;
using HandBrake.Worker.Logging.Models;
using HandBrakeWPF.Instance.Model;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.Services.Logging.Model;
using HandBrakeWPF.Utilities;
using Newtonsoft.Json;
using ILog = Interfaces.ILog;
using LogEventArgs = EventArgs.LogEventArgs;
public class LogService : HttpRequestBase, ILog
{
// TODO List.
// Maybe make the event weak?
// Make this class Thread Safe.
private static ILog loggerInstance;
private readonly object lockObject = new object();
private readonly object fileWriterLock = new object();
private readonly StringBuilder logBuilder = new StringBuilder();
private bool isLoggingEnabled;
private List<LogMessage> logMessages = new List<LogMessage>();
private int messageIndex;
private string diskLogPath;
private bool deleteLogFirst;
private bool isDiskLoggingEnabled;
private StreamWriter fileWriter;
private string logHeader;
private Timer remoteLogPollTimer;
private int remoteIndex = 0;
private bool isRemotePollingEnabled = false;
public LogService(IUserSettingService userSettingService)
{
HandBrakeUtils.MessageLogged += this.HandBrakeUtils_MessageLogged;
HandBrakeUtils.ErrorLogged += this.HandBrakeUtils_ErrorLogged;
if (userSettingService.GetUserSetting<bool>(UserSettingConstants.RemoteServiceEnabled))
{
this.ActivateRemoteLogPolling();
this.isRemotePollingEnabled = true;
this.port = userSettingService.GetUserSetting<int>(UserSettingConstants.RemoteServicePort);
this.serverUrl = string.Format("http://127.0.0.1:{0}/", this.port);
}
}
public event EventHandler<LogEventArgs> MessageLogged;
public event EventHandler LogReset;
public IEnumerable<LogMessage> LogMessages
{
get
{
lock (this.lockObject)
{
return this.logMessages.ToList();
}
}
}
public void LogMessage(string content)
{
if (!this.isLoggingEnabled)
{
return;
}
LogMessage msg = new LogMessage(content, this.messageIndex);
lock (this.lockObject)
{
this.messageIndex = this.messageIndex + 1;
this.logMessages.Add(msg);
this.logBuilder.AppendLine(msg.Content);
this.LogMessageToDisk(msg);
if (this.logMessages.Count > 50000)
{
this.messageIndex = this.messageIndex + 1;
msg = new LogMessage("Log Service Pausing. Too Many Log messages. This may indicate a problem with your encode.", this.messageIndex);
this.logMessages.Add(msg);
this.logBuilder.AppendLine(msg.Content);
this.LogMessageToDisk(msg);
this.isLoggingEnabled = false;
}
}
this.OnMessageLogged(msg); // Must be outside lock to be thread safe.
}
public void ConfigureLogging(LogHandlerConfig config)
{
this.isLoggingEnabled = true;
if (config.EnableDiskLogging)
{
if (!string.IsNullOrEmpty(config.LogFile) && !Directory.Exists(Path.GetDirectoryName(config.LogFile)))
{
Directory.CreateDirectory(Path.GetDirectoryName(config.LogFile));
}
this.EnableLoggingToDisk(config.LogFile, config.DeleteCurrentLogFirst);
}
this.logHeader = config.Header;
this.LogMessage(config.Header);
}
public string GetFullLog()
{
lock (this.lockObject)
{
return this.logBuilder.ToString();
}
}
public List<LogMessage> GetLogMessages()
{
lock (this.lockObject)
{
return new List<LogMessage>(this.logMessages);
}
}
public List<LogMessage> GetLogMessagesFromIndex(int index)
{
List<LogMessage> log = new List<LogMessage>();
lock (this.lockObject)
{
// Note messageIndex is not 0 based.
for (int i = index; i < this.messageIndex; i++)
{
log.Add(this.logMessages[i]);
}
}
return log;
}
public long GetLatestLogIndex()
{
lock (this.lockObject)
{
return this.messageIndex;
}
}
public async void Reset()
{
//if (this.isRemotePollingEnabled)
//{
// try
// {
// await this.MakeHttpGetRequest("ResetLogging");
// }
// catch (Exception e)
// {
// if (this.remoteLogPollTimer != null)
// {
// this.remoteLogPollTimer.Stop();
// }
// }
//}
lock (this.lockObject)
{
this.logMessages.Clear();
this.logBuilder.Clear();
this.messageIndex = 0;
try
{
lock (this.fileWriterLock)
{
if (this.fileWriter != null)
{
this.fileWriter.Flush();
this.fileWriter.Close();
this.fileWriter.Dispose();
}
this.fileWriter = null;
}
}
catch (Exception exc)
{
Debug.WriteLine(exc);
}
if (this.fileWriter == null)
{
this.isDiskLoggingEnabled = false;
this.EnableLoggingToDisk(this.diskLogPath, this.deleteLogFirst);
}
if (!string.IsNullOrEmpty(this.logHeader))
{
this.SetupLogHeader(this.logHeader);
}
this.OnLogReset();
}
}
protected virtual void OnMessageLogged(LogMessage msg)
{
var onMessageLogged = this.MessageLogged;
if (onMessageLogged != null)
{
onMessageLogged.Invoke(this, new LogEventArgs(msg));
}
}
protected void ShutdownFileWriter()
{
try
{
lock (this.fileWriterLock)
{
if (this.fileWriter != null)
{
this.fileWriter.Flush();
this.fileWriter.Close();
this.fileWriter.Dispose();
}
this.fileWriter = null;
}
}
catch (Exception exc)
{
Debug.WriteLine(exc); // This exception doesn't warrant user interaction, but it should be logged
}
}
protected virtual void OnLogReset()
{
this.LogReset?.Invoke(this, System.EventArgs.Empty);
}
private void EnableLoggingToDisk(string logFile, bool deleteCurrentLogFirst)
{
if (this.isDiskLoggingEnabled)
{
throw new Exception("Disk Logging already enabled!");
}
try
{
if (!Directory.Exists(Path.GetDirectoryName(logFile)))
{
throw new Exception("Log Directory does not exist. This service will not create it for you!");
}
if (deleteCurrentLogFirst && File.Exists(logFile))
{
File.Delete(logFile);
}
this.diskLogPath = logFile;
this.isDiskLoggingEnabled = true;
this.deleteLogFirst = deleteCurrentLogFirst;
lock (this.fileWriterLock)
{
this.fileWriter = new StreamWriter(logFile) { AutoFlush = true };
}
}
catch (Exception exc)
{
this.LogMessage("Failed to Initialise Disk Logging. " + Environment.NewLine + exc);
if (this.fileWriter != null)
{
lock (this.fileWriterLock)
{
this.fileWriter.Flush();
this.fileWriter.Close();
this.fileWriter.Dispose();
}
}
}
}
private void SetupLogHeader(string header)
{
this.logHeader = header;
this.LogMessage(header);
}
private void LogMessageToDisk(LogMessage msg)
{
if (!this.isDiskLoggingEnabled)
{
return;
}
try
{
lock (this.fileWriterLock)
{
if (this.fileWriter != null && this.fileWriter.BaseStream.CanWrite)
{
this.fileWriter.WriteLine(msg.Content);
}
}
}
catch (Exception exc)
{
Debug.WriteLine(exc); // This exception doesn't warrant user interaction, but it should be logged
}
}
private void HandBrakeUtils_ErrorLogged(object sender, MessageLoggedEventArgs e)
{
if (e == null || string.IsNullOrEmpty(e.Message))
{
return;
}
this.LogMessage(e.Message);
}
private void HandBrakeUtils_MessageLogged(object sender, MessageLoggedEventArgs e)
{
if (e == null || string.IsNullOrEmpty(e.Message))
{
return;
}
this.LogMessage(e.Message);
}
private void ActivateRemoteLogPolling()
{
this.remoteLogPollTimer = new Timer();
this.remoteLogPollTimer.Interval = 1000;
this.remoteLogPollTimer.Elapsed += (o, e) =>
{
try
{
this.PollRemoteLog();
}
catch (Exception exc)
{
Debug.WriteLine(exc);
}
};
this.remoteLogPollTimer.Start();
}
private async void PollRemoteLog()
{
ServerResponse response = null;
try
{
int nextIndex = this.remoteIndex + 1;
string json = JsonConvert.SerializeObject(nextIndex, Formatting.Indented, this.jsonNetSettings);
response = await this.MakeHttpJsonPostRequest("GetLogMessagesFromIndex", json);
}
catch (Exception e)
{
Debug.WriteLine("No Endpoint");
}
if (response == null || !response.WasSuccessful)
{
return;
}
string statusJson = response.JsonResponse;
List<LogMessage> messages = null;
if (!string.IsNullOrEmpty(statusJson))
{
messages = JsonConvert.DeserializeObject<List<LogMessage>>(statusJson, this.jsonNetSettings);
}
if (messages != null)
{
foreach (var item in messages)
{
this.LogMessage(item.Content);
this.remoteIndex = item.MessageIndex;
}
}
}
}
}
|