blob: 643d6ab553f1e4816a507af015c2f9e1819877e7 (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;
using Tango.Core;
using Tango.Core.Commands;
using Tango.Logging;
using Tango.PPC.Common;
namespace Tango.PPC.Technician.ViewModels
{
public class LoggingViewVM : PPCViewModel
{
private List<LogItemBase> paused_logs;
public SynchronizedObservableCollection<LogItemBase> ApplicationLogs { get; set; }
public SynchronizedObservableCollection<LogItemBase> EmbeddedLogs { get; set; }
private ICollectionView _applicationLogsViewSource;
public ICollectionView ApplicationLogsViewSource
{
get { return _applicationLogsViewSource; }
set { _applicationLogsViewSource = value; RaisePropertyChangedAuto(); }
}
private String _filter;
public String Filter
{
get { return _filter; }
set
{
_filter = value;
RaisePropertyChangedAuto();
ApplicationLogsViewSource.Refresh();
}
}
private bool _isPaused;
public bool IsPaused
{
get { return _isPaused; }
set { _isPaused = value; RaisePropertyChangedAuto(); OnIsPausedChanged(); }
}
public RelayCommand ClearCommand { get; set; }
public LoggingViewVM()
{
ApplicationLogs = new SynchronizedObservableCollection<LogItemBase>();
EmbeddedLogs = new SynchronizedObservableCollection<LogItemBase>();
ApplicationLogsViewSource = CollectionViewSource.GetDefaultView(ApplicationLogs);
paused_logs = new List<LogItemBase>();
LogManager.NewLog += LogManager_NewLog;
ClearCommand = new RelayCommand(ClearLogs);
Filter = "error";
ApplicationLogsViewSource.Filter = (x) =>
{
try
{
LogItemBase log = x as LogItemBase;
return String.IsNullOrWhiteSpace(Filter) || log.Category.ToString().ToLower().Contains(Filter.ToLower()) || log.Message.ToLower().Contains(Filter.ToLower());
}
catch
{
return false;
}
};
}
private void OnIsPausedChanged()
{
foreach (var log in paused_logs)
{
LogManager_NewLog(this, log);
}
paused_logs.Clear();
}
private void LogManager_NewLog(object sender, LogItemBase log)
{
if (!IsPaused)
{
ApplicationLogs.Insert(0, log);
try
{
if (ApplicationLogs.Count > 100)
{
ApplicationLogs.Remove(ApplicationLogs.Last());
}
}
catch
{
//I don't know if this will cause an exception but I'm tired.
}
}
else
{
paused_logs.Add(log);
}
}
private void ClearLogs()
{
ApplicationLogs.Clear();
paused_logs.Clear();
}
public override void OnApplicationStarted()
{
}
}
}
|