aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ApplicationLogViewerParser.cs50
-rw-r--r--Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/EmbeddedLogViewerParser.cs55
-rw-r--r--Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ILogViewerParser.cs14
3 files changed, 119 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ApplicationLogViewerParser.cs b/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ApplicationLogViewerParser.cs
new file mode 100644
index 000000000..93d856b2e
--- /dev/null
+++ b/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ApplicationLogViewerParser.cs
@@ -0,0 +1,50 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Logging;
+using System.Text.RegularExpressions;
+using System.IO;
+using System.Globalization;
+
+namespace Tango.LogViewer.UI.LogViewerFileParser
+{
+ public class ApplicationLogViewerParser : ILogViewerParser
+ {
+ public ApplicationLogViewerParser()
+ {
+
+ }
+ public void Parse(string file, DateTime datetime, ref List<LogItemBase> logItems)
+ {
+ String text = File.ReadAllText(file);
+ var logs = Regex.Split(text, @"(\[\d{2}:\d{2}:\d{2}.\d{2}\])");
+
+ for (int i = 1; i < logs.Length; i += 2)
+ {
+ try
+ {
+ DateTime date = DateTime.ParseExact(logs[i].Replace("[", "").Replace("]", ""), "HH:mm:ss.ff", CultureInfo.InvariantCulture);
+ String rest = logs[i + 1];
+
+ var entries = Regex.Split(rest, @"\[(.*?)\]");
+
+ MessageLogItem item = new MessageLogItem();
+ item.TimeStamp = new DateTime(datetime.Year, datetime.Month, datetime.Day, date.Hour, date.Minute, date.Second, date.Millisecond);
+ item.Category = (LogCategory)Enum.Parse(typeof(LogCategory), entries[1]);
+ item.CallerFile = entries[3];
+ item.CallerMethodName = entries[5];
+ item.CallerLineNumber = int.Parse(entries[7]);
+ item.Message = new String(entries[8].Skip(2).ToArray());
+
+ logItems.Add(item);
+ }
+ catch (Exception ex)
+ {
+ //LogManager.Default.Log(ex, "Could not parse log line: " + logs[i]);
+ }
+ }
+ }
+ }
+}
diff --git a/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/EmbeddedLogViewerParser.cs b/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/EmbeddedLogViewerParser.cs
new file mode 100644
index 000000000..1d0028f10
--- /dev/null
+++ b/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/EmbeddedLogViewerParser.cs
@@ -0,0 +1,55 @@
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+using Tango.Integration.Logging;
+using Tango.Logging;
+
+namespace Tango.LogViewer.UI.LogViewerFileParser
+{
+ public class EmbeddedLogViewerParser : ILogViewerParser
+ {
+ public EmbeddedLogViewerParser()
+ {
+
+
+ }
+ public void Parse(string file, DateTime datetime, ref List<LogItemBase> logItems)
+ {
+ String text = File.ReadAllText(file);
+ var logs = Regex.Split(text, @"(\[\d{2}:\d{2}:\d{2}.\d{2}\])");
+
+ for (int i = 1; i < logs.Length; i += 2)
+ {
+ try
+ {
+ DateTime date = DateTime.ParseExact(logs[i].Replace("[", "").Replace("]", ""), "HH:mm:ss.ff", CultureInfo.InvariantCulture);
+ String rest = logs[i + 1];
+
+ var entries = Regex.Split(rest, @"\[(.*?)\]");
+
+ LogItemBase item = new EmbeddedLogItem(new PMR.Debugging.StartDebugLogResponse()
+ {
+ Category = (PMR.Debugging.DebugLogCategory)Enum.Parse(typeof(PMR.Debugging.DebugLogCategory), entries[1]),
+ FileName = entries[3],
+ LineNumber = uint.Parse(entries[5]),
+ ModuleId = uint.Parse(entries[7]),
+ Filter = uint.Parse(entries[9]),
+ Message = new String(entries[10].Skip(2).ToArray())
+ });
+ item.TimeStamp = new DateTime(datetime.Year, datetime.Month, datetime.Day, date.Hour, date.Minute, date.Second, date.Millisecond);
+
+ logItems.Add(item);
+ }
+ catch (Exception ex)
+ {
+ //LogManager.Default.Log(ex, "Could not parse log line: " + logs[i]);
+ }
+ }
+ }
+ }
+}
diff --git a/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ILogViewerParser.cs b/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ILogViewerParser.cs
new file mode 100644
index 000000000..a0088a770
--- /dev/null
+++ b/Software/Visual_Studio/Utilities/Tango.LogViewer.UI/LogViewerFileParser/ILogViewerParser.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Logging;
+
+namespace Tango.LogViewer.UI.LogViewerFileParser
+{
+ public interface ILogViewerParser
+ {
+ void Parse(string file, DateTime datetime, ref List<LogItemBase> logItems);
+ }
+}