#!usr/bin/env python3# manager.py -- Manager CLI for ARL execution with palaestrAI# Copyright (C) 2020 OFFIS, All rights reserved.## This library is free software; you can redistribute it and/or# modify it under the terms of the GNU Lesser General Public# License as published by the Free Software Foundation; either# version 2.1 of the License, or (at your option) any later version.## This library is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU# Lesser General Public License for more details.## You should have received a copy of the GNU Lesser General Public# License along with this library.importloggingimportlogging.configimportsysimportclickfromclick_aliasesimportClickAliasedGroupfromimportlib.metadataimportversionimportsetproctitleimportpalaestrai.core.runtime_configfrompalaestrai.cliimportclient_localfrompalaestrai.coreimportRuntimeConfig@click.group(cls=ClickAliasedGroup)@click.option("-c","--config",type=click.Path(),help="Supply custom runtime configuration file. ""(Default search path: %s)"%(palaestrai.core.runtime_config._RuntimeConfig.CONFIG_FILE_PATHS),)@click.option("--verbose","-v",count=True,help="Increases the program verbosity, can be given numerous times: ""-v prints also INFO messages, and -vv emits DEBUG output.""output",)@click.version_option(version("palaestrai"))defcli(config=None,verbose=0):setproctitle.setproctitle(" ".join(sys.argv))ifconfig:try:withopen(config,"r")asfp:RuntimeConfig().reset()# Make sure we start fresh!RuntimeConfig().load(fp)exceptOSErrorase:click.echo("ERROR: Could not load config from %s: %s."%(config,e),file=sys.stderr,)exit(1)else:try:RuntimeConfig().load()exceptFileNotFoundErrorase:click.echo("Please create a runtime config. %s.\n""Will continue with built-in defaults."%e,file=sys.stderr,)init_logger(verbose)
[docs]definit_logger(verbose):"""Init logger with config from either RuntimeConfig or a default."""levels=[logging.WARNING,logging.INFO,logging.DEBUG]log_level=levels[verboseifverbose<len(levels)elselen(levels)-1]try:logging.config.dictConfig(RuntimeConfig().logging)logging.debug("Initialized logging from RuntimeConfig(%s)",RuntimeConfig())except(KeyError,ValueError)ase:logging.basicConfig(level=log_level)logging.warning("Could not load logging config (%s), continuing with defaults",e,)ifverbose!=0:fornameinlogging.root.manager.loggerDict:logging.getLogger(name).setLevel(log_level)RuntimeConfig().logging["loggers"].update({name:{"level":str(logging._levelToName[log_level])}})