Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/bot.py

123 lines
3 KiB
Python
Raw Normal View History

2021-08-25 12:05:57 +00:00
import datetime
2021-08-07 12:55:07 +00:00
import logging
2021-02-01 15:25:57 +00:00
import os
2021-08-07 12:55:07 +00:00
import subprocess
2021-08-23 12:44:31 +00:00
import traceback
2021-08-07 12:55:07 +00:00
from queue import Queue, Empty
from threading import Thread
2021-08-25 12:05:57 +00:00
from time import sleep
2021-08-21 07:45:21 +00:00
2022-01-20 12:13:03 +00:00
import psutil
2021-08-23 12:44:31 +00:00
from init import init_bot
2021-08-21 07:45:21 +00:00
encode = 'UTF-8'
2020-09-19 10:35:13 +00:00
2021-08-21 15:58:07 +00:00
2022-01-13 15:50:17 +00:00
class RestartBot(Exception):
pass
def get_pid(name):
return [p.pid for p in psutil.process_iter() if p.name().find(name) != -1]
2021-08-07 12:55:07 +00:00
def enqueue_output(out, queue):
for line in iter(out.readline, b''):
queue.put(line)
out.close()
2021-02-01 15:13:11 +00:00
2021-08-21 15:58:07 +00:00
2021-08-20 16:32:46 +00:00
init_bot()
2021-03-05 16:19:06 +00:00
2021-08-20 16:32:46 +00:00
logging.basicConfig(format="%(msg)s", level=logging.INFO)
2021-08-25 12:05:57 +00:00
start = datetime.datetime.now()
2022-01-13 15:50:17 +00:00
pidlst = []
def run_bot():
pid_cache = os.path.abspath('.pid_last')
if os.path.exists(pid_cache):
with open(pid_cache, 'r') as f:
pid_last = f.read().split('\n')
running_pids = get_pid('python')
print(running_pids)
print(pid_last)
for pid in pid_last:
if int(pid) in running_pids:
try:
os.kill(int(pid), 9)
2022-01-13 16:01:29 +00:00
except (PermissionError, ProcessLookupError):
2022-01-13 15:50:17 +00:00
pass
os.remove(pid_cache)
botdir = './core/bots/'
lst = os.listdir(botdir)
runlst = []
for x in lst:
bot = os.path.abspath(f'{botdir}{x}/bot.py')
if os.path.exists(bot):
2022-01-13 15:58:19 +00:00
p = subprocess.Popen(['python', bot], shell=False, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
2022-01-13 15:50:17 +00:00
cwd=os.path.abspath('.'))
runlst.append(p)
pidlst.append(p.pid)
with open(pid_cache, 'w') as c:
c.write('\n'.join(str(p) for p in pidlst))
q = Queue()
threads = []
for p in runlst:
threads.append(Thread(target=enqueue_output, args=(p.stdout, q)))
for t in threads:
t.daemon = True
t.start()
2021-08-25 12:05:57 +00:00
2021-12-25 07:58:24 +00:00
while True:
2021-08-07 12:55:07 +00:00
try:
2021-12-25 07:58:24 +00:00
line = q.get_nowait()
except Empty:
pass
else:
try:
logging.info(line[:-1].decode(encode))
except Exception:
print(line)
2022-01-20 13:31:50 +00:00
logging.error(traceback.format_exc())
2021-08-07 12:55:07 +00:00
2021-12-25 07:58:24 +00:00
# break when all processes are done.
if all(p.poll() is not None for p in runlst):
break
2021-08-25 12:05:57 +00:00
2022-01-13 15:50:17 +00:00
for p in runlst:
if p.poll() == 233:
logging.warning(f'{p.pid} exited with code 233, restart all bots.')
2022-01-13 15:50:17 +00:00
pidlst.remove(p.pid)
raise RestartBot
2021-12-25 07:58:24 +00:00
sleep(0.001)
2022-01-13 15:50:17 +00:00
try:
while True:
try:
run_bot()
logging.fatal('All bots exited unexpectedly, please check the output')
break
except RestartBot:
for x in pidlst:
try:
os.kill(x, 9)
2022-01-13 16:01:29 +00:00
except (PermissionError, ProcessLookupError):
2022-01-13 15:50:17 +00:00
pass
pidlst.clear()
sleep(5)
continue
2021-12-25 07:58:24 +00:00
except KeyboardInterrupt:
for x in pidlst:
2022-01-13 15:50:17 +00:00
try:
os.kill(x, 9)
2022-01-13 16:01:29 +00:00
except (PermissionError, ProcessLookupError):
2022-01-13 15:50:17 +00:00
pass