2022-05-22 22:47:33 +01:00
|
|
|
import pathlib
|
2022-05-28 16:15:19 +01:00
|
|
|
import subprocess
|
2022-07-30 21:33:31 +01:00
|
|
|
import asyncio
|
|
|
|
import os
|
2022-04-18 22:21:51 +01:00
|
|
|
|
2022-07-30 21:33:31 +01:00
|
|
|
HOME_DIR = str(pathlib.Path(os.getcwd()).parent.parent.resolve())
|
|
|
|
PARENT_DIR = str(pathlib.Path(__file__).parent.resolve())
|
2022-04-30 02:01:24 +01:00
|
|
|
|
2022-04-21 19:01:49 +01:00
|
|
|
class Plugin:
|
2022-07-30 21:33:31 +01:00
|
|
|
backend_proc = None
|
2022-04-18 22:21:51 +01:00
|
|
|
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
|
|
|
|
async def _main(self):
|
2022-07-30 21:33:31 +01:00
|
|
|
# startup
|
|
|
|
self.backend_proc = subprocess.Popen([PARENT_DIR + "/bin/backend"])
|
2022-05-13 19:01:48 +01:00
|
|
|
while True:
|
2022-09-01 01:18:15 +01:00
|
|
|
await asyncio.sleep(1)
|