-
Notifications
You must be signed in to change notification settings - Fork 12
/
EventLog.cs
306 lines (262 loc) · 10.1 KB
/
EventLog.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Data;
using MySql.Data;
using MySql.Data.MySqlClient;
namespace CentralMine.NET
{
class EventLog
{
public enum EventType
{
Server,
Network,
Upstream,
HashWork,
};
struct EventInfo
{
public DateTime mTime;
public EventType mType;
public string mEventData;
};
struct ClientWork
{
public DateTime mTime;
public string mMemberName;
public string mProductName;
public uint mHashes;
};
struct Product
{
public uint mMember;
public uint mProduct;
public ulong mHashes;
};
List<EventInfo> mEventQueue;
Mutex mEventQueueLock;
DateTime mIntervalStart;
List<ClientWork> mClientWorkQueue;
Mutex mClientWorkQueueLock;
Thread mUpdateThread;
MySqlConnection mSql = null;
Dictionary<string, uint> mMemberIDs;
Dictionary<string, uint> mProductIDs;
public EventLog()
{
mMemberIDs = new Dictionary<string, uint>();
mProductIDs = new Dictionary<string, uint>();
mEventQueue = new List<EventInfo>();
mClientWorkQueue = new List<ClientWork>();
mIntervalStart = DateTime.Now;
ConnectToDB();
mEventQueueLock = new Mutex();
mClientWorkQueueLock = new Mutex();
mUpdateThread = new Thread(new ThreadStart(Update));
mUpdateThread.Start();
}
public void Close()
{
// Kill the update thread
mUpdateThread.Abort();
}
public void RecordEvent(EventType type, string evt)
{
EventInfo info = new EventInfo();
info.mTime = DateTime.Now;
info.mType = type;
if (evt.Length < 256)
info.mEventData = evt;
else
info.mEventData = evt.Substring(0, 255);
mEventQueueLock.WaitOne();
mEventQueue.Add(info);
mEventQueueLock.ReleaseMutex();
}
public void RecordClientWork(Client c)
{
ClientWork w = new ClientWork();
w.mTime = DateTime.UtcNow;
w.mMemberName = c.mAgent;
w.mProductName = c.mLocation;
w.mHashes = c.mHashesDone;
if (w.mMemberName == null || w.mMemberName.Length <= 0)
w.mMemberName = "unknown";
if (w.mProductName == null || w.mProductName.Length <= 0)
w.mProductName = "unknown";
mClientWorkQueueLock.WaitOne();
mClientWorkQueue.Add(w);
mClientWorkQueueLock.ReleaseMutex();
}
void ConnectToDB()
{
if (mSql != null)
mSql.Close();
string connStr = "server=localhost;user=root;database=minerdata;port=3306;password=password;";
mSql = new MySqlConnection(connStr);
try
{
mSql.Open();
MySqlCommand cmd = new MySqlCommand("SELECT * FROM members", mSql);
MySqlDataReader r = cmd.ExecuteReader();
while (r.Read())
{
string memberName = (string)r[1];
uint id = (uint)r[0];
mMemberIDs[memberName] = id;
}
r.Close();
cmd = new MySqlCommand("SELECT * FROM products", mSql);
r = cmd.ExecuteReader();
while (r.Read())
{
string productName = (string)r[1];
uint id = (uint)r[0];
mProductIDs[productName] = id;
}
r.Close();
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
mSql = null;
}
}
uint GetMemberId(string memberName)
{
if (memberName.Length > 64)
memberName = memberName.Substring(0, 64);
if (!mMemberIDs.ContainsKey(memberName))
{
string sql = "INSERT INTO members (member_name) VALUES ('" + memberName + "')";
try
{
MySqlCommand cmd = new MySqlCommand(sql, mSql);
cmd.ExecuteNonQuery();
// Now querry the database for the index
sql = "SELECT * FROM members WHERE member_name='" + memberName + "'";
cmd = new MySqlCommand(sql, mSql);
MySqlDataReader r = cmd.ExecuteReader();
r.Read();
uint ID = (uint)r[0];
r.Close();
mMemberIDs[memberName] = ID;
}
catch (Exception ex)
{
Email.SendErrorEmail(sql + "\n\n" + ex.ToString());
}
}
return mMemberIDs[memberName];
}
uint GetProductId(string product, uint memberId)
{
if (product.Length > 128)
product = product.Substring(0, 128);
if (!mProductIDs.ContainsKey(product))
{
string sql = "INSERT INTO products (product_name, member) VALUES ('" + product + "', '" + memberId + "')";
try
{
MySqlCommand cmd = new MySqlCommand(sql, mSql);
cmd.ExecuteNonQuery();
// Now querry the database for the index
sql = "SELECT * FROM products WHERE product_name='" + product + "'";
cmd = new MySqlCommand(sql, mSql);
MySqlDataReader r = cmd.ExecuteReader();
r.Read();
uint ID = (uint)r[0];
r.Close();
mProductIDs[product] = ID;
}
catch (Exception ex)
{
Email.SendErrorEmail(sql + "\n\n" + ex.ToString());
}
}
return mProductIDs[product];
}
void Update()
{
while (true)
{
DateTime start = DateTime.Now;
// Copy the events list locally
mEventQueueLock.WaitOne();
List<EventInfo> events = mEventQueue;
mEventQueue = new List<EventInfo>();
mEventQueueLock.ReleaseMutex();
// Send data to database
string sql = "";
try
{
foreach (EventInfo e in events)
{
sql = string.Format("INSERT INTO events (timestamp, type, event) VALUES ('{0}', '{1}', '{2}')", e.mTime.ToString("yyyy-MM-dd HH:mm:ss"), (int)e.mType, e.mEventData);
MySqlCommand cmd = new MySqlCommand(sql, mSql);
cmd.ExecuteNonQuery();
}
}
catch (Exception ex)
{
Email.SendErrorEmail(sql + "\n\n" + ex.ToString());
}
// Copy the client work list
mClientWorkQueueLock.WaitOne();
List<ClientWork> cw = mClientWorkQueue;
mClientWorkQueue = new List<ClientWork>();
TimeSpan interval = DateTime.Now - mIntervalStart;
mIntervalStart = DateTime.Now;
mClientWorkQueueLock.ReleaseMutex();
try
{
// Collect information into products
Dictionary<string, Product> products = new Dictionary<string, Product>();
foreach (ClientWork w in cw)
{
if (!products.ContainsKey(w.mProductName))
{
// Add this product
Product p = new Product();
p.mMember = GetMemberId(w.mMemberName);
p.mProduct = GetProductId(w.mProductName, p.mMember);
p.mHashes = 0;
products[w.mProductName] = p;
}
Product prod = products[w.mProductName];
prod.mHashes += w.mHashes;
products[w.mProductName] = prod;
}
// Write entries into the database for each prodcut
string timeString = DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss");
foreach (KeyValuePair<string, Product> kv in products)
{
ulong hashrate = (ulong)(kv.Value.mHashes / interval.TotalSeconds);
sql = string.Format("INSERT INTO workdata (member_id, product_id, hashrate, timestamp) VALUES ('{0}', '{1}', '{2}', '{3}')", kv.Value.mMember, kv.Value.mProduct, hashrate, timeString);
MySqlCommand cmd = new MySqlCommand(sql, mSql);
cmd.ExecuteNonQuery();
}
}
catch (Exception ex)
{
Email.SendErrorEmail(sql + "\n\n" + ex.ToString());
}
TimeSpan duration = DateTime.Now - start;
double secondsRemaining = 60 - duration.TotalSeconds;
if (secondsRemaining < 0)
{
Console.WriteLine("Log thread took {0} seconds, yeilding and going again", (int)duration.TotalSeconds);
Thread.Sleep(10);
}
else
{
Console.WriteLine("Log Thread sleeping for {0} seconds", (int)secondsRemaining);
Thread.Sleep((int)secondsRemaining * 1000);
}
}
}
}
}