lib-not-dr/lib_not_dr/command/nodes.py

131 lines
4.1 KiB
Python
Raw Normal View History

2023-07-11 14:02:05 +08:00
# -------------------------------
# Difficult Rocket
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
import re
2023-07-11 18:19:00 +08:00
from typing import Callable, List, Optional, Union, Set
2023-07-11 14:24:33 +08:00
2023-07-11 18:19:00 +08:00
from .data import Option, Argument, Flag, Parsed
2023-07-11 14:24:33 +08:00
from .descriptor import CallBackDescriptor
2023-07-11 14:02:05 +08:00
try:
from typing import Self
except ImportError:
from typing import TypeVar
2023-07-11 18:19:00 +08:00
Self = TypeVar("Self") # NOQA
2023-07-11 14:02:05 +08:00
2023-07-11 18:19:00 +08:00
from .exception import IllegalName
2023-07-11 14:02:05 +08:00
CallBack = Union[Callable[[str], None], str] # Equals to `Callable[[str], None] | str`
# 可调用对象或字符串作为回调
# A callable or str as callback
ParseArgFunc = Callable[[str], Optional[type]]
# 解析参数的函数,返回值为 None 时表示解析失败
# function to parse argument, return None when failed
EMPTY_WORDS = re.compile(r"\s", re.I)
def check_name(name: Union[str, List[str]]) -> None:
"""
Check the name or shortcuts of argument(s) or flag(s).
The name must not be empty str, and must not contains \\t or \\n or \\f or \\r.
If that not satisfy the requirements, it will raise exception `IllegalArgumentName`.
检查 参数或标记 名称或快捷方式 是否符合要求
名称必须是非空的字符串且不能包含 \\t \\n \\f \\r
如果不符合要求将会抛出 `IllegalArgumentName` 异常
:param name: arguments
:return: None
"""
if isinstance(name, str) and EMPTY_WORDS.search(name):
2023-07-11 18:19:00 +08:00
raise IllegalName("The name of argument must not contains empty words.")
2023-07-11 15:33:01 +08:00
elif isinstance(name, list) and all((not isinstance(i, str)) and EMPTY_WORDS.search(i) for i in name):
2023-07-11 18:19:00 +08:00
raise IllegalName("The name of shortcut must be 'str', and must not contains empty words.")
2023-07-11 14:02:05 +08:00
else:
raise TypeError("The type of name must be 'str' or 'list[str]'.")
class Literal:
2023-07-11 14:24:33 +08:00
_tip = CallBackDescriptor("_tip")
_func = CallBackDescriptor("_func")
_err_callback = CallBackDescriptor("_err_callback")
2023-07-11 14:02:05 +08:00
def __init__(self, name: str):
self.name: str = name
self.sub: List[Self] = []
2023-07-11 15:33:01 +08:00
self._tip: Optional[CallBack] = None
2023-07-11 14:02:05 +08:00
self._func: Optional[CallBack] = None
self._err_callback: Optional[CallBack] = None
2023-07-11 18:19:00 +08:00
self._opts: List[Option] = []
2023-07-11 15:33:01 +08:00
self._args: List[Argument] = []
2023-07-11 18:19:00 +08:00
self._flags: List[Flag] = []
2023-07-11 14:02:05 +08:00
def __call__(self, *nodes) -> Self:
self.sub += nodes
return self
2023-07-11 15:33:01 +08:00
def __repr__(self):
attrs = (k for k in self.__dict__ if not (k.startswith("__") and k.endswith("__")))
return f"{self.__class__.__name__}({', '.join(f'{k}={v!r}' for k in attrs if (v := self.__dict__[k]))})"
2023-07-11 18:19:00 +08:00
def arg(self, name: str, types: Optional[Set[type]] = None) -> Self:
Argument(name=name, types=types)
return self
def opt(
2023-07-11 14:02:05 +08:00
self,
name: str,
shortcuts: Optional[List[str]] = None,
optional: bool = True,
2023-07-11 18:19:00 +08:00
types: Optional[Set[type]] = None
2023-07-11 14:02:05 +08:00
) -> Self:
check_name(name)
if shortcuts is not None and len(shortcuts) != 0:
check_name(shortcuts)
2023-07-11 18:19:00 +08:00
self._opts.append(
Option(name=name, shortcuts=shortcuts, optional=optional, types=types)
)
2023-07-11 14:02:05 +08:00
return self
2023-07-11 18:19:00 +08:00
def opt_group(self, opts: List[Option], exclusive: bool = False):
2023-07-11 15:33:01 +08:00
...
2023-07-11 14:02:05 +08:00
def flag(self, name: str, shortcuts: Optional[List[str]] = None) -> Self:
check_name(name)
if shortcuts is not None and len(shortcuts) != 0:
check_name(shortcuts)
2023-07-11 18:19:00 +08:00
Flag(name=name, shortcuts=shortcuts)
2023-07-11 14:02:05 +08:00
...
return self
2023-07-11 18:19:00 +08:00
def flag_group(self, flags: List[Flag], exclusive: bool = False) -> Self:
2023-07-11 15:33:01 +08:00
...
2023-07-11 18:19:00 +08:00
return self
2023-07-11 15:33:01 +08:00
2023-07-11 14:02:05 +08:00
def error(self, callback: CallBack) -> Self:
self._err_callback = callback
return self
def run(self, func: CallBack) -> Self:
self._func = func
return self
def tip(self, tip: CallBack) -> Self:
self._tip = tip
return self
2023-07-11 15:33:01 +08:00
def parse(self, cmd: Union[str, List[str]]) -> Parsed:
2023-07-11 14:02:05 +08:00
...
def to_doc(self) -> str:
...
def builder(node: Literal) -> Literal:
2023-07-11 15:33:01 +08:00
...