1 Star 0 Fork 15

oyxpweixin / luojiawaf_server

forked from tickbh / luojiawaf_server 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
reload.py 2.31 KB
一键复制 编辑 原始数据 按行查看 历史
tickbh 提交于 2022-03-11 14:57 . fix docker file
#!/usr/bin/env python
import logging
import os
import sys
import subprocess
import time
import signal
import platform
def file_filter(name):
return (not name.startswith(".")) and (not name.endswith(".swp"))
def file_times(path):
if os.path.isfile(path):
yield os.stat(path).st_mtime
return
for root, dirs, files in os.walk(path):
for file in filter(file_filter, files):
yield os.stat(os.path.join(root, file)).st_mtime
def print_stdout(process):
stdout = process.stdout
if stdout != None:
print(stdout)
try:
curpath = os.path.dirname(__file__)
# The path to watch
path = sys.argv[1]
if not path.startswith("/") and not (len(path) > 1 and path[1] == ":"):
path = os.path.join(curpath, path)
# We concatenate all of the arguments together, and treat that as the command to run
command = " ".join(sys.argv[2:])
# How often we check the filesystem for changes (in seconds)
wait = 1
# The process to autoreload
# process = subprocess.Popen(command, shell=True)
process = subprocess.Popen(command.split(), shell=False)
# process = subprocess.run(*sys.argv[2:], shell=False)
# The current maximum file modified time under the watched directory
last_mtime = max(file_times(path), default=0)
while True:
max_mtime = max(file_times(path), default=0)
print_stdout(process)
if max_mtime > last_mtime:
last_mtime = max_mtime
logging.warning("Restarting process.")
# os.kill(process.pid, signal.SIGINT)
sys = platform.system()
if sys == "Windows":
logging.warning("windows kill id = {}".format(process.pid))
os.system("taskkill /t /f /pid %s" % process.pid)
else:
process.terminate()
# os.system(f"kill -15 {process.pid}")
code = process.wait()
logging.warning("process.pid={process.pid}, terminate code = {code}")
process = subprocess.Popen(command.split(), shell=False)
# process = subprocess.Popen(command, shell=True)
# process = subprocess.run(*sys.argv[2:], shell=False)
try:
time.sleep(wait)
except KeyboardInterrupt:
break
except Exception as e:
print(e)
1
https://gitee.com/oyxp_732/luojiawaf_server.git
git@gitee.com:oyxp_732/luojiawaf_server.git
oyxp_732
luojiawaf_server
luojiawaf_server
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891