2
schangxiang@126.com
2024-10-02 5d523171b8bc7db46ca76b11640dbfcb0120ce84
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
using System;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Threading;
using System.Collections;
using System.Configuration;
 
namespace ServiceClient
{
    /// <summary>
    /// 概要描述
    /// </summary>
    public partial class ServiceClient : Form
    {
        #region 变量
 
        /// <summary>
        /// 当前打开日志路径
        /// </summary>
        private string strCurrentPath = "";
 
        /// <summary>
        /// 监听日志委托
        /// </summary>
        /// <param name="strMessage"></param>
        public delegate void ListenNoteDelegate(string strMessage);
        public ListenNoteDelegate addMessage;
 
        /// <summary>
        /// 读取日志文件的线程
        /// </summary>
        Thread readThread = null;
 
        ///获取服务地址
        string ServerPath = string.Empty;
        ///获取服务代码
        string ServerCode = string.Empty;
        ///获取服务名称
        string ServerName = string.Empty;
 
        #endregion
 
        #region 构造函数
        /// <summary>
        /// 构造函数
        /// </summary>
        public ServiceClient()
        {
            InitializeComponent();
        }
        #endregion
 
        #region 自定义函数
 
        #region 判断window服务是否启动
        /// <summary>  
        /// 判断Windows服务是否启动  
        /// </summary>  
        /// <returns></returns>  
        private bool IsServiceStart()
        {
            ////定义返回值
            bool bStartStatus = false;
            try
            {
                ////判断是否服务启动状态
                if (Windows.IsRunning(ServerCode))
                {
                    bStartStatus = true;
                }
 
                ////根据是否开启服务设置按钮权限
                if (bStartStatus)
                {
                    this.btnOpenService.Enabled = false;
                    this.btnStopService.Enabled = true;
                }
                else
                {
                    this.btnOpenService.Enabled = true;
                    this.btnStopService.Enabled = false;
                }
 
                ////返回服务状态
                return bStartStatus;
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
        #endregion
 
        #region 加载服务
        /// <summary>
        /// 加载服务
        /// </summary>
        private void LoadServerData()
        {
            try
            {
                DataTable dt = new DataTable();
                dt.Columns.Add("ServiceCode", typeof(string));
                dt.Columns.Add("ServiceName", typeof(string));
                dt.Columns.Add("ServiceState", typeof(string));
                dt.Columns.Add("ServicePath", typeof(string));
 
                #region 加载基础服务
                ServiceSection serviceSection=ServiceSection.GetConfig();
                foreach (TheKeyValue item in serviceSection.KeyValues)
                {
                    DataRow tbsRow = dt.NewRow();
                    tbsRow["ServiceCode"] = item.Name;
                    tbsRow["ServiceName"] =item.Text;
                    tbsRow["ServicePath"] = Application.StartupPath + item.Path;
                    if (Windows.isServiceIsExisted(item.Name))
                    {
                        ////判断是否服务启动状态
                        if (Windows.IsRunning(item.Name))
                        {
                            tbsRow["ServiceState"] = "服务正在运行";
                        }
                        else
                        {
                            tbsRow["ServiceState"] = "服务已停止";
                        }
                    }
                    else
                    {
                        tbsRow["ServiceState"] = "服务已卸载";
                    }
                    dt.Rows.Add(tbsRow);
                }
                //绑定数据
                ServiceList.DataSource = dt;
                #endregion
 
 
 
 
                #region 格式化一下行颜色
                for (int i = 0; i < ServiceList.RowCount; i++)
                {
                    switch (ServiceList.Rows[i].Cells["ServiceState"].Value.ToString())
                    {
                        case "服务正在运行":
                            ServiceList.Rows[i].DefaultCellStyle.BackColor = btnOpenService.BackColor;
                            break;
                        case "服务已停止":
                        case "服务已卸载":
                            ServiceList.Rows[i].DefaultCellStyle.BackColor = btnUninstall.BackColor;
                            break;
                        default:
                            break;
                    }
                }
                #endregion
 
            }
            catch (Exception)
            {
                throw;
            }
        }
        #endregion
 
        #endregion
 
        #region 自定义事件
 
        #region 初始化事件
        /// <summary>
        /// 初始化事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void FrmTCVMCClient_Load(object sender, EventArgs e)
        {
            LoadServerData();
            ////初始化任务栏图标
            string icon = Directory.GetCurrentDirectory() + "\\Service.ico";
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            notifyIcon1.Icon = new Icon(icon);//指定一个图标      
            notifyIcon1.Visible = false;
            //notifyIcon1.MouseMove += notifyIcon1_MouseMove;
            notifyIcon1.Click += new System.EventHandler(this.notifyIcon1_Click);
            addMessage = new ListenNoteDelegate(ListenNote);
 
        }
 
 
 
        #endregion
 
        #region 开启服务
        /// <summary>
        /// 开启服务
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnOpenService_Click(object sender, EventArgs e)
        {
            try
            {
                if (MessageBox.Show("确定要开启"+ ServerName + "服务?", "询问", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.OK)
                {
                    if (Windows.StarmyService(ServerCode))//启动服务
                    {
                        if (Windows.IsRunning(ServerCode))//检查服务是否在运行
                        {
                            ////把日志文件展示在列表中
                            MessageBox.Show("开启" + ServerName + "成功!");
                            this.Invoke(addMessage, "开启" + ServerName + "成功!");
                            //更改服务状态
                            ServiceList.CurrentRow.Cells["ServiceState"].Value = "服务正在运行";
                            //设置一下按钮权限
                            ServiceList_Click(null, null);
                            return;
                        }
                        else
                        {
                            ////把日志文件展示在列表中
                            MessageBox.Show("开启" + ServerName + "成功!");
                            this.Invoke(addMessage, "开启" + ServerName + "成功!");
                            //设置一下按钮权限
                            IsServiceStart();
                            return;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                ////把日志文件展示在列表中
                MessageBox.Show("开启" + ServerName + "异常:" + ex.Message);
                this.Invoke(addMessage, "开启" + ServerName + "异常:" + ex.Message);
            }
 
        }
        #endregion
 
        #region 关闭服务
        /// <summary>
        /// 关闭服务
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnStopService_Click(object sender, EventArgs e)
        {
            try
            {
                if (MessageBox.Show("确定关闭"+ ServerName + "服务?", "询问", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.OK)
                {
                    if (Windows.StopService(ServerCode))
                    {
 
                        if (Windows.IsRunning(ServerCode))//检查服务是否运行
                        {
                            MessageBox.Show("关闭" + ServerName + "失败!");
                            ////把日志文件展示在列表中
                            this.Invoke(addMessage, "关闭" + ServerName + "失败!");
                            return;
                        }
                        else
                        {
                            ////把日志文件展示在列表中
                            MessageBox.Show("关闭" + ServerName + "成功!");
                            this.Invoke(addMessage, "关闭" + ServerName + "成功!");
                            //更改服务状态
                            ServiceList.CurrentRow.Cells["ServiceState"].Value = "服务已停止";
                            //设置一下按钮权限
                            ServiceList_Click(null, null);
                            return;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                ////把日志文件展示在列表中
                MessageBox.Show("关闭" + ServerName + "异常:" + ex.Message);
                this.Invoke(addMessage, "关闭" + ServerName + "异常:" + ex.Message);
            }
 
        }
        #endregion
 
        #region 浏览日志
        /// <summary>
        /// 浏览日志
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnViewLog_Click(object sender, EventArgs e)
        {
            ////打开一个文件
            OpenFileDialog OFD = new OpenFileDialog();
            ////设定打开的文件类型
            OFD.Filter = "日志文件(*.log)|*.log|文本文件(*.txt)|*.txt";
            ////确定打开时
            if (OFD.ShowDialog(this) == DialogResult.OK)
            {
                if (readThread != null)
                {
                    ////释放线程
                    readThread.Abort();
                }
                ////清空显示内容
                this.lbRealTimeNote.Items.Clear();
                ////给当前打开文件路径赋值
                strCurrentPath = OFD.FileName;
                ////读取日志文件
                readThread = new Thread(new ThreadStart(StreamReaderLogData));
                ////开启线程
                readThread.Start();
            }
 
        }
        #endregion
 
        #region 读取日志文件
        /// <summary>
        /// 读取日志文件
        /// </summary>
        private void StreamReaderLogData()
        {
            using (FileStream fs = new FileStream(strCurrentPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
            {
                ////读取打开的日志文件
                using (StreamReader sr = new StreamReader(fs, Encoding.Default))
                {
                    ////逐行读取
                    while (!sr.EndOfStream)
                    {
                        ////把日志文件展示在列表中
                        this.Invoke(addMessage, sr.ReadLine());
                    }
                }
            }
            ////释放线程
            readThread.Abort();
        }
        #endregion
 
        #region 监听日志
        /// <summary>
        /// 监听日志
        /// </summary>
        /// <param name="name"></param>
        public void ListenNote(string strMessage)
        {
            this.lbRealTimeNote.Items.Add(DateTime.Now + ":" + strMessage);
            ////让滚动条显示在最下面
            this.lbRealTimeNote.SelectedIndex = lbRealTimeNote.Items.Count - 1;
        }
        #endregion
 
        #region 最小化隐藏在任务栏中
        /// <summary>
        /// 最小化隐藏在任务栏中
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void FrmTCVMCClient_SizeChanged(object sender, EventArgs e)
        {
            if (this.WindowState == FormWindowState.Minimized)
            {
                this.Hide(); //或者是this.Visible = false;
                this.notifyIcon1.Visible = true;
            }
        }
        #endregion
 
        #region 单击隐藏咋任务栏中的如表显示窗体
        /// <summary>
        /// 单击隐藏咋任务栏中的如表显示窗体
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void notifyIcon1_Click(object sender, EventArgs e)
        {
            if (this.WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Minimized;
                this.Hide();
            }
            else if (this.WindowState == FormWindowState.Minimized)
            {
                this.Show();
                this.WindowState = FormWindowState.Normal;
                this.Activate();
            }
        }
        #endregion
 
        #region 气泡提示
        /// <summary>
        /// 气泡提示
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void notifyIcon1_MouseMove(object sender, MouseEventArgs e)
        {
            notifyIcon1.BalloonTipText = "服务管理";
            notifyIcon1.ShowBalloonTip(5000);//显示气泡提示,参数为显示时间
        }
        #endregion
 
        #region 安装服务
        /// <summary>
        /// 安装服务
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnInstall_Click(object sender, EventArgs e)
        {
            try
            {
                if (MessageBox.Show("确定要安装"+ ServerName + "服务么?", "询问", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.OK)
                {
                    IDictionary dictionary = new Hashtable();
                    if (Windows.InstallmyService(dictionary, ServerPath))//安装服务
                    {
                        ////把日志文件展示在列表中
                        MessageBox.Show("安装" + ServerName + "成功,未启动!");
                        this.Invoke(addMessage, "安装" + ServerName + "成功,未启动!");
                        //更改服务状态
                        ServiceList.CurrentRow.Cells["ServiceState"].Value = "服务已停止";
                        //设置一下按钮权限
                        ServiceList_Click(null, null);
                    }
                    else
                    {
                        ////把日志文件展示在列表中
                        MessageBox.Show(ServerName+"服务已经存在");
                        this.Invoke(addMessage,ServerName+"服务已经存在!");
 
                    }
                }
            }
            catch (Exception ex)
            {
                ////把日志文件展示在列表中
                MessageBox.Show(ServerName+"服务安装异常:" + ex.Message);
                this.Invoke(addMessage,ServerName + "服务安装异常:" + ex.Message);
            }
        }
        #endregion
 
        #region 卸载服务
        /// <summary>
        /// 卸载服务
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnUninstall_Click(object sender, EventArgs e)
        {
            try
            {
                if (MessageBox.Show("确定要卸载"+ ServerName + "服务么?", "询问", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.OK)
                {
                    IDictionary dictionary = new Hashtable();
                    if (Windows.UnInstallmyService(dictionary, ServerPath))//卸载服务
                    {
                        if (!Windows.isServiceIsExisted(ServerCode))//检查服务是否存在
                        {
                            ////把日志文件展示在列表中
                            MessageBox.Show("卸载" + ServerName + "成功!");
                            this.Invoke(addMessage, "卸载" + ServerName + "成功!");
                            //更改服务状态
                            ServiceList.CurrentRow.Cells["ServiceState"].Value = "服务已卸载";
                            //设置一下按钮权限
                            ServiceList_Click(null, null);
                        }
                        else
                        {
                            ////把日志文件展示在列表中
                            MessageBox.Show("卸载" + ServerName + "失败!");
                            this.Invoke(addMessage, "卸载" + ServerName + "失败!");
                        }
                    }
                    else
                    {
                        ////把日志文件展示在列表中
                        MessageBox.Show(ServerName + "已卸载!");
                        this.Invoke(addMessage, ServerName + "已卸载!");
                    }
                }
            }
            catch (Exception ex)
            {
                ////把日志文件展示在列表中
                MessageBox.Show(ServerName + "服务卸载异常:" + ex.Message);
                this.Invoke(addMessage, ServerName + "服务卸载异常:" + ex.Message);
            }
        }
        #endregion
 
        #region 列表变化时触发事件
        /// <summary>
        /// 列表变化时触发事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ServiceList_Click(object sender, EventArgs e)
        {
            try
            {
                if (ServiceList.CurrentRow == null) return;
                switch (ServiceList.CurrentRow.Cells["ServiceState"].Value.ToString())
                {
                    case "服务正在运行":
                        this.btnOpenService.Enabled = false;
                        this.btnStopService.Enabled = true;
                        this.btnInstall.Enabled = false;
                        this.btnUninstall.Enabled = false;
                        //ServiceList.CurrentRow.DefaultCellStyle.BackColor = btnOpenService.BackColor;
                        break;
                    case "服务已停止":
                        this.btnOpenService.Enabled = true;
                        this.btnStopService.Enabled = false;
                        this.btnInstall.Enabled = false;
                        this.btnUninstall.Enabled = true;
                        //ServiceList.CurrentRow.DefaultCellStyle.BackColor = btnUninstall.BackColor;
                        break;
                    case "服务已卸载":
                        this.btnOpenService.Enabled = false;
                        this.btnStopService.Enabled = false;
                        this.btnInstall.Enabled = true;
                        this.btnUninstall.Enabled = false;
                        //ServiceList.CurrentRow.DefaultCellStyle.BackColor = btnUninstall.BackColor;
                        break;
                    default:
                        this.btnOpenService.Enabled = false;
                        this.btnStopService.Enabled = false;
                        this.btnInstall.Enabled = false;
                        this.btnUninstall.Enabled = false;
                        //ServiceList.CurrentRow.DefaultCellStyle.BackColor = btnUninstall.BackColor;
                        break;
                }
                //取得服务代码
                ServerCode = ServiceList.CurrentRow.Cells["ServiceCode"].Value.ToString();
                ServerPath = ServiceList.CurrentRow.Cells["ServicePath"].Value.ToString();
                ServerName = ServiceList.CurrentRow.Cells["ServiceName"].Value.ToString();
            }
            catch (Exception)
            {
                throw;
            }
        }
        #endregion
 
        #endregion
 
        protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
        {
            if (MessageBox.Show("真的要退出程序吗?", "退出程序", MessageBoxButtons.OKCancel) == DialogResult.Cancel)
            {
                e.Cancel = true;
            }
        }
    }
}