191 lines
6.2 KiB
Python
191 lines
6.2 KiB
Python
# Configuration Helper
|
|
#
|
|
# Copyright (C) 2020 Eric Callahan <arksine.code@gmail.com>
|
|
#
|
|
# This file may be distributed under the terms of the GNU GPLv3 license
|
|
|
|
from __future__ import annotations
|
|
import configparser
|
|
import os
|
|
import logging
|
|
from utils import SentinelClass
|
|
|
|
# Annotation imports
|
|
from typing import (
|
|
TYPE_CHECKING,
|
|
Any,
|
|
Callable,
|
|
Type,
|
|
IO,
|
|
TypeVar,
|
|
Union,
|
|
Dict,
|
|
List,
|
|
)
|
|
if TYPE_CHECKING:
|
|
from argparse import Namespace
|
|
from moonraker import Server
|
|
_T = TypeVar("_T")
|
|
ConfigVal = Union[None, int, float, bool, str]
|
|
|
|
SENTINEL = SentinelClass.get_instance()
|
|
|
|
class ConfigError(Exception):
|
|
pass
|
|
|
|
|
|
class ConfigHelper:
|
|
error = ConfigError
|
|
def __init__(self,
|
|
server: Server,
|
|
config: configparser.ConfigParser,
|
|
section: str,
|
|
orig_sects: List[str],
|
|
parsed: Dict[str, Dict[str, ConfigVal]] = {}
|
|
) -> None:
|
|
self.server = server
|
|
self.config = config
|
|
self.section = section
|
|
self.orig_sections = orig_sects
|
|
self.parsed = parsed
|
|
if self.section not in self.parsed:
|
|
self.parsed[self.section] = {}
|
|
self.sections = config.sections
|
|
self.has_section = config.has_section
|
|
|
|
def get_server(self) -> Server:
|
|
return self.server
|
|
|
|
def __getitem__(self, key: str) -> ConfigHelper:
|
|
return self.getsection(key)
|
|
|
|
def __contains__(self, key: str) -> bool:
|
|
return key in self.config
|
|
|
|
def get_name(self) -> str:
|
|
return self.section
|
|
|
|
def get_options(self) -> Dict[str, str]:
|
|
return dict(self.config[self.section])
|
|
|
|
def get_prefix_sections(self, prefix: str) -> List[str]:
|
|
return [s for s in self.sections() if s.startswith(prefix)]
|
|
|
|
def getsection(self, section: str) -> ConfigHelper:
|
|
if section not in self.config:
|
|
raise ConfigError(f"No section [{section}] in config")
|
|
return ConfigHelper(self.server, self.config, section,
|
|
self.orig_sections, self.parsed)
|
|
|
|
def _get_option(self,
|
|
func: Callable[..., Any],
|
|
option: str,
|
|
default: Union[SentinelClass, _T]
|
|
) -> _T:
|
|
try:
|
|
val = func(option, default)
|
|
except Exception:
|
|
raise ConfigError(
|
|
f"Error parsing option ({option}) from "
|
|
f"section [{self.section}]")
|
|
if isinstance(val, SentinelClass):
|
|
raise ConfigError(
|
|
f"No option found ({option}) in section [{self.section}]")
|
|
if self.section in self.orig_sections:
|
|
# Only track sections included in the original config
|
|
self.parsed[self.section][option] = val
|
|
return val
|
|
|
|
def get(self,
|
|
option: str,
|
|
default: Union[SentinelClass, _T] = SENTINEL
|
|
) -> Union[str, _T]:
|
|
return self._get_option(
|
|
self.config[self.section].get, option, default)
|
|
|
|
def getint(self,
|
|
option: str,
|
|
default: Union[SentinelClass, _T] = SENTINEL
|
|
) -> Union[int, _T]:
|
|
return self._get_option(
|
|
self.config[self.section].getint, option, default)
|
|
|
|
def getboolean(self,
|
|
option: str,
|
|
default: Union[SentinelClass, _T] = SENTINEL
|
|
) -> Union[bool, _T]:
|
|
return self._get_option(
|
|
self.config[self.section].getboolean, option, default)
|
|
|
|
def getfloat(self,
|
|
option: str,
|
|
default: Union[SentinelClass, _T] = SENTINEL
|
|
) -> Union[float, _T]:
|
|
return self._get_option(
|
|
self.config[self.section].getfloat, option, default)
|
|
|
|
def read_supplemental_config(self, file_name: str) -> None:
|
|
cfg_file_path = os.path.normpath(os.path.expanduser(file_name))
|
|
if not os.path.isfile(cfg_file_path):
|
|
raise ConfigError(
|
|
f"Configuration File Not Found: '{cfg_file_path}''")
|
|
try:
|
|
self.config.read(cfg_file_path)
|
|
except Exception:
|
|
raise ConfigError(f"Error Reading Config: '{cfg_file_path}'")
|
|
|
|
def write_config(self, file_obj: IO[str]) -> None:
|
|
self.config.write(file_obj)
|
|
|
|
def get_parsed_config(self) -> Dict[str, Dict[str, ConfigVal]]:
|
|
return dict(self.parsed)
|
|
|
|
def validate_config(self) -> None:
|
|
for sect in self.orig_sections:
|
|
if sect not in self.parsed:
|
|
logging.warn(
|
|
f"Invalid config section [{sect}] detected. In "
|
|
"the future this will result in a startup error")
|
|
continue
|
|
parsed_opts = self.parsed[sect]
|
|
for opt, val in self.config.items(sect):
|
|
if opt not in parsed_opts:
|
|
logging.warn(
|
|
f"Invalid option '{opt}' detected in section "
|
|
f"[{sect}]. In the future this will result in a "
|
|
"startup error.")
|
|
|
|
def get_configuration(server: Server,
|
|
system_args: Namespace
|
|
) -> ConfigHelper:
|
|
cfg_file_path: str = os.path.normpath(os.path.expanduser(
|
|
system_args.configfile))
|
|
if not os.path.isfile(cfg_file_path):
|
|
raise ConfigError(
|
|
f"Configuration File Not Found: '{cfg_file_path}''")
|
|
if not os.access(cfg_file_path, os.R_OK | os.W_OK):
|
|
raise ConfigError(
|
|
"Moonraker does not have Read/Write permission for "
|
|
f"config file at path '{cfg_file_path}'")
|
|
config = configparser.ConfigParser(interpolation=None)
|
|
try:
|
|
config.read(cfg_file_path)
|
|
except Exception as e:
|
|
raise ConfigError(f"Error Reading Config: '{cfg_file_path}'") from e
|
|
try:
|
|
server_cfg = config['server']
|
|
except KeyError:
|
|
raise ConfigError("No section [server] in config")
|
|
|
|
orig_sections = config.sections()
|
|
try:
|
|
orig_sections.remove("DEFAULT")
|
|
except Exception:
|
|
pass
|
|
|
|
config['system_args'] = {
|
|
'configfile': system_args.configfile,
|
|
'logfile': system_args.logfile,
|
|
'software_version': system_args.software_version}
|
|
return ConfigHelper(server, config, 'server', orig_sections)
|