我是在网站上提问的新手,但使用 Stackoverflow 来查找其他用户在过去几年中遇到的问题。不幸的是,我在这里找不到与我现在遇到的问题相关的帖子。所以这里...
我有一个 Python 脚本,我想在启动期间立即运行(即即使在 Windows 登录屏幕期间)。为此,我使用 Python win32serviceutil 框架创建了一个 Windows 服务,并在安装服务时将服务设置为“自动”。这看起来很简单,通过查看网络上发布的示例,我的服务运行得很快。我的代码如下所示:
import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os, sys, string, time
from STEL.ClientServer.StartClient import StartClient
class aservice(win32serviceutil.ServiceFramework):
_svc_name_ = "STELClient"
_svc_display_name_ = "My Service Long Fancy Name!"
_svc_description_ = "THis is what my crazy little service does - aka a DESCRIPTION! WHoa!"
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
self.client = StartClient()
def SvcStop(self):
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
win32event.SetEvent(self.hWaitStop)
def SvcDoRun(self):
import servicemanager
servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE,servicemanager.PYS_SERVICE_STARTED,(self._svc_name_, ''))
self.timeout = 10000
# This is how long the service will wait to run / refresh itself (see script below)
try:
self.client.startClient()
except:
servicemanager.LogInfoMsg("STELClient - EXCEPTION !!") #For Event Log
while 1:
# Wait for service stop signal, if I timeout, loop again
rc = win32event.WaitForSingleObject(self.hWaitStop, self.timeout)
# Check to see if self.hWaitStop happened
if rc == win32event.WAIT_OBJECT_0:
# Stop signal encountered
self.client.stopClient()
servicemanager.LogInfoMsg("STELClient - STOPPED!") #For Event Log
break
else:
execfile("C:\\STEL\\clientExample.py")
pass
def ctrlHandler(ctrlType):
return True
if __name__ == '__main__':
win32api.SetConsoleCtrlHandler(ctrlHandler, True)
win32serviceutil.HandleCommandLine(aservice)
感兴趣的主要代码是:
try:
self.client.startClient()
except:
servicemanager.LogInfoMsg("STELClient - EXCEPTION !!") #For Event Log
和:
else:
execfile("C:\\STEL\\clientExample.py")
pass
两个代码块都 ping 同一个服务器。唯一的区别是,每当调用脚本时,clientExample.py 都会对服务器执行一次 ping 操作。在这种情况下,由于 while 循环,它每 10 秒 ping 一次。client.startClient() 产生自己的线程并每 5 秒 ping 一次服务器。
安装服务并运行脚本后,我注意到 client.startClient() 线程似乎在 3-4 分钟后停止(我计时时大约 3 分 40 秒),但 clientExample.py 继续运行每 10 秒。
如果我要在 Python 中运行以下代码行,则线程会无限期地运行,直到我停止/关闭 Python。
from STEL.ClientServer.StartClient import StartClient
self.client = StartClient()
self.client.startClient()
我预计 Windows 服务中会出现同样的行为,但情况似乎并非如此。
有没有人有任何线索?