[pve-devel] applied: [PATCH common v2 5/9] cli: factor out abort

Wolfgang Bumiller w.bumiller at proxmox.com
Fri Dec 29 12:33:22 CET 2017


applied

On Mon, Dec 18, 2017 at 10:21:39AM +0100, Thomas Lamprecht wrote:
> will be reused in later patches too
> 
> Signed-off-by: Thomas Lamprecht <t.lamprecht at proxmox.com>
> Reviewed-by: Dominik Csapak <d.csapak at proxmox.com>
> ---
>  src/PVE/CLIHandler.pm | 23 ++++++++++++-----------
>  1 file changed, 12 insertions(+), 11 deletions(-)
> 
> diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm
> index e5fe82f..061adb6 100644
> --- a/src/PVE/CLIHandler.pm
> +++ b/src/PVE/CLIHandler.pm
> @@ -20,6 +20,12 @@ my $assert_initialized = sub {
>  	if !($cmddef && $exename && $cli_handler_class);
>  };
>  
> +my $abort = sub {
> +    my ($reason, $cmd) = @_;
> +    print_usage_short (\*STDERR, $reason, $cmd);
> +    exit (-1);
> +};
> +
>  my $expand_command_name = sub {
>      my ($def, $cmd) = @_;
>  
> @@ -352,14 +358,13 @@ my $handle_cmd  = sub {
>  
>      $cmddef->{help} = [ __PACKAGE__, 'help', ['cmd'] ];
>  
> -    # call verifyapi before setup_environment(), because we do not want to
> -    # execute any real code in this case
>  
>      my $cmd = shift @$args;
> -    if (!$cmd) {
> -	print_usage_short (\*STDERR, "no command specified");
> -	exit (-1);
> -    } elsif ($cmd eq 'verifyapi') {
> +    $abort->("no command specified") if !$cmd;
> +
> +    # call verifyapi before setup_environment(), don't execute any real code in
> +    # this case
> +    if ($cmd eq 'verifyapi') {
>  	PVE::RESTHandler::validate_method_schemas();
>  	return;
>      }
> @@ -376,11 +381,7 @@ my $handle_cmd  = sub {
>      $cmd = &$expand_command_name($cmddef, $cmd);
>  
>      my ($class, $name, $arg_param, $uri_param, $outsub) = @{$cmddef->{$cmd} || []};
> -
> -    if (!$class) {
> -	print_usage_short (\*STDERR, "unknown command '$cmd'");
> -	exit (-1);
> -    }
> +    $abort->("unknown command '$cmd'") if !$class;
>  
>      my $prefix = "$exename $cmd";
>      my $res = $class->cli_handler($prefix, $name, \@ARGV, $arg_param, $uri_param, $pwcallback, $stringfilemap);
> -- 
> 2.11.0




More information about the pve-devel mailing list