mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
146 lines
5.5 KiB
Python
146 lines
5.5 KiB
Python
# ========================================================================== #
|
|
# #
|
|
# KVMD - The main Pi-KVM daemon. #
|
|
# #
|
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
|
# #
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
# This program is distributed in the hope that it will be useful, #
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
# GNU General Public License for more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License #
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
|
# #
|
|
# ========================================================================== #
|
|
|
|
|
|
import json
|
|
|
|
from typing import Tuple
|
|
from typing import List
|
|
from typing import Dict
|
|
from typing import Callable
|
|
from typing import Optional
|
|
from typing import Any
|
|
|
|
|
|
# =====
|
|
def build_raw_from_options(options: List[str]) -> Dict[str, Any]:
|
|
raw: Dict[str, Any] = {}
|
|
for option in options:
|
|
(key, value) = (option.split("=", 1) + [None])[:2] # type: ignore
|
|
if len(key.strip()) == 0:
|
|
raise ValueError("Empty option key (required 'key=value' instead of '{}')".format(option))
|
|
if value is None:
|
|
raise ValueError("No value for key '{}'".format(key))
|
|
|
|
section = raw
|
|
subs = list(map(str.strip, key.split("/")))
|
|
for sub in subs[:-1]:
|
|
section.setdefault(sub, {})
|
|
section = section[sub]
|
|
section[subs[-1]] = _parse_value(value)
|
|
return raw
|
|
|
|
|
|
def _parse_value(value: str) -> Any:
|
|
value = value.strip()
|
|
if (
|
|
not value.isdigit()
|
|
and value not in ["true", "false", "null"]
|
|
and not value.startswith(("{", "[", "\""))
|
|
):
|
|
value = "\"{}\"".format(value)
|
|
return json.loads(value)
|
|
|
|
|
|
# =====
|
|
class Section(dict):
|
|
def __init__(self) -> None:
|
|
dict.__init__(self)
|
|
self.__meta: Dict[str, Dict[str, Any]] = {}
|
|
|
|
def _unpack_renamed(self) -> Dict[str, Any]:
|
|
unpacked: Dict[str, Any] = {}
|
|
for (key, value) in self.items():
|
|
assert not isinstance(value, Section), (key, value)
|
|
key = (self.__meta[key]["rename"] or key)
|
|
unpacked[key] = value
|
|
return unpacked
|
|
|
|
def _set_meta(self, key: str, default: Any, help: str, rename: str) -> None: # pylint: disable=redefined-builtin
|
|
self.__meta[key] = {
|
|
"default": default,
|
|
"help": help,
|
|
"rename": rename,
|
|
}
|
|
|
|
def _get_default(self, key: str) -> Any:
|
|
return self.__meta[key]["default"]
|
|
|
|
def _get_help(self, key: str) -> str:
|
|
return self.__meta[key]["help"]
|
|
|
|
def __getattribute__(self, key: str) -> Any:
|
|
if key in self:
|
|
return self[key]
|
|
else: # For pickling
|
|
return dict.__getattribute__(self, key)
|
|
|
|
|
|
class Option:
|
|
__type = type
|
|
|
|
def __init__(
|
|
self,
|
|
default: Any,
|
|
help: str="", # pylint: disable=redefined-builtin
|
|
type: Optional[Callable[[Any], Any]]=None, # pylint: disable=redefined-builtin
|
|
rename: str="",
|
|
) -> None:
|
|
|
|
self.default = default
|
|
self.help = help
|
|
self.type: Callable[[Any], Any] = (type or (self.__type(default) if default is not None else str)) # type: ignore
|
|
self.rename = rename
|
|
|
|
def __repr__(self) -> str:
|
|
return "<Option(default={self.default}, type={self.type}, help={self.help}, rename={self.rename})>".format(self=self)
|
|
|
|
|
|
# =====
|
|
def make_config(raw: Dict[str, Any], scheme: Dict[str, Any], _keys: Tuple[str, ...]=()) -> Section:
|
|
if not isinstance(raw, dict):
|
|
raise ValueError("The node '{}' must be a dictionary".format("/".join(_keys) or "/"))
|
|
|
|
config = Section()
|
|
for (key, option) in scheme.items():
|
|
full_key = _keys + (key,)
|
|
full_name = "/".join(full_key)
|
|
|
|
if isinstance(option, Option):
|
|
value = raw.get(key, option.default)
|
|
try:
|
|
value = option.type(value)
|
|
except Exception:
|
|
raise ValueError("Invalid value '{value}' for key '{key}'".format(key=full_name, value=value))
|
|
config[key] = value
|
|
config._set_meta( # pylint: disable=protected-access
|
|
key=key,
|
|
default=option.default,
|
|
help=option.help,
|
|
rename=option.rename,
|
|
)
|
|
elif isinstance(option, dict):
|
|
config[key] = make_config(raw.get(key, {}), option, full_key)
|
|
else:
|
|
raise RuntimeError("Incorrect scheme definition for key '{}':"
|
|
" the value is {}, not dict or Option()".format(full_name, type(option)))
|
|
return config
|