python定时检测无响应进程并重启的实例代码
总有一些程序在windows平台表现不稳定,动不动一段时间就无响应,但又不得不用,每次都是发现问题了手动重启,现在写个脚本定时检测进程是否正常,自动重启。
涉及知识点
- schedule定时任务调度
- os.popen运行程序并读取解析运行结果
代码分解
脚本主入口
if__name__=='__main__': #每5秒执行检查任务 schedule.every(5).seconds.do(check_job) #此处固定写法,意思是每秒钟schedule看下是否有pending的任务,有就执行 whileTrue: schedule.run_pending() time.sleep(1)
schedule的其它示例
importschedule
importtime
defjob(message='stuff'):
print("I'mworkingon:",message)
#每10分钟
schedule.every(10).minutes.do(job)
#每小时
schedule.every().hour.do(job,message='things')
#每天10点30分
schedule.every().day.at("10:30").do(job)
whileTrue:
schedule.run_pending()
time.sleep(1)
检查无响应进程并重启
defcheck_job():
process_name="xx.exe"
not_respond_list=list_not_response(process_name)
iflen(not_respond_list)<=0:
return
pid_params="".join(["/PID"+pidforpidinnot_respond_list])
os.popen("taskkill/F"+pid_params)
iflen(list_process(process_name))<=0:
start_program(r'E:\xx\xx.exe')
}
查找符合条件的进程列表
deflist_process(process_name,not_respond=False): cmd='tasklist/FI"IMAGENAMEeq%s"' ifnot_respond: cmd=cmd+'/FI"STATUSeqNotResponding"' output=os.popen(cmd%process_name) returnparse_output(output.read()) deflist_not_response(process_name): returnlist_process(process_name,True)
解析命令执行结果
defparse_output(output):
print(output)
pid_list=[]
lines=output.strip().split("\n")
iflen(lines)>2:
forlineinlines[2:]:
pid_list.append(line.split()[1])
returnpid_list
tasklist示例输出
映像名称PID会话名会话#内存使用 ======================================================================== WizChromeProcess.exe1620Console132,572K
完整代码
importos
importtime
importschedule
defparse_output(output):
print(output)
pid_list=[]
lines=output.strip().split("\n")
iflen(lines)>2:
forlineinlines[2:]:
pid_list.append(line.split()[1])
returnpid_list
deflist_not_response(process_name):
returnlist_process(process_name,True)
deflist_process(process_name,not_respond=False):
cmd='tasklist/FI"IMAGENAMEeq%s"'
ifnot_respond:
cmd=cmd+'/FI"STATUSeqNotResponding"'
output=os.popen(cmd%process_name)
returnparse_output(output.read())
defstart_program(program):
os.popen(program)
defcheck_job():
process_name="xx.exe"
not_respond_list=list_not_response(process_name)
iflen(not_respond_list)<=0:
return
pid_params="".join(["/PID"+pidforpidinnot_respond_list])
os.popen("taskkill/F"+pid_params)
iflen(list_process(process_name))<=0:
start_program(r'E:\xxx\xx.exe')
if__name__=='__main__':
schedule.every(5).seconds.do(check_job)
whileTrue:
schedule.run_pending()
time.sleep(1)
总结
以上所述是小编给大家介绍的python定时检测无响应进程并重启的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!