87 lines
2.5 KiB
Python
87 lines
2.5 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):
|
|
"""
|
|
Service for the live development server
|
|
:param runtime:
|
|
:param build_settings:
|
|
"""
|
|
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._ls_thread = LiveServerThread(self._src_dir)
|
|
self._observer = None
|
|
|
|
def _start_observer(self):
|
|
"""
|
|
Starts the file changes observer
|
|
:return:
|
|
"""
|
|
self._observer = Observer()
|
|
self._observer.schedule(self, path=self._src_dir, recursive=True)
|
|
self._observer.start()
|
|
|
|
def _restart(self):
|
|
"""
|
|
Restarts the CPL project
|
|
:return:
|
|
"""
|
|
for proc in psutil.process_iter():
|
|
with suppress(Exception):
|
|
if proc.cmdline() == self._ls_thread.command:
|
|
os.system(f'pkill -f {self._ls_thread.main}')
|
|
|
|
Console.write_line('Restart\n')
|
|
while self._ls_thread.is_alive():
|
|
time.sleep(1)
|
|
|
|
self._ls_thread = LiveServerThread(self._src_dir)
|
|
self._ls_thread.start()
|
|
|
|
self._start_observer()
|
|
|
|
def on_modified(self, event):
|
|
"""
|
|
Triggers when source file is modified
|
|
:param event:
|
|
:return:
|
|
"""
|
|
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):
|
|
"""
|
|
Starts the CPL live development server
|
|
:return:
|
|
"""
|
|
Console.write_line('** CPL live development server is running **')
|
|
self._start_observer()
|
|
self._ls_thread.start()
|
|
|
|
Console.close()
|
|
Console.write('\n')
|