65 lines
2.0 KiB
Python
65 lines
2.0 KiB
Python
|
import os
|
||
|
import time
|
||
|
from contextlib import suppress
|
||
|
|
||
|
import psutil as psutil
|
||
|
from watchdog.events import FileSystemEventHandler
|
||
|
from watchdog.observers import Observer
|
||
|
|
||
|
from cpl.application import ApplicationRuntimeABC
|
||
|
from cpl.console.console import Console
|
||
|
from cpl.dependency_injection import ServiceABC
|
||
|
from cpl_cli.configuration import BuildSettings
|
||
|
from cpl_cli.live_server.live_server_thread import LiveServerThread
|
||
|
|
||
|
|
||
|
class LiveServerService(ServiceABC, FileSystemEventHandler):
|
||
|
|
||
|
def __init__(self, runtime: ApplicationRuntimeABC, build_settings: BuildSettings):
|
||
|
ServiceABC.__init__(self)
|
||
|
FileSystemEventHandler.__init__(self)
|
||
|
|
||
|
self._runtime = runtime
|
||
|
self._build_settings = build_settings
|
||
|
|
||
|
self._src_dir = os.path.join(self._runtime.working_directory, self._build_settings.source_path)
|
||
|
self._live_server = LiveServerThread(self._src_dir)
|
||
|
self._observer = None
|
||
|
|
||
|
def _start_observer(self):
|
||
|
self._observer = Observer()
|
||
|
self._observer.schedule(self, path=self._src_dir, recursive=True)
|
||
|
self._observer.start()
|
||
|
|
||
|
def _restart(self):
|
||
|
for proc in psutil.process_iter():
|
||
|
with suppress(Exception):
|
||
|
if proc.cmdline() == self._live_server.command:
|
||
|
os.system(f'pkill -f {self._live_server.main}')
|
||
|
|
||
|
Console.write_line('Restart\n')
|
||
|
while self._live_server.is_alive():
|
||
|
time.sleep(1)
|
||
|
|
||
|
self._live_server = LiveServerThread(self._src_dir)
|
||
|
self._live_server.start()
|
||
|
|
||
|
self._start_observer()
|
||
|
|
||
|
def on_modified(self, event):
|
||
|
if event.is_directory:
|
||
|
return None
|
||
|
|
||
|
# Event is modified, you can process it now
|
||
|
if str(event.src_path).endswith('.py'):
|
||
|
self._observer.stop()
|
||
|
self._restart()
|
||
|
|
||
|
def start(self):
|
||
|
Console.write_line('** CPL live development server is running **')
|
||
|
self._start_observer()
|
||
|
self._live_server.start()
|
||
|
|
||
|
Console.close()
|
||
|
Console.write('\n')
|