| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # Copyright (C) 2025 AIDC-AI
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- # http://www.apache.org/licenses/LICENSE-2.0
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """
- Async helper functions for web UI
- """
- import asyncio
- import sys
- import tomllib
- from pathlib import Path
- from loguru import logger
- def run_async(coro):
- """Run async coroutine in sync context"""
- if sys.platform == "win32":
- # Streamlit/Tornado may switch the global asyncio policy to
- # WindowsSelectorEventLoopPolicy, which breaks subprocess-based
- # libraries such as Playwright on Windows. Use an explicit
- # Proactor loop here so this sync bridge does not depend on the
- # ambient global policy.
- loop = asyncio.ProactorEventLoop()
- try:
- return loop.run_until_complete(coro)
- finally:
- try:
- from pixelle_video.services.frame_html import HTMLFrameGenerator
- loop.run_until_complete(HTMLFrameGenerator.close_browser())
- except Exception as e:
- logger.debug(f"Failed to cleanup HTML frame browser before loop close: {e}")
- loop.close()
- return asyncio.run(coro)
- def get_project_version():
- """Get project version from pyproject.toml"""
- try:
- # Get project root (web parent directory)
- web_dir = Path(__file__).resolve().parent.parent
- project_root = web_dir.parent
- pyproject_path = project_root / "pyproject.toml"
-
- if pyproject_path.exists():
- with open(pyproject_path, "rb") as f:
- pyproject_data = tomllib.load(f)
- return pyproject_data.get("project", {}).get("version", "Unknown")
- except Exception as e:
- logger.warning(f"Failed to read version from pyproject.toml: {e}")
- return "Unknown"
|