我刚才在网站上提问,但已经使用Stackoverflow来查找过去几年其他用户所遇到的问题。不幸的是,我在这里找不到与我现在的问题相关的帖子。所以这里......
我有一个Python脚本,我想在启动过程中立即运行(即使在Windows登录屏幕中)。为此,我使用Python win32serviceutil框架创建Windows服务,并将服务设置为" auto"何时安装该服务。这看起来很简单,通过查看网上发布的示例,我得到了很快的服务。我的代码如下:
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服务中出现同样的行为,但情况似乎并非如此。
有没有人有任何线索?
答案 0 :(得分:1)
所以我在使用WINPDB将调试器连接到服务后想出了问题。
线程停止的原因是因为存在未捕获的异常(dun dun DUNNNNN)。异常是由一个抛出语句(真的???)引起的,它引发了一个IOError:9(错误的文件描述符)。我做了一些StackOverflow搜索,发现了这个......
why am I getting IOError: (9, 'Bad file descriptor') error while making print statements?
我要删除我的打印陈述,看看是否能解决我的问题......
实践学习......