forked from fwindpeak/ADBConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
443 lines (367 loc) · 13.4 KB
/
Form1.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
using System;
//using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading; //to run commands concurrently
using System.Text.RegularExpressions;
using System.IO;
namespace ADBConsole
{
public partial class Form1 : Form
{
const int MAX_LINES = 5000;
const bool AUTO_SAVE_LOG_FILE = false;
bool bTest;
string m_strCoding;
Thread m_adbListenThread;
Queue adbOutputQueue;
ADBAccess m_ADBAccess;
bool m_bSuspendLogout;
System.IO.StreamWriter m_logFile;
String m_tagFilter;
Boolean m_tagFilterEnabled;
bool m_bCMDQueuing;
int selectedLevel = 0;
//This queue contains ADB commands.
//Reader is for dequeue the request CMD by ADBAccess
//Writer is for enqueue new CMD by this Form1 class.
Queue m_ADBCommandQueue;
Queue m_ADBCommandQueueReader;
Queue m_ADBCommandQueueWriter;
private void StartADBThread()
{
m_adbListenThread = new Thread(new ThreadStart(StartListen));
m_adbListenThread.Start();
}
public Form1()
{
InitializeComponent();
m_bCMDQueuing = false;
m_adbListenThread = null;
bTest = true;
m_tagFilter = "";
m_tagFilterEnabled = false;
String FILE_NAME = "AdbMessage";
int suffix = 1;
String fileName = @".\" + FILE_NAME + ".log";
cmbLevel.SelectedIndex = 0;
cmbCode.SelectedIndex = 0;
//fileLocationMsg.Text = @"The log file is saved at : " + fileName;
if (AUTO_SAVE_LOG_FILE == true)
{
while (System.IO.File.Exists(fileName))
{
fileName = @".\" + FILE_NAME + suffix.ToString() + ".log";
++suffix;
}
m_logFile = new System.IO.StreamWriter(fileName);
}
m_ADBCommandQueue = new Queue();
m_ADBCommandQueueReader = Queue.Synchronized(m_ADBCommandQueue);
m_ADBCommandQueueWriter = Queue.Synchronized(m_ADBCommandQueue);
m_ADBAccess = new ADBAccess();
m_ADBAccess.WinOutputQueueReader = m_ADBCommandQueueReader;
}
private void StartListen()
{
adbOutputQueue = new Queue(1000,2);
while (true)
{
try
{
if (!m_ADBAccess.isCMDOutputQueueEmpty())
{
adbOutputQueue.Enqueue(m_ADBAccess.CMDOutputDequeue() + "\r\n");
}
Application.DoEvents();
if (0 == adbOutputQueue.Count)
{
//only flush at idle time
if (AUTO_SAVE_LOG_FILE == true)
{
m_logFile.Flush();
}
//only sleep when there is no string in the queue.
System.Threading.Thread.Sleep(2);
}
else
{
if ( !m_bSuspendLogout )
{
DisplayMessage(adbOutputQueue.Dequeue().ToString());
}
}
}
catch (Exception err)
{
Console.WriteLine("WinListen Thread Exception: " + err.Message);
//Cleanup();
break;
}
}
}
private delegate void DisplayDelegate(string message);
private void DisplayMessage(string message)
{
if (consoleBox.InvokeRequired)
{
Invoke(new DisplayDelegate(DisplayMessage), new object[] { message });
}
else
{
if (m_tagFilterEnabled)
{
string msg = message.Trim().ToUpper();
if (0 < m_tagFilter.Length)
{
if (msg.Contains(m_tagFilter) == false)
{
return;
}
}
}
try
{
string pattern = @" [VIDWEFS][/]*";
Match match = Regex.Match(message, pattern);
if (match.Success)
{
char tagLevel = match.Value[1];
if (getIntLevel(tagLevel) < selectedLevel)
{
return;
}
switch (tagLevel)
{
case 'I':
case 'V':
{
consoleBox.SelectionColor = Color.LightGreen;
//consoleBox.SelectionBackColor = Color.SlateGray;
break;
}
case 'D':
{
consoleBox.SelectionColor = Color.DeepSkyBlue;
//consoleBox.SelectionBackColor = Color.SlateGray;
break;
}
case 'W':
{
consoleBox.SelectionColor = Color.LightSalmon;
//consoleBox.SelectionBackColor = Color.SlateGray;
break;
}
case 'E':
case 'F':
{
consoleBox.SelectionColor = Color.Tomato;
//consoleBox.SelectionBackColor = Color.SlateGray;
break;
}
default:
{
consoleBox.SelectionColor = Color.White; //should not go here
break;
}
}
}
}
catch (Exception)
{
Console.WriteLine("Exception from Regex");
}
if (bTest)
{
Encoding GBK,UTF8;
GBK = Encoding.GetEncoding("GBK");
UTF8 = Encoding.GetEncoding("UTF-8");
if (m_strCoding == "GBK")
{
message = UTF8.GetString(GBK.GetBytes(message));
}
//consoleBox.AppendText(message);
consoleBox.AppendText(message);
if (AUTO_SAVE_LOG_FILE == true)
{
m_logFile.Write(message);
}
}
// int maxLines = MAX_LINES;
int delta = 100; //to improve performance, delete 100 lines each time
if (consoleBox.Lines.Length > MAX_LINES + delta)
{
//Console.WriteLine(" >>>>>>>>>>>>>>> delete ");
consoleBox.SelectionStart = 0;
int pos = consoleBox.GetFirstCharIndexFromLine(consoleBox.Lines.Length - MAX_LINES);
consoleBox.Select(0, pos);
consoleBox.SelectedText = "";
}
consoleBox.SelectionStart = consoleBox.Text.Length;
consoleBox.ScrollToCaret();
}
}
private void ADBStartBtn_Click(object sender, EventArgs e)
{
if (null == m_adbListenThread)
{
StartADBThread();
System.Threading.Thread.Sleep(100);
m_ADBAccess.StartCMD();
System.Threading.Thread.Sleep(200);
//send demo command
{
string ADBCMD;
//ADBCMD = "dir";
ADBCMD = "adb logcat -c";
m_bCMDQueuing = true;
m_ADBCommandQueueWriter.Enqueue(ADBCMD);
ADBCMD = "adb logcat -v time";
m_ADBCommandQueueWriter.Enqueue(ADBCMD);
m_bCMDQueuing = false;
}
SetLogcatSuspend(false);
}
else
{
SetLogcatSuspend(!m_bSuspendLogout);
}
}
private void Cleanup()
{
if (AUTO_SAVE_LOG_FILE == true)
{
m_logFile.Close();
}
m_ADBCommandQueue.Clear();
}
private void ExitBtn_Click(object sender, EventArgs e)
{
OnExit();
}
private void TagEnable_CheckedChanged(object sender, EventArgs e)
{
if (CheckState.Checked == this.TagEnable.CheckState)
{
m_tagFilter = TagNameBox.Text.ToUpper();
m_tagFilterEnabled = true;
TagNameBox.Enabled = false;
}
else
{
m_tagFilterEnabled = false;
m_tagFilter = "";
TagNameBox.Enabled = true;
}
}
private void OnExit()
{
m_ADBAccess.Exit();
Cleanup();
System.Environment.Exit(System.Environment.ExitCode);
}
private void ADBClearBtn_Click(object sender, EventArgs e)
{
consoleBox.Clear();
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
OnExit();
}
private void SaveBtn_Click(object sender, EventArgs e)
{
//string consoleBoxText = consoleBox.Text;
saveFileDialog1.Filter = "logÎļþ(*.log)|*.log|Îı¾Îļþ(*.txt)|*.txt";
if (saveFileDialog1.ShowDialog() != DialogResult.OK)
{
return;
}
string fileName = saveFileDialog1.FileName;
StreamWriter fs = new StreamWriter(fileName);
fs.Write(consoleBox.Text);
fs.Close();
}
private int getIntLevel(char level)
{
int r = 0;
try
{
r = "VDIWEFS".IndexOf(level);
}
catch (System.Exception ex)
{
}
return r;
}
private void cmbLevel_SelectedIndexChanged(object sender, EventArgs e)
{
selectedLevel = cmbLevel.SelectedIndex;
}
private bool SetLogcatSuspend(bool status)
{
m_bSuspendLogout = status;
if (status)
{
pictureBox1.BackColor = System.Drawing.Color.Red;
}
else
{
pictureBox1.BackColor = System.Drawing.Color.Green;
}
return m_bSuspendLogout;
}
private static bool isUtf8(byte[] buff)
{
for (int i = 0; i < buff.Length; i++)
{
if ((buff[i] & 0xE0) == 0xC0) // 110x xxxx 10xx xxxx
{
if ((buff[i + 1] & 0x80) != 0x80)
{
return false;
}
}
else if ((buff[i] & 0xF0) == 0xE0) // 1110 xxxx 10xx xxxx 10xx xxxx
{
if ((buff[i + 1] & 0x80) != 0x80 || (buff[i + 2] & 0x80) != 0x80)
{
return false;
}
}
else if ((buff[i] & 0xF8) == 0xF0) // 1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx
{
if ((buff[i + 1] & 0x80) != 0x80 || (buff[i + 2] & 0x80) != 0x80 || (buff[i + 3] & 0x80) != 0x80)
{
return false;
}
}
}
return true;
}
private void splitContainer1_Panel2_Paint(object sender, PaintEventArgs e)
{
}
private void cmbCode_SelectedIndexChanged(object sender, EventArgs e)
{
m_strCoding = cmbCode.Items[cmbCode.SelectedIndex].ToString();
}
private void TopEnable_CheckedChanged(object sender, EventArgs e)
{
if (TopEnable.Checked)
{
this.TopMost = true;
}
else
{
this.TopMost = false;
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}