我正在寫與multiproccesing Windows服務,我運行到與被稱爲池中的方法問題。的Python代碼池沒有運行
現在我能夠安裝服務,並運行它,它輸出The service started running...
日誌文件,但沒有別的。
看着進程資源管理器(見下面的屏幕截圖),我看到進程正在創建並不斷完成,但TestMethod內的代碼沒有運行,服務也沒有退出池,因爲沒有任何東西其他人正在寫入文件。
我不能停止該服務,因爲它停留在游泳池,沒有達到停止事件的檢查。
爲什麼TestMethod的中的代碼不運行呢?
服務代碼:
import servicemanager
import win32event
import win32service
import win32serviceutil
import multiprocessing
class TestService(win32serviceutil.ServiceFramework):
_svc_name_ = "TestService"
_svc_display_name_ = "Test Service"
def testMethod(self, testVar):
with open('C:\\Test.log', 'a') as f:
f.write('The method is running: ' + testVar)
f.close()
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
socket.setdefaulttimeout(60)
def SvcStop(self):
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
win32event.SetEvent(self.hWaitStop)
def SvcDoRun(self):
with open('C:\\Test.log', 'a') as f:
f.write('The service started running...\n')
f.close()
rc = None
p = multiprocessing.Pool(5)
p.map(TestService.testMethod, range(1,6))
with open('C:\\Test.log', 'a') as f:
f.write('Finished method...\n')
f.close()
while rc != win32event.WAIT_OBJECT_0:
with open('C:\\Test.log', 'a') as f:
f.write('The service is running...\n')
f.close()
rc = win32event.WaitForSingleObject(self.hWaitStop, 5000)
with open('C:\\Test.log', 'a') as f:
f.write('StreamCapture service stopped.\n')
f.close()
if __name__ == '__main__':
if len(sys.argv) == 1:
servicemanager.Initialize()
servicemanager.PrepareToHostSingle(TestService)
servicemanager.StartServiceCtrlDispatcher()
else:
win32serviceutil.HandleCommandLine(TestService)
'p.map(TestService.testMethod,範圍(1,6))' - 'TestService.testMethod'是一個未綁定的方法。在這個'p.map'調用中沒有'TestService'的實例。你期望執行這種方法的對象是什麼? – user2357112
原來的方法傳遞視頻流和它運行的ffmpeg,並創建日誌。我把這個方法放在類裏面,因爲我認爲它可能會遇到一個範圍問題,但它仍然遇到了同樣的問題,這個方法可以非常好地在類之外定義而沒有自己,它會遇到與現在相同的問題。 –