pferd/PFERD/cli/parser.py

231 lines
6.7 KiB
Python
Raw Normal View History

2021-05-23 11:57:59 +02:00
import argparse
import configparser
from argparse import ArgumentTypeError
2021-05-23 11:57:59 +02:00
from pathlib import Path
from typing import Any, Callable, List, Optional, Sequence, Union
2021-05-23 11:57:59 +02:00
from ..output_dir import OnConflict, Redownload
2021-05-23 21:40:48 +02:00
from ..version import NAME, VERSION
2021-05-23 11:57:59 +02:00
2021-05-23 22:26:41 +02:00
class ParserLoadError(Exception):
pass
2021-05-23 22:26:41 +02:00
# TODO Replace with argparse version when updating to 3.9?
class BooleanOptionalAction(argparse.Action):
def __init__(
self,
option_strings: List[str],
dest: Any,
default: Any = None,
type: Any = None,
choices: Any = None,
required: Any = False,
help: Any = None,
metavar: Any = None,
):
if len(option_strings) != 1:
raise ValueError("There must be exactly one option string")
[self.name] = option_strings
if not self.name.startswith("--"):
raise ValueError(f"{self.name!r} doesn't start with '--'")
if self.name.startswith("--no-"):
raise ValueError(f"{self.name!r} starts with '--no-'")
options = [self.name, "--no-" + self.name[2:]]
super().__init__(
options,
dest,
nargs=0,
default=default,
type=type,
choices=choices,
required=required,
help=help,
metavar=metavar,
)
def __call__(
self,
parser: argparse.ArgumentParser,
namespace: argparse.Namespace,
values: Union[str, Sequence[Any], None],
option_string: Optional[str] = None,
) -> None:
if option_string and option_string in self.option_strings:
value = not option_string.startswith("--no-")
setattr(namespace, self.dest, value)
def format_usage(self) -> str:
return "--[no-]" + self.name[2:]
def show_value_error(inner: Callable[[str], Any]) -> Callable[[str], Any]:
"""
Some validation functions (like the from_string in our enums) raise a ValueError.
Argparse only pretty-prints ArgumentTypeErrors though, so we need to wrap our ValueErrors.
"""
def wrapper(input: str) -> Any:
try:
return inner(input)
except ValueError as e:
raise ArgumentTypeError(e)
return wrapper
2021-05-23 11:57:59 +02:00
CRAWLER_PARSER = argparse.ArgumentParser(add_help=False)
CRAWLER_PARSER_GROUP = CRAWLER_PARSER.add_argument_group(
title="general crawler arguments",
description="arguments common to all crawlers",
)
CRAWLER_PARSER_GROUP.add_argument(
2021-05-25 14:12:19 +02:00
"--redownload", "-r",
type=show_value_error(Redownload.from_string),
2021-05-23 11:57:59 +02:00
metavar="OPTION",
2021-05-25 14:12:19 +02:00
help="when to download a file that's already present locally"
2021-05-23 11:57:59 +02:00
)
CRAWLER_PARSER_GROUP.add_argument(
"--on-conflict",
type=show_value_error(OnConflict.from_string),
2021-05-23 11:57:59 +02:00
metavar="OPTION",
help="what to do when local and remote files or directories differ"
)
CRAWLER_PARSER_GROUP.add_argument(
2021-05-25 14:12:19 +02:00
"--transform", "-T",
2021-05-23 11:57:59 +02:00
action="append",
type=str,
metavar="RULE",
help="add a single transformation rule. Can be specified multiple times"
)
CRAWLER_PARSER_GROUP.add_argument(
2021-05-25 14:12:19 +02:00
"--tasks", "-n",
2021-05-23 11:57:59 +02:00
type=int,
metavar="N",
help="maximum number of concurrent tasks (crawling, downloading)"
)
CRAWLER_PARSER_GROUP.add_argument(
2021-05-25 14:12:19 +02:00
"--downloads", "-N",
2021-05-23 11:57:59 +02:00
type=int,
metavar="N",
help="maximum number of tasks that may download data at the same time"
)
CRAWLER_PARSER_GROUP.add_argument(
2021-05-25 14:12:19 +02:00
"--task-delay", "-d",
2021-05-23 11:57:59 +02:00
type=float,
metavar="SECONDS",
help="time the crawler should wait between subsequent tasks"
)
2021-05-25 14:12:19 +02:00
CRAWLER_PARSER_GROUP.add_argument(
"--windows-paths",
action=BooleanOptionalAction,
help="whether to repair invalid paths on windows"
)
2021-05-23 11:57:59 +02:00
def load_crawler(
args: argparse.Namespace,
section: configparser.SectionProxy,
) -> None:
if args.redownload is not None:
section["redownload"] = args.redownload.value
if args.on_conflict is not None:
section["on_conflict"] = args.on_conflict.value
if args.transform is not None:
section["transform"] = "\n" + "\n".join(args.transform)
2021-05-25 14:12:19 +02:00
if args.tasks is not None:
section["tasks"] = str(args.tasks)
if args.downloads is not None:
section["downloads"] = str(args.downloads)
if args.task_delay is not None:
section["task_delay"] = str(args.task_delay)
if args.windows_paths is not None:
section["windows_paths"] = "yes" if args.windows_paths else "no"
2021-05-23 11:57:59 +02:00
PARSER = argparse.ArgumentParser()
PARSER.set_defaults(command=None)
PARSER.add_argument(
"--version",
2021-05-23 21:40:48 +02:00
action="version",
2021-05-31 11:44:17 +02:00
version=f"{NAME} {VERSION} (https://github.com/Garmelon/PFERD)",
2021-05-23 11:57:59 +02:00
)
PARSER.add_argument(
"--config", "-c",
type=Path,
metavar="PATH",
help="custom config file"
)
PARSER.add_argument(
"--dump-config",
action="store_true",
help="dump current configuration to the default config path and exit"
)
PARSER.add_argument(
"--dump-config-to",
2021-05-23 11:57:59 +02:00
metavar="PATH",
help="dump current configuration to a file and exit."
" Use '-' as path to print to stdout instead"
2021-05-23 11:57:59 +02:00
)
2021-05-26 11:37:32 +02:00
PARSER.add_argument(
"--debug-transforms",
action="store_true",
help="apply transform rules to files of previous run"
)
2021-05-23 11:57:59 +02:00
PARSER.add_argument(
2021-05-23 19:05:56 +02:00
"--crawler", "-C",
2021-05-23 11:57:59 +02:00
action="append",
type=str,
metavar="NAME",
help="only execute a single crawler."
" Can be specified multiple times to execute multiple crawlers"
)
PARSER.add_argument(
"--working-dir",
type=Path,
metavar="PATH",
help="custom working directory"
)
PARSER.add_argument(
2021-05-23 22:26:41 +02:00
"--explain",
action=BooleanOptionalAction,
2021-05-23 11:57:59 +02:00
help="log and explain in detail what PFERD is doing"
)
2021-05-23 22:41:59 +02:00
PARSER.add_argument(
"--status",
action=BooleanOptionalAction,
help="print status updates while PFERD is crawling"
)
PARSER.add_argument(
"--report",
action=BooleanOptionalAction,
help="print a report of all local changes before exiting"
)
2021-05-24 13:10:19 +02:00
PARSER.add_argument(
"--share-cookies",
action=BooleanOptionalAction,
help="whether crawlers should share cookies where applicable"
)
2021-05-23 11:57:59 +02:00
def load_default_section(
args: argparse.Namespace,
parser: configparser.ConfigParser,
) -> None:
section = parser[parser.default_section]
if args.working_dir is not None:
section["working_dir"] = str(args.working_dir)
if args.explain is not None:
2021-05-24 13:10:19 +02:00
section["explain"] = "yes" if args.explain else "no"
2021-05-25 14:12:19 +02:00
if args.status is not None:
section["status"] = "yes" if args.status else "no"
if args.report is not None:
section["report"] = "yes" if args.report else "no"
2021-05-24 13:10:19 +02:00
if args.share_cookies is not None:
section["share_cookies"] = "yes" if args.share_cookies else "no"
2021-05-23 11:57:59 +02:00
SUBPARSERS = PARSER.add_subparsers(title="crawlers")