mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-17 01:49:15 +08:00
command_parser.py: - Add explicit type annotations for tokens list and return type config_number.py: - Handle float to int conversion explicitly - Simplify type checking logic file_extract.py: - Add type annotations and improve file extraction handling io.py: - Add type annotations for I/O operations log_pipe.py: - Implement TextIO interface for better compatibility - Add comprehensive type annotations - Add callback support and identifier logging session_waiter.py: - Clean up type annotations
64 lines
1.6 KiB
Python
64 lines
1.6 KiB
Python
from astrbot.core import logger
|
|
|
|
|
|
def coerce_int_config(
|
|
value: object,
|
|
*,
|
|
default: int,
|
|
min_value: int | None = None,
|
|
field_name: str | None = None,
|
|
source: str = "config",
|
|
warn: bool = True,
|
|
) -> int:
|
|
label = f"'{field_name}'" if field_name else "value"
|
|
|
|
if isinstance(value, bool):
|
|
if warn:
|
|
logger.warning(
|
|
"%s %s should be numeric, got boolean. Fallback to %s.",
|
|
source,
|
|
label,
|
|
default,
|
|
)
|
|
parsed = default
|
|
elif isinstance(value, int):
|
|
parsed = value
|
|
elif isinstance(value, str):
|
|
try:
|
|
parsed = int(value.strip())
|
|
except ValueError:
|
|
if warn:
|
|
logger.warning(
|
|
"%s %s value '%s' is not numeric. Fallback to %s.",
|
|
source,
|
|
label,
|
|
value,
|
|
default,
|
|
)
|
|
parsed = default
|
|
elif isinstance(value, float):
|
|
parsed = int(value)
|
|
else:
|
|
if warn:
|
|
logger.warning(
|
|
"%s %s has unsupported type %s. Fallback to %s.",
|
|
source,
|
|
label,
|
|
type(value).__name__,
|
|
default,
|
|
)
|
|
parsed = default
|
|
|
|
if min_value is not None and parsed < min_value:
|
|
if warn:
|
|
logger.warning(
|
|
"%s %s=%s is below minimum %s. Fallback to %s.",
|
|
source,
|
|
label,
|
|
parsed,
|
|
min_value,
|
|
min_value,
|
|
)
|
|
parsed = min_value
|
|
return parsed
|