2

以下は、Windowsサービスに変えようとしている私のコードです。呼び出しとして test.py が表示されます。これはすべて、(テストとして) ログ ファイルに書き込む短いスクリプトです。

Windowsサービスにするためのコードがあり、それはうまくいきますが、実行してもログファイルには何も書き込まれません。大変助かります。以下はコードです:

import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os, sys, string, time

class aservice(win32serviceutil.ServiceFramework):

   _svc_name_ = "MyServiceShortName"
   _svc_display_name_ = "A python test"
   _svc_description_ = "Writing to a log"

   def __init__(self, args):
           win32serviceutil.ServiceFramework.__init__(self, args)
           self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)           

   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 = 1000     #1 seconds
  # This is how long the service will wait to run / refresh itself (see script below)

  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
        servicemanager.LogInfoMsg("SomeShortNameVersion - STOPPED!")  #For Event Log
        break
     else:

              #what to run
              try:
                       file_path = "test.py"
                       execfile(file_path)
              except:
                       pass
             #end of what to run


def ctrlHandler(ctrlType):
   return True

if __name__ == '__main__':   
   win32api.SetConsoleCtrlHandler(ctrlHandler, True)   
   win32serviceutil.HandleCommandLine(aservice)

編集: test.py ファイルのコードを含めたいと思います。不要なインポートがありますが、単独で実行すると仕事が完了します。

import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os
logfile = open("log.txt", "a") #open file to log restart timestamp
logfile.write("\nthat's good!!!!")
logfile.close()
4

1 に答える 1

2

わかりましたので、他の誰かがこれを扱っている場合に備えて戻ってきて投稿したいと思いますが、これは少しユニークでした.

Windows サービス内にいる場合は、ファイル パスを指定する必要があります。

file_path = "test.py"

になるはずだった

file_path = r"c:\users\...\test.py"

Windows ファイル パスに「\」を使用する場合は注意してください。'\\' のようにエスケープするか、文字列を生の文字列 ('r') として宣言する必要があります。Unix のようなスラッシュ '/' セパレータを使用することもできますが、Windows ユーザーには奇妙に見えるかもしれません。

于 2012-05-22T00:52:06.080 に答える