aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Technician/ViewModels/LoggingViewVM.cs
blob: 2aee7f5612b8849cdd03aab4168b140b765f29a7 (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
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
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.Integration.Logging;
using Tango.Integration.Operation;
using Tango.Logging;
using Tango.PPC.Common;
using Tango.PPC.Common.Helpers;
using Tango.PPC.Technician.Dialogs;

namespace Tango.PPC.Technician.ViewModels
{
    public class LoggingViewVM : PPCViewModel
    {
        private const int MAX_LOGS = 1000;

        private List<LogItemBase> paused_logs;
        private List<LogItemBase> paused_embedded_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 ICollectionView _embeddedLogsViewSource;
        public ICollectionView EmbeddedLogsViewSource
        {
            get { return _embeddedLogsViewSource; }
            set { _embeddedLogsViewSource = value; RaisePropertyChangedAuto(); }
        }

        private LogItemBase _selectedLog;
        public LogItemBase SelectedLog
        {
            get { return _selectedLog; }
            set { _selectedLog = value; RaisePropertyChangedAuto(); OnSelectedLogChanged(); }
        }

        private String _filter;
        public String Filter
        {
            get { return _filter; }
            set
            {
                _filter = value;
                RaisePropertyChangedAuto();
                ApplicationLogsViewSource.Refresh();
                EmbeddedLogsViewSource.Refresh();
            }
        }

        private bool _isPaused;
        public bool IsPaused
        {
            get { return _isPaused; }
            set { _isPaused = value; RaisePropertyChangedAuto(); OnIsPausedChanged(); }
        }

        private bool _processDebugLogs;
        public bool ProcessDebugLogs
        {
            get { return _processDebugLogs; }
            set { _processDebugLogs = value; RaisePropertyChangedAuto(); OnProcessDebugLogsChanged(); }
        }

        public RelayCommand ClearCommand { get; set; }

        public LoggingViewVM()
        {
            ApplicationLogs = new SynchronizedObservableCollection<LogItemBase>();
            EmbeddedLogs = new SynchronizedObservableCollection<LogItemBase>();
            ApplicationLogsViewSource = CollectionViewSource.GetDefaultView(ApplicationLogs);
            EmbeddedLogsViewSource = CollectionViewSource.GetDefaultView(EmbeddedLogs);
            paused_logs = new List<LogItemBase>();
            paused_embedded_logs = new List<LogItemBase>();

            var appStartLogs = LogsHelper.GetLogSafe().EmptyAndDispose();

            foreach (var log in appStartLogs)
            {
                ApplicationLogs.Insert(0, log);
            }

            LogManager.NewLog += LogManager_NewLog;
            MachineOperator.EmbeddedLogManager.NewLog += EmbeddedLogManager_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;
                }
            };

            EmbeddedLogsViewSource.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 OnProcessDebugLogsChanged()
        {
            if (ProcessDebugLogs)
            {
                LogManager.Categories.Add(LogCategory.Debug);
            }
            else
            {
                LogManager.Categories.RemoveAll(x => x == LogCategory.Debug);
            }
        }

        private void OnIsPausedChanged()
        {
            foreach (var log in paused_logs)
            {
                LogManager_NewLog(this, log);
            }

            paused_logs.Clear();


            foreach (var log in paused_embedded_logs)
            {
                EmbeddedLogManager_NewLog(this, log);
            }

            paused_embedded_logs.Clear();
        }

        private void LogManager_NewLog(object sender, LogItemBase log)
        {
            if (!IsPaused)
            {
                InvokeUI(() =>
                {
                    ApplicationLogs.Insert(0, log);

                    try
                    {
                        if (ApplicationLogs.Count > MAX_LOGS)
                        {
                            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 EmbeddedLogManager_NewLog(object sender, LogItemBase log)
        {
            if (!IsPaused)
            {
                InvokeUI(() =>
                {
                    EmbeddedLogs.Insert(0, log);

                    try
                    {
                        if (EmbeddedLogs.Count > MAX_LOGS)
                        {
                            EmbeddedLogs.Remove(EmbeddedLogs.Last());
                        }
                    }
                    catch
                    {
                        //I don't know if this will cause an exception but I'm tired.
                    }
                });
            }
            else
            {
                paused_embedded_logs.Add(log);
            }
        }

        private void ClearLogs()
        {
            ApplicationLogs.Clear();
            EmbeddedLogs.Clear();
            paused_logs.Clear();
            paused_embedded_logs.Clear();
        }

        private async void OnSelectedLogChanged()
        {
            if (SelectedLog != null)
            {
                if (SelectedLog.GetType() == typeof(EmbeddedLogItem))
                {
                    await NotificationProvider.ShowDialog<EmbeddedLogItemDetailsViewVM>(new EmbeddedLogItemDetailsViewVM()
                    {
                        Log = SelectedLog as EmbeddedLogItem,
                    });
                }
                else
                {
                    await NotificationProvider.ShowDialog<LogItemDetailsViewVM>(new LogItemDetailsViewVM()
                    {
                        Log = SelectedLog,
                    });
                }
            }
        }

        public override void OnApplicationStarted()
        {

        }
    }
}