-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathHBRelogManager.cs
172 lines (154 loc) · 6.12 KB
/
HBRelogManager.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
/*
Copyright 2012 HighVoltz
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
using System;
using System.Diagnostics;
using System.Threading;
using HighVoltz.HBRelog.Remoting;
using HighVoltz.HBRelog.Settings;
using System.ServiceModel;
using System.Windows;
using System.ComponentModel;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace HighVoltz.HBRelog
{
internal class HbRelogManager
{
public static GlobalSettings Settings => GlobalSettings.Instance;
static public Thread WorkerThread { get; private set; }
public static bool IsInitialized { get; private set; }
private static Stopwatch _crashCheckTimer = Stopwatch.StartNew();
private static Stopwatch _updateRealmStatusTimer = Stopwatch.StartNew();
static readonly ServiceHost _host;
public static WowRealmStatus WowRealmStatus { get; private set; }
public static string PipeName { get; private set; }
static HbRelogManager()
{
try
{
PipeName = Utility.RandomString(Utility.Rand.Next(8, 16));
// if in designer mode then return
if (MainWindow.Instance == null || DesignerProperties.GetIsInDesignMode(MainWindow.Instance))
return;
WorkerThread = new Thread(DoWork) { IsBackground = true };
WorkerThread.Start();
try
{
_host = new ServiceHost(typeof(RemotingApi), new Uri($"net.pipe://localhost/{PipeName}"));
_host.AddServiceEndpoint(typeof(IRemotingApi),
new NetNamedPipeBinding() { ReceiveTimeout = TimeSpan.MaxValue },
"Server");
_host.Open();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
Log.Err(ex.ToString());
}
WowRealmStatus = new WowRealmStatus();
// update Wow Realm status
if (Settings.CheckRealmStatus)
WowRealmStatus.Update();
IsInitialized = true;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
Log.Err(ex.ToString());
}
}
internal static void DoWork()
{
int pulseStartTime = 0;
while (true)
{
try
{
pulseStartTime = Environment.TickCount;
if (Utility.HasInternetConnection)
{
foreach (var character in Settings.CharacterProfiles)
{
if (character.IsRunning)
character.Pulse();
}
if (_crashCheckTimer.ElapsedMilliseconds >= 5000)
{
KillWoWCrashDialogs();
KillHonorbuddyCrashDialogs();
_crashCheckTimer.Restart();
}
if (Settings.CheckRealmStatus)
{
if (_updateRealmStatusTimer == null)
_updateRealmStatusTimer = Stopwatch.StartNew();
if (_updateRealmStatusTimer.ElapsedMilliseconds >= 60000)
{
// update Wow Realm status
if (Settings.CheckRealmStatus)
WowRealmStatus.Update();
_updateRealmStatusTimer.Restart();
}
}
}
}
catch (Exception ex)
{
Log.Err(ex.ToString());
}
finally
{
// sleep for 1000 millisec minus time it took to execute
int sleepTime = 1000 - (Environment.TickCount - pulseStartTime);
if (sleepTime > 0)
Thread.Sleep(sleepTime);
}
}
}
public static void Shutdown()
{
if (_host.State == CommunicationState.Opened || _host.State == CommunicationState.Opening)
{
_host.Close();
_host.Abort();
}
}
private static void KillHonorbuddyCrashDialogs()
{
var processes =
Process.GetProcessesByName("WerFault")
.Where(p => p.MainWindowTitle == "Honorbuddy")
.ToList();
// check for wow error windows
foreach (var process in processes)
{
process.Kill();
Log.Write("Killing crashed Honorbuddy process");
}
}
private static void KillWoWCrashDialogs()
{
var processes = Process.GetProcessesByName("BlizzardError")
.Concat(Process.GetProcessesByName("WerFault")
.Where(p => p.MainWindowTitle == "World of Warcraft"));
// check for wow error windows
foreach (var process in processes)
{
process.Kill();
Log.Write("Killing crashed WoW process");
process.Dispose();
}
}
}
}