freqtrade_origin/freqtrade/configuration/load_config.py

121 lines
3.8 KiB
Python
Raw Permalink Normal View History

2019-08-10 12:15:09 +00:00
"""
This module contain functions to load the configuration file
"""
2024-05-12 14:29:24 +00:00
2019-08-10 12:15:09 +00:00
import logging
import re
2019-08-10 12:15:09 +00:00
import sys
2022-04-07 18:13:52 +00:00
from copy import deepcopy
from pathlib import Path
from typing import Any
2019-08-10 12:15:09 +00:00
import rapidjson
2019-08-10 12:15:09 +00:00
2022-09-18 11:20:36 +00:00
from freqtrade.constants import MINIMAL_CONFIG, Config
2024-03-19 06:08:05 +00:00
from freqtrade.exceptions import ConfigurationError, OperationalException
2022-04-07 18:13:52 +00:00
from freqtrade.misc import deep_merge_dicts
2019-08-10 12:15:09 +00:00
2020-09-28 17:39:41 +00:00
2019-08-10 12:15:09 +00:00
logger = logging.getLogger(__name__)
CONFIG_PARSE_MODE = rapidjson.PM_COMMENTS | rapidjson.PM_TRAILING_COMMAS
def log_config_error_range(path: str, errmsg: str) -> str:
"""
Parses configuration file and prints range around error
"""
2024-05-12 14:29:24 +00:00
if path != "-":
offsetlist = re.findall(r"(?<=Parse\serror\sat\soffset\s)\d+", errmsg)
if offsetlist:
offset = int(offsetlist[0])
text = Path(path).read_text()
# Fetch an offset of 80 characters around the error line
2024-05-12 14:29:24 +00:00
subtext = text[offset - min(80, offset) : offset + 80]
segments = subtext.split("\n")
2020-03-23 06:54:27 +00:00
if len(segments) > 3:
# Remove first and last lines, to avoid odd truncations
2024-05-12 14:29:24 +00:00
return "\n".join(segments[1:-1])
2020-03-23 06:54:27 +00:00
else:
return subtext
2024-05-12 14:29:24 +00:00
return ""
def load_file(path: Path) -> dict[str, Any]:
2021-04-06 09:59:58 +00:00
try:
2024-05-12 14:29:24 +00:00
with path.open("r") as file:
2021-04-06 09:59:58 +00:00
config = rapidjson.load(file, parse_mode=CONFIG_PARSE_MODE)
except FileNotFoundError:
raise OperationalException(f'File "{path}" not found!') from None
2021-04-06 09:59:58 +00:00
return config
def load_config_file(path: str) -> dict[str, Any]:
2019-08-10 12:15:09 +00:00
"""
Loads a config file from the given path
:param path: path as str
:return: configuration as dictionary
"""
try:
# Read config from stdin if requested in the options
2024-05-12 14:29:24 +00:00
with Path(path).open() if path != "-" else sys.stdin as file:
config = rapidjson.load(file, parse_mode=CONFIG_PARSE_MODE)
2019-08-10 12:15:09 +00:00
except FileNotFoundError:
raise OperationalException(
f'Config file "{path}" not found!'
2024-05-12 14:29:24 +00:00
" Please create a config file or check whether it exists."
) from None
except rapidjson.JSONDecodeError as e:
err_range = log_config_error_range(path, str(e))
2024-03-19 06:08:05 +00:00
raise ConfigurationError(
2024-05-12 15:51:21 +00:00
f"{e}\nPlease verify the following segment of your configuration:\n{err_range}"
2024-05-12 14:29:24 +00:00
if err_range
else "Please verify your configuration file for syntax errors."
)
2019-08-10 12:15:09 +00:00
return config
2022-04-07 18:13:52 +00:00
2023-01-21 14:01:56 +00:00
def load_from_files(
files: list[str], base_path: Path | None = None, level: int = 0
) -> dict[str, Any]:
2022-04-07 18:29:03 +00:00
"""
Recursively load configuration files if specified.
Sub-files are assumed to be relative to the initial config.
"""
2022-09-18 11:20:36 +00:00
config: Config = {}
2022-04-07 18:29:03 +00:00
if level > 5:
2024-03-19 06:08:05 +00:00
raise ConfigurationError("Config loop detected.")
2022-04-07 18:13:52 +00:00
if not files:
return deepcopy(MINIMAL_CONFIG)
2022-04-08 15:26:51 +00:00
files_loaded = []
2022-04-07 18:13:52 +00:00
# We expect here a list of config filenames
2022-04-07 18:29:03 +00:00
for filename in files:
2024-05-12 14:29:24 +00:00
logger.info(f"Using config: {filename} ...")
if filename == "-":
2022-04-07 18:29:03 +00:00
# Immediately load stdin and return
return load_config_file(filename)
file = Path(filename)
if base_path:
# Prepend basepath to allow for relative assignments
file = base_path / file
config_tmp = load_config_file(str(file))
2024-05-12 14:29:24 +00:00
if "add_config_files" in config_tmp:
2022-04-08 15:36:50 +00:00
config_sub = load_from_files(
2024-05-12 14:29:24 +00:00
config_tmp["add_config_files"], file.resolve().parent, level + 1
)
files_loaded.extend(config_sub.get("config_files", []))
config_tmp = deep_merge_dicts(config_tmp, config_sub)
2022-04-07 18:29:03 +00:00
2022-04-08 15:26:51 +00:00
files_loaded.insert(0, str(file))
2022-04-07 18:29:03 +00:00
# Merge config options, overwriting prior values
config = deep_merge_dicts(config_tmp, config)
2022-04-07 18:13:52 +00:00
2024-05-12 14:29:24 +00:00
config["config_files"] = files_loaded
2022-04-07 18:13:52 +00:00
return config