from logging import getLogger from os import environ, path from typing import List from ..utils import get_boolean from .model_cache import ModelCache logger = getLogger(__name__) class ServerContext: def __init__( self, bundle_path: str = ".", model_path: str = ".", output_path: str = ".", params_path: str = ".", cors_origin: str = "*", num_workers: int = 1, any_platform: bool = True, block_platforms: List[str] = None, default_platform: str = None, image_format: str = "png", cache: ModelCache = None, cache_path: str = None, show_progress: bool = True, optimizations: List[str] = None, ) -> None: self.bundle_path = bundle_path self.model_path = model_path self.output_path = output_path self.params_path = params_path self.cors_origin = cors_origin self.num_workers = num_workers self.any_platform = any_platform self.block_platforms = block_platforms or [] self.default_platform = default_platform self.image_format = image_format self.cache = cache or ModelCache(num_workers) self.cache_path = cache_path or path.join(model_path, ".cache") self.show_progress = show_progress self.optimizations = optimizations or [] @classmethod def from_environ(cls): num_workers = int(environ.get("ONNX_WEB_NUM_WORKERS", 1)) cache_limit = int(environ.get("ONNX_WEB_CACHE_MODELS", num_workers + 2)) return cls( bundle_path=environ.get( "ONNX_WEB_BUNDLE_PATH", path.join("..", "gui", "out") ), model_path=environ.get("ONNX_WEB_MODEL_PATH", path.join("..", "models")), output_path=environ.get("ONNX_WEB_OUTPUT_PATH", path.join("..", "outputs")), params_path=environ.get("ONNX_WEB_PARAMS_PATH", "."), # others cors_origin=environ.get("ONNX_WEB_CORS_ORIGIN", "*").split(","), num_workers=num_workers, any_platform=get_boolean(environ, "ONNX_WEB_ANY_PLATFORM", True), block_platforms=environ.get("ONNX_WEB_BLOCK_PLATFORMS", "").split(","), default_platform=environ.get("ONNX_WEB_DEFAULT_PLATFORM", None), image_format=environ.get("ONNX_WEB_IMAGE_FORMAT", "png"), cache=ModelCache(limit=cache_limit), show_progress=get_boolean(environ, "ONNX_WEB_SHOW_PROGRESS", True), optimizations=environ.get("ONNX_WEB_OPTIMIZATIONS", "").split(","), )