用python寫windows服務(wù)(1)
以python2.5 為例
需要軟件
* python 2.5
* pywin32(與2.5 版本相匹配的)
Service Control Manager (SCM)
服務(wù)管理器(SCM) 是windows NT的 一部分,所有服務(wù)必須通過SCM 注冊,SCM負責(zé)啟動,停止服務(wù)等。
當(dāng)一個進程通過SCM注冊后, 有如下特質(zhì):
* 運行該進程的用戶,未必是當(dāng)前登錄的用戶。
* 該進程如果依賴其他服務(wù),哪么該服務(wù)啟動前,依賴服務(wù)回啟動。該服務(wù)停止后,依賴服務(wù)會停止。(估計是應(yīng)用計數(shù)減1)
* 服務(wù)可知計算機啟動后自動啟動,或者手動啟動。
windows NT 通過執(zhí)行一個進程開始相應(yīng)服務(wù)。一旦這個進程執(zhí)行,它需要告知SCM它實際上是作為一個服務(wù)運行。還需要傳給SCM一個控制句柄(control handler)。其實就是一個函數(shù),用于處理SCM 發(fā)來的相關(guān)信息。 當(dāng)服務(wù)被停止時, SCM傳信息給控制句柄。服務(wù)本身負責(zé)處理該請求,并停止本身服務(wù)。
pywin32 服務(wù)相關(guān)module
* win32service 實現(xiàn)了Win32服務(wù)功能。
* win32serviceutil 對api的包裝,始面向用戶的接口更友好。
* PythonService.exe 使用pywin32 服務(wù)器,它必須先注冊。
下面重點講 win32serviceutil
服務(wù)框架類
win32serviceutil.ServiceFramework
__init__
構(gòu)造函數(shù),注冊ServiceCtrlHandler給SCM
ServiceCtrlHandler
本服務(wù)的control handler 的默認實現(xiàn)。該函數(shù)會查詢類內(nèi)的函數(shù)名,用以判斷該服務(wù)提供哪些控制接口,比如類內(nèi)有SvcPause 函數(shù)。則會認為該服務(wù)可以被暫停。
SvcRun
服務(wù)入口點。服務(wù)運行,就是運行這個函數(shù)。
簡單示例
代碼:
1 # SmallestService.py
2 #
3 # A sample demonstrating the smallest possible service written in Python.
4
5 import win32serviceutil
6 import win32service
7 import win32event
8
9 class SmallestPythonService(win32serviceutil.ServiceFramework):
10 _svc_name_ = "SmallestPythonService"
11 _svc_display_name_ = "The smallest possible Python Service"
12 def __init__(self, args):
13 win32serviceutil.ServiceFramework.__init__(self, args)
14 # Create an event which we will use to wait on.
15 # The "service stop" request will set this event.
16 self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
17
18 def SvcStop(self):
19 # Before we do anything, tell the SCM we are starting the stop process.
20 self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
21 # And set my event.
22 win32event.SetEvent(self.hWaitStop)
23
24 def SvcDoRun(self):
25 # We do nothing other than wait to be stopped!
26 win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)
27
28 if __name__=='__main__':
29 win32serviceutil.HandleCommandLine(SmallestPythonService)
30
安裝服務(wù)
進入PythonService.exe所在目錄, 命令行下執(zhí)行命令
(PATH)>PythonService.exe /register
Registering the Python Service Manager...
安裝服務(wù)
C:\Scripts> SmallestService.py install
Installing service SmallestPythonService to Python class
C:\Scripts\SmallestService.SmallestPythonService
Service installed
C:\Scripts>
啟動服務(wù)
C:\Scripts> python.exe SmallestService.py start
Starting service SmallestPythonService
C:\Scripts>
啟動確認
C:\Scripts> python.exe SmallestService.py start
Starting service SmallestPythonService
Error starting service: An instance of the service is already running.
C:\Scripts>
停止服務(wù)
C:\Scripts> python.exe SmallestService.py stop
Stopping service SmallestPythonService
C:\Scripts>
posted on 2009-08-01 12:55
老馬驛站 閱讀(6314)
評論(0) 編輯 收藏 引用 所屬分類:
python 、
windows