-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDispatcher.cs
290 lines (266 loc) · 6.97 KB
/
Dispatcher.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
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
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows;
using EdGo.EdgoClient;
using EddiCompanionAppService;
namespace EdGo
{
class AppDispatcher
{
/*
* Tasks
*/
private Thread resetProcessor;
private Thread lastFileProcessor;
private Thread scanDirectoryProcessor;
private Thread readFileProcessor;
public static AppDispatcher instance { get; } = new AppDispatcher();
private ClientWindow settingsClient = null;
public MainWindow mWin { get; set; } = null;
//public ClientWindow cWin { get; set; } = null;
public Companian cWin { get; set; } = null;
private Client client = Client.instance;
private bool started { get; set; } = false;
private FileProcessor fileProc = new FileProcessor();
private TextLogger logger = TextLogger.instance;
private IDictionary<String, bool> pilotNames = new Dictionary<String, bool>();
public CompanionAppService companionService { get; } = CompanionAppService.Instance;
public AppDispatcher()
{
fileProc.load();
}
public void saveProperties()
{
Properties.Settings.Default.Save();
}
protected void setPilotNames(String names)
{
if (names.Trim().Length > 0)
{
Regex reg = new Regex("\\|\\|\\|\\|\\|", RegexOptions.IgnoreCase | RegexOptions.Compiled);
//Console.WriteLine(names);
String[] namesArr = reg.Split(names);
//Console.WriteLine(namesArr.Length);
//pilotNames = new Dictionary<String, bool>();
foreach (String name in namesArr)
{
pilotNames[name.ToLower()] = false;
}
}
}
public void newPilotDialog(String name)
{
//killAllTasks();
if (mWin.showNewPilotDialog(name))
{
pilotNames[name.ToLower()] = true;
}
else
{
pilotNames[name.ToLower()] = false;
}
//started = true;
//process();
}
public int isNewPilot(String name)
{
int result = -1;
if (!pilotNames.ContainsKey(name.ToLower()))
{
if (pilotNames.Count == 0)
{
pilotNames[name.ToLower()] = false;
}
else
{
newPilotDialog(name);
}
}
result = pilotNames[name.ToLower()] ? 1 : 0;
return result;
}
public void process()
{
if (client.isTested)
{
// Normal process
if (started)
{
logger.log("Process......");
mWin.setStartStopState(false);
//Thread.Sleep(500);
logger.log("Load last Info");
IDictionary<string, string> startInfo = client.getLastInfo();
if (startInfo == null)
{
logger.log("Error cnnectiong to Server!!!!");
mWin.showStartButton();
started = false;
}
else
{
fileProc.setEventsArray(startInfo["events"]);
if (startInfo.ContainsKey("timestamp"))
{
//setPilotNames(startInfo["used_names"]);
fileProc.setReset(startInfo["timestamp"], startInfo["event_name"], startInfo["event_hash"]);
} else
{
fileProc.setReset();
}
resetProcessor = new Thread(new ThreadStart(fileProc.resetTo));
resetProcessor.Start();
}
}
mWin.setStartStopState(true);
} else
{
mWin.setStartStopState(false);
}
}
public void pressStart()
{
started = !started;
if (started)
{
mWin.trayIcon.Icon = Properties.Resources.started;
mWin.showStopButton();
process();
}
else
{
mWin.trayIcon.Icon = Properties.Resources.stoped;
killAllTasks();
mWin.showStartButton();
}
}
public void showClientSettings()
{
if (settingsClient == null)
{
settingsClient = new ClientWindow();
}
settingsClient.ShowDialog();
}
public void hideClientSettings()
{
if (client.isTested)
{
started = false;
mWin.setStartStopState(false);
}
process();
}
// processes
public void endResetProcess()
{
saveProperties();
logger.log("Finish reset");
logger.log("Start read to last");
lastFileProcessor = new Thread(new ThreadStart(fileProc.processToLast));
lastFileProcessor.Start();
}
public void endReadToLastProcess()
{
saveProperties();
logger.log("Finish read to last process");
logger.log("Start scan new events");
scanDirectoryProcessor = new Thread(new ThreadStart(fileProc.directoryRead));
readFileProcessor = new Thread(new ThreadStart(fileProc.processCurrentFile));
scanDirectoryProcessor.Start();
readFileProcessor.Start();
}
public void responceError()
{
logger.log("ERROR IN REQUEST");
logger.log("COMMAND: ");
logger.log(client.lastCommand);
logger.log("RESPONCE: ");
logger.log(client.lastResponce);
killAllTasks();
}
public void killAllTasks()
{
if (resetProcessor != null && resetProcessor.IsAlive)
{
resetProcessor.Interrupt();
}
if (lastFileProcessor != null && lastFileProcessor.IsAlive)
{
lastFileProcessor.Interrupt();
}
if (scanDirectoryProcessor != null && scanDirectoryProcessor.IsAlive)
{
scanDirectoryProcessor.Interrupt();
}
if (readFileProcessor != null && readFileProcessor.IsAlive)
{
readFileProcessor.Interrupt();
}
}
/*
* Companian
*/
public void showCompanionWindow()
{
if (cWin == null)
{
cWin = new Companian();
}
cWin.setState(companionService.CurrentState);
cWin.ShowDialog();
}
public void companionNext()
{
switch (companionService.CurrentState)
{
case CompanionAppService.State.NEEDS_LOGIN:
cWin.disableAll();
try
{
companionService.Login();
companionService.Credentials.Save();
}
catch (Exception e)
{
MessageBox.Show(e.Message, "Companion API", MessageBoxButton.OK);
}
cWin.setState(companionService.CurrentState);
break;
case CompanionAppService.State.NEEDS_CONFIRMATION:
cWin.disableAll();
try
{
companionService.Confirm();
companionService.Credentials.Save();
}
catch (Exception e)
{
MessageBox.Show(e.Message, "Companion API", MessageBoxButton.OK);
}
cWin.setState(companionService.CurrentState);
break;
case CompanionAppService.State.READY:
cWin.disableAll();
companionService.Profile();
sendCompanianInfo();
cWin.setState(companionService.CurrentState);
cWin.Hide();
break;
default:
cWin.setState(companionService.CurrentState);
break;
}
}
public void sendCompanianInfo()
{
if (companionService.CurrentState == CompanionAppService.State.READY && !string.IsNullOrEmpty(companionService.Content))
{
string data = "{ \"timestamp\":\"2001-01-01T00:00:00Z\", \"event\":\"CompanionApi\", \"CompanionData\": " + companionService.Content + " }";
client.sendEvent(data);
}
}
}
}