forked from Dawn-of-Light/PacketLogConverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LogManager.cs
292 lines (256 loc) · 7.12 KB
/
LogManager.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using PacketLogConverter.Utils;
namespace PacketLogConverter
{
public delegate void LogManagerUpdate(LogManager logManager);
/// <summary>
/// This class manages packet logs.
/// </summary>
public sealed class LogManager
{
public event LogManagerUpdate OnPacketLogsChanged;
private IList<PacketLog> m_logs = new List<PacketLog>(0).AsReadOnly();
private readonly PacketTextLocationManager m_packetTextLocations = new PacketTextLocationManager();
/// <summary>
/// Gets the logs.
/// </summary>
/// <value>The logs.</value>
public IList<PacketLog> Logs
{
get { return m_logs; }
}
/// <summary>
/// Adds the log.
/// </summary>
/// <param name="packetLog">The packet log.</param>
public void AddLog(PacketLog packetLog)
{
// Update logs list
List<PacketLog> logs = new List<PacketLog>(m_logs);
logs.Add(packetLog);
m_logs = logs.AsReadOnly();
// Fire event
FirePacketLogsChangedEvent();
// Add packets change event handler
packetLog.OnPacketsChanged += packetLog_OnPacketsChanged;
}
/// <summary>
/// Adds the log range.
/// </summary>
/// <param name="packetLogs">The packet logs.</param>
public void AddLogRange(ICollection<PacketLog> packetLogs)
{
// Update logs list
List<PacketLog> logs = new List<PacketLog>(m_logs);
logs.AddRange(packetLogs);
m_logs = logs.AsReadOnly();
// Fire event
FirePacketLogsChangedEvent();
// Add packets change event handler
foreach (PacketLog log in packetLogs)
{
log.OnPacketsChanged += packetLog_OnPacketsChanged;
}
}
/// <summary>
/// Gets the packet log.
/// </summary>
/// <param name="logIndex">Index of the log.</param>
/// <returns>Packet log if it exists, <c>null</c> otherwise.</returns>
public PacketLog GetPacketLog(int logIndex)
{
PacketLog log = null;
if (0 <= logIndex && m_logs.Count > logIndex)
{
log = m_logs[logIndex];
}
return log;
}
/// <summary>
/// Fires the packet logs changed event.
/// </summary>
private void FirePacketLogsChangedEvent()
{
OnPacketsCountChange();
LogManagerUpdate evnt = OnPacketLogsChanged;
if (evnt != null)
{
evnt(this);
}
}
/// <summary>
/// Gets the stream names of all opened logs.
/// </summary>
/// <value>The stream names.</value>
public string GetStreamNames()
{
StringBuilder ret = new StringBuilder(m_logs.Count * 32);
foreach (PacketLog log in m_logs)
{
if (ret.Length > 0)
{
ret.Append("; ");
}
ret.Append(log.StreamName);
}
return ret.ToString();
}
/// <summary>
/// Initializes all the logs.
/// </summary>
/// <param name="depth">The depth.</param>
/// <param name="callback">The callback.</param>
public void InitLogs(int depth, ProgressCallback callback)
{
foreach (PacketLog log in m_logs)
{
// Init only dirty logs
if (log.IsDirty)
{
log.Init(this, depth, callback);
log.IsDirty = false;
}
}
}
/// <summary>
/// Clears the logs.
/// </summary>
public void ClearLogs()
{
// Remove event handlers from logs
foreach (PacketLog log in m_logs)
{
log.OnPacketsChanged -= packetLog_OnPacketsChanged;
}
m_logs = new List<PacketLog>(0).AsReadOnly();
FirePacketLogsChangedEvent();
}
/// <summary>
/// Clears the log.
/// </summary>
/// <param name="packetLogs">The packet logs.</param>
public void ClearLogRange(ICollection<PacketLog> packetLogs)
{
List<PacketLog> logs = new List<PacketLog>(m_logs);
foreach (PacketLog log in packetLogs)
{
log.OnPacketsChanged -= packetLog_OnPacketsChanged;
logs.Remove(log);
}
m_logs = logs.AsReadOnly();
FirePacketLogsChangedEvent();
}
/// <summary>
/// Clears the log.
/// </summary>
/// <param name="packetLog">The packet log.</param>
public void ClearLog(PacketLog packetLog)
{
List<PacketLog> logs = new List<PacketLog>(m_logs);
packetLog.OnPacketsChanged -= packetLog_OnPacketsChanged;
logs.Remove(packetLog);
m_logs = logs.AsReadOnly();
FirePacketLogsChangedEvent();
}
/// <summary>
/// Counts the packets.
/// </summary>
/// <returns>Count of all packets in onpen logs.</returns>
public int CountPackets()
{
int ret = 0;
foreach (PacketLog log in m_logs)
{
ret += log.Count;
}
return ret;
}
/// <summary>
/// Counts the unknown packets.
/// </summary>
/// <returns>Count of all unknown packets in onpen logs.</returns>
public int CountUnknownPackets()
{
int ret = 0;
foreach (PacketLog log in m_logs)
{
ret += log.UnknownPacketsCount;
}
return ret;
}
/// <summary>
/// Gets the packet.
/// </summary>
/// <param name="packetLocation">The packet location.</param>
/// <returns>Instance of found packet, <c>null</c> otherwise.</returns>
public Packet GetPacket(PacketLocation packetLocation)
{
Packet ret = null;
if (packetLocation.LogIndex >= 0 && m_logs.Count > packetLocation.LogIndex)
{
PacketLog log = m_logs[packetLocation.LogIndex];
if (packetLocation.PacketIndex >= 0 && log.Count > packetLocation.PacketIndex)
{
ret = log[packetLocation.PacketIndex];
}
}
return ret;
}
#region PacketTextLocation
/// <summary>
/// Packets the log_ on packets changed.
/// </summary>
/// <param name="logManager">The log manager.</param>
void packetLog_OnPacketsChanged(PacketLog logManager)
{
OnPacketsCountChange();
}
/// <summary>
/// Called when count of packets changes.
/// </summary>
private void OnPacketsCountChange()
{
int newPacketsCount = CountPackets();
m_packetTextLocations.Capacity = newPacketsCount;
}
/// <summary>
/// Sets the visible packets count.
/// </summary>
/// <param name="newCount">The new count.</param>
public void SetVisiblePacketsCount(int newCount)
{
m_packetTextLocations.VisiblePacketsCount = newCount;
}
/// <summary>
/// Sets the visible packet.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="packetInfo">The packet info.</param>
public void SetVisiblePacket(int index, PacketInfo packetInfo)
{
m_packetTextLocations.SetVisiblePacket(index, packetInfo);
}
/// <summary>
/// Finds the text index by packet.
/// </summary>
/// <param name="packet">The packet.</param>
/// <returns></returns>
public int FindTextIndexByPacket(Packet packet)
{
return m_packetTextLocations.FindTextIndexByPacket(packet);
}
/// <summary>
/// Finds the index of the packet by text.
/// </summary>
/// <param name="textIndex">Index of the text.</param>
/// <returns>Found <see cref="PacketInfo"/> or <see cref="PacketInfo.UNKNOWN"/>.</returns>
public PacketInfo FindPacketInfoByTextIndex(int textIndex)
{
return m_packetTextLocations.FindPacketInfoByTextIndex(textIndex);
}
#endregion
}
}