|
這幾天想做個(gè)文件監(jiān)控服務(wù),看了一下網(wǎng)上的關(guān)于WINDOWS服務(wù)的文章,數(shù)量都不少,都只講了如何做一個(gè)最基本的服務(wù),卻沒有講述如何與用戶進(jìn)行交互。查看了MSDN,看一下關(guān)于服務(wù)的描述:
Windows 服務(wù)應(yīng)用程序在不同于登錄用戶的交互區(qū)域的窗口區(qū)域中運(yùn)行。窗口區(qū)域是包含剪貼板、一組全局原子和一組桌面對(duì)象的安全對(duì)象。由于 Windows 服務(wù)的區(qū)域不是交互區(qū)域,因此 Windows 服務(wù)應(yīng)用程序中引發(fā)的對(duì)話框?qū)⑹遣豢梢姷模⑶铱赡軐?dǎo)致程序停止響應(yīng)。同樣,錯(cuò)誤信息應(yīng)記錄在 Windows 事件日志中,而不是在用戶界面中引發(fā)。
.NET Framework 支持的 Windows 服務(wù)類不支持與交互區(qū)域(即登錄用戶)進(jìn)行交互。同時(shí),.NET Framework不包含表示區(qū)域和桌面的類。如果 Windows 服務(wù)必須與其他區(qū)域進(jìn)行交互,則需要訪問非托管的 Windows API。
也就是說我們要實(shí)現(xiàn)可交互的服務(wù)(比如我們想給服務(wù)在運(yùn)行時(shí)做一些參數(shù)設(shè)置等),那我們一定要using System.Runtime.InteropServices
那么來看一下如果才能實(shí)現(xiàn)一個(gè)可交互的服務(wù)呢。步驟與實(shí)現(xiàn)基本的服務(wù)一樣(各位可自行參考MSDN或網(wǎng)上google一下).
在實(shí)現(xiàn)OnStart時(shí)要注意,這里可不能彈出一個(gè)FORM什么的。這樣做是沒有任何反應(yīng)的。我們可以在這個(gè)方法里運(yùn)行一個(gè)線程。該線程需要訪問窗口區(qū)域?qū)ο蠡蜃烂鎸?duì)象,當(dāng)然 framework里是沒有提供這些的,要訪問非托管代碼的。
來看一下代碼,再運(yùn)行試一下。
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServiceProcess;
using System.Threading;
using System.Runtime.InteropServices;
namespace FileWatchService
{
public class Service1 : System.ServiceProcess.ServiceBase
{
///
/// 必需的設(shè)計(jì)器變量。
///
private System.ComponentModel.Container components = null;
Thread threadForm = null;
public Service1()
{
// 該調(diào)用是 Windows.Forms 組件設(shè)計(jì)器所必需的。
InitializeComponent();
// TODO: 在 InitComponent 調(diào)用后添加任何初始化
}
#region 組件設(shè)計(jì)器生成的代碼
///
/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器
/// 修改此方法的內(nèi)容。
///
private void InitializeComponent()
{
//
// Service1
//
this.ServiceName = "JadeWatchService";
}
#endregion
[STAThread]
static void Main()
{
System.ServiceProcess.ServiceBase.Run(new Service1());
}
///
/// 清理所有正在使用的資源。
///
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
///
/// 設(shè)置具體的操作,以便服務(wù)可以執(zhí)行它的工作。
///
protected override void OnStart(string[] args)
{
threadForm = new Thread(new ThreadStart(FormShow));
threadForm.Start();
}
///
/// 停止此服務(wù)。
///
protected override void OnStop()
{
if (threadForm != null)
{
if (threadForm.IsAlive)
{
threadForm.Abort();
threadForm = null;
}
}
}
void FormShow()
{
GetDesktopWindow();
IntPtr hwinstaSave = GetProcessWindowStation();
IntPtr dwThreadId = GetCurrentThreadId();
IntPtr hdeskSave = GetThreadDesktop(dwThreadId);
IntPtr hwinstaUser = OpenWindowStation("WinSta0", false, 33554432);
if (hwinstaUser == IntPtr.Zero)
{
RpcRevertToSelf();
return;
}
SetProcessWindowStation(hwinstaUser);
IntPtr hdeskUser = OpenDesktop("Default", 0, false, 33554432);
RpcRevertToSelf();
if (hdeskUser == IntPtr.Zero)
{
SetProcessWindowStation(hwinstaSave);
CloseWindowStation(hwinstaUser);
return;
}
SetThreadDesktop(hdeskUser);
IntPtr dwGuiThreadId = dwThreadId;
Form1 f = new Form1(); //此FORM1可以帶notifyIcon,可以顯示在托盤里,用戶可點(diǎn)擊托盤圖標(biāo)進(jìn)行設(shè)置
System.Windows.Forms.Application.Run(f);
dwGuiThreadId = IntPtr.Zero;
SetThreadDesktop(hdeskSave);
SetProcessWindowStation(hwinstaSave);
CloseDesktop(hdeskUser);
CloseWindowStation(hwinstaUser);
}
[DllImport("user32.dll")]
static extern int GetDesktopWindow();
[DllImport("user32.dll")]
static extern IntPtr GetProcessWindowStation();
[DllImport("kernel32.dll")]
static extern IntPtr GetCurrentThreadId();
[DllImport("user32.dll")]
static extern IntPtr GetThreadDesktop(IntPtr dwThread);
[DllImport("user32.dll")]
static extern IntPtr OpenWindowStation(string a, bool b, int c);
[DllImport("user32.dll")]
static extern IntPtr OpenDesktop(string lpszDesktop, uint dwFlags,
bool fInherit, uint dwDesiredAccess);
[DllImport("user32.dll")]
static extern IntPtr CloseDesktop(IntPtr p);
[DllImport("rpcrt4.dll", SetLastError = true)]
static extern IntPtr RpcImpersonateClient(int i);
[DllImport("rpcrt4.dll", SetLastError = true)]
static extern IntPtr RpcRevertToSelf();
[DllImport("user32.dll")]
static extern IntPtr SetThreadDesktop(IntPtr a);
[DllImport("user32.dll")]
static extern IntPtr SetProcessWindowStation(IntPtr a);
[DllImport("user32.dll")]
static extern IntPtr CloseWindowStation(IntPtr a);
}
}
NET技術(shù):.NET實(shí)現(xiàn)可交互的WINDOWS服務(wù),轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。