48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
from pathlib import Path
|
|
from typing import Optional
|
|
|
|
import click
|
|
from libretime_shared.cli import cli_config_options, cli_logging_options
|
|
from libretime_shared.config import DEFAULT_ENV_PREFIX
|
|
from libretime_shared.logging import level_from_name, setup_logger
|
|
|
|
from .config import Config
|
|
from .message_listener import MessageListener
|
|
from .status_reporter import StatusReporter
|
|
|
|
VERSION = "1.0"
|
|
|
|
DEFAULT_RETRY_QUEUE_FILEPATH = Path("retry_queue")
|
|
|
|
|
|
@click.command()
|
|
@cli_logging_options()
|
|
@cli_config_options()
|
|
@click.option(
|
|
"--retry-queue-filepath",
|
|
envvar=f"{DEFAULT_ENV_PREFIX}_RETRY_QUEUE_FILEPATH",
|
|
type=click.Path(path_type=Path),
|
|
help="Path to the retry queue file.",
|
|
default=DEFAULT_RETRY_QUEUE_FILEPATH,
|
|
)
|
|
def cli(
|
|
log_level: str,
|
|
log_filepath: Optional[Path],
|
|
config_filepath: Optional[Path],
|
|
retry_queue_filepath: Path,
|
|
):
|
|
"""
|
|
Run analyzer.
|
|
"""
|
|
setup_logger(level_from_name(log_level), log_filepath)
|
|
config = Config(filepath=config_filepath)
|
|
|
|
# Start up the StatusReporter process
|
|
StatusReporter.start_thread(retry_queue_filepath)
|
|
|
|
# Start listening for RabbitMQ messages telling us about newly
|
|
# uploaded files. This blocks until we receive a shutdown signal.
|
|
_msg_listener = MessageListener(config.rabbitmq)
|
|
|
|
StatusReporter.stop_thread()
|