From 10e77997aabe785d0dc604a482b1bede33d0d7f1 Mon Sep 17 00:00:00 2001 From: piborra Date: Wed, 14 Feb 2024 16:46:30 +0100 Subject: [PATCH] Changes to ease the integration with sphinx-argparse --- wfexs_backend/__main__.py | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/wfexs_backend/__main__.py b/wfexs_backend/__main__.py index dac8cab4..44685399 100644 --- a/wfexs_backend/__main__.py +++ b/wfexs_backend/__main__.py @@ -42,6 +42,7 @@ from typing import ( Callable, Sequence, + Tuple, Type, Union, ) @@ -881,8 +882,11 @@ def processExportCommand( return retval +def get_wfexs_argparse() -> "argparse.ArgumentParser": + retval, _ = _get_wfexs_argparse_internal(docgen=True) + return retval -def main() -> None: +def _get_wfexs_argparse_internal(docgen: "bool") -> "Tuple[argparse.ArgumentParser, str]": verstr = get_WfExS_version_str() defaultLocalConfigFilename = os.environ.get("WFEXS_CONFIG_FILE") @@ -894,6 +898,9 @@ def main() -> None: defaultLocalConfigFilename = os.path.join( os.getcwd(), defaultLocalConfigFilename ) + + rawpre = "" if docgen else "raw|" + ap = argparse.ArgumentParser( description="WfExS (workflow execution service) backend " + verstr, formatter_class=argparse.ArgumentDefaultsHelpFormatter, @@ -958,7 +965,7 @@ def main() -> None: ap_c = genParserSub(sp, WfExS_Commands.Cache) ap_c.add_argument( "cache_command", - help="raw|Cache command to perform\n\n" + help=f"{rawpre}Cache command to perform\n\n" + "\n".join( map(lambda c: f"{c.value:<12}{c.description}", WfExS_Cache_Commands) # type: ignore[attr-defined] ), @@ -989,7 +996,7 @@ def main() -> None: ) ap_c.add_argument( "cache_type", - help="raw|Cache type to perform the cache command\n\n" + help=f"{rawpre}Cache type to perform the cache command\n\n" + "\n".join(map(lambda c: f"{c.value:<12}{c.description}", WfExS_CacheType)), # type: ignore[attr-defined] type=cast("Callable_WfExS_CacheType", WfExS_CacheType.argtype), choices=WfExS_CacheType, @@ -1001,7 +1008,7 @@ def main() -> None: ap_w = genParserSub(sp, WfExS_Commands.StagedWorkDir, crateParams=True) ap_w.add_argument( "staged_workdir_command", - help="raw|Staged working directory command to perform\n\n" + help=f"{rawpre}Staged working directory command to perform\n\n" + "\n".join( map( lambda c: f"{c.value:<16}{c.description}", WfExS_Staged_WorkDir_Commands # type: ignore[attr-defined] @@ -1032,7 +1039,7 @@ def main() -> None: ) ap_expt.add_argument( "export_contents_command", - help="raw|Export operations from staged working directory to perform\n\n" + help=f"{rawpre}Export operations from staged working directory to perform\n\n" + "\n".join( map(lambda c: f"{c.value:<16}{c.description}", WfExS_Export_Commands) # type: ignore[attr-defined] ), @@ -1073,6 +1080,11 @@ def main() -> None: sp, WfExS_Commands.ExportCrate, postStageParams=True, crateParams=True ) + return ap, defaultLocalConfigFilename + +def main() -> None: + ap, defaultLocalConfigFilename = _get_wfexs_argparse_internal(docgen=False) + args = ap.parse_args() fullHelp = args.fullHelp