python程序封装为win32服务的方法

yipeiwu_com5年前Python基础

本文实例为大家分享了python程序封装为win32服务的具体代码,供大家参考,具体内容如下

# encoding=utf-8
import os
import sys
import winerror
import win32serviceutil
import win32service
import win32event
import servicemanager
 
 
class PythonService(win32serviceutil.ServiceFramework):
 
 # 服务名
 _svc_name_ = "PythonService1"
 # 服务显示名称
 _svc_display_name_ = "PythonServiceDemo"
 # 服务描述
 _svc_description_ = "Python service demo."
 
 def __init__(self, args):
  win32serviceutil.ServiceFramework.__init__(self, args)
  self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
  self.logger = self._getLogger()
  self.isAlive = True
 
 def _getLogger(self):
  import logging
  import os
  import inspect
 
  logger = logging.getLogger('[PythonService]')
 
  this_file = inspect.getfile(inspect.currentframe())
  dirpath = os.path.abspath(os.path.dirname(this_file))
  handler = logging.FileHandler(os.path.join(dirpath, "service.log"))
 
  formatter = logging.Formatter('%(asctime)s %(name)-12s %(levelname)-8s %(message)s')
  handler.setFormatter(formatter)
 
  logger.addHandler(handler)
  logger.setLevel(logging.INFO)
 
  return logger
 
 def SvcDoRun(self):
  import time
  self.logger.error("svc do run....")
  try:
   while self.isAlive:
    self.logger.error("I am alive.")
    time.sleep(1)
    # 等待服务被停止
    # win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)
  except Exception as e:
   self.logger.error(e)
   time.sleep(60)
 
 def SvcStop(self):
  # 先告诉SCM停止这个过程
  self.logger.error("svc do stop....")
  self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
  # 设置事件
  win32event.SetEvent(self.hWaitStop)
  self.isAlive = False
 
 
if __name__ == '__main__':
 if len(sys.argv) == 1:
  try:
   src_dll = os.path.abspath(servicemanager.__file__)
   servicemanager.PrepareToHostSingle(PythonService)
   servicemanager.Initialize("PythonService", src_dll)
   servicemanager.StartServiceCtrlDispatcher()
  except Exception as e:
   print(e)
   #if details[0] == winerror.ERROR_FAILED_SERVICE_CONTROLLER_CONNECT:
    #win32serviceutil.usage()
 else:
  win32serviceutil.HandleCommandLine(PythonService) # 参数和上述定义类名一致
 
#pip install pywin32
 
# 安装服务
# python PythonService.py install
# 让服务自动启动
# python PythonService.py --startup auto install
# 启动服务
# python PythonService.py start
# 重启服务
# python PythonService.py restart
# 停止服务
# python PythonService.py stop
# 删除/卸载服务
# python PythonService.py remove
 
 
# 在用户变量处去掉python路径,然后在环境变量加入python路径
# C:\Users\zhongjianhui\AppData\Local\Programs\Python\Python36\Lib\site-packages\pywin32_system32;
# C:\Users\zhongjianhui\AppData\Local\Programs\Python\Python36\Lib\site-packages\win32;
# C:\Users\zhongjianhui\AppData\Local\Programs\Python\Python36\Scripts\;
#C:\Users\zhongjianhui\AppData\Local\Programs\Python\Python36\

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持【听图阁-专注于Python设计】。

相关文章

Python 基础教程之闭包的使用方法

Python 基础教程之闭包的使用方法 前言: 闭包(closure)是函数式编程的重要的语法结构。函数式编程是一种编程范式 (而面向过程编程和面向对象编程也都是编程范式)。在面向过程编...

python中pass语句用法实例分析

本文实例讲述了python中pass语句用法。分享给大家供大家参考。具体分析如下: 1、空语句 do nothing 2、保证格式完整 3、保证语义完整 4、以if语句为例: C/C++...

Python中replace方法实例分析

本文以实例形式讲述了Python中replace方法,很有实用价值,具体如下: replace方法主要有两种: last_date = "1/2/3" 目标为"123" 方法一:repa...

python中csv文件的若干读写方法小结

如下所示: //用普通文本文件方式打开和操作 with open("'file.csv'") as cf: lines=cf.readlines() .........

Python将xml和xsl转换为html的方法

本文实例讲述了Python将xml和xsl转换为html的方法。分享给大家供大家参考。具体分析如下: 这里需要用libxml2,所以还要先安装了libxml2模块才能使用。代码如下:...