X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=src%2FPVE%2FCLIHandler.pm;h=9a2f8418e21cd51d748e2fa08451181575af4c2b;hp=149353797238ef481e135fafb9e65b51259a21bf;hb=408976c6f711f82895b105733b914660384160df;hpb=e4a1d8e240c18f363f9f91003d01ee07be24ee21 diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm index 1493537..9a2f841 100644 --- a/src/PVE/CLIHandler.pm +++ b/src/PVE/CLIHandler.pm @@ -8,6 +8,7 @@ use PVE::SafeSyslog; use PVE::Exception qw(raise raise_param_exc); use PVE::RESTHandler; use PVE::PodParser; +use PVE::INotify; use base qw(PVE::RESTHandler); @@ -110,6 +111,46 @@ __PACKAGE__->register_method ({ }}); +sub print_simple_asciidoc_synopsys { + my ($class, $name, $arg_param, $uri_param) = @_; + + die "not initialized" if !$cli_handler_class; + + my $pwcallback = $cli_handler_class->can('read_password'); + + my $synopsis = "*${name}* `help`\n\n"; + + $synopsis .= $class->usage_str($name, $name, $arg_param, $uri_param, 'asciidoc', $pwcallback); + + return $synopsis; +} + +sub print_asciidoc_synopsys { + + die "not initialized" if !($cmddef && $exename && $cli_handler_class); + + my $pwcallback = $cli_handler_class->can('read_password'); + + my $synopsis = ""; + + $synopsis .= "*${exename}* ` [ARGS] [OPTIONS]`\n\n"; + + my $oldclass; + foreach my $cmd (sort keys %$cmddef) { + my ($class, $name, $arg_param, $uri_param) = @{$cmddef->{$cmd}}; + my $str = $class->usage_str($name, "$exename $cmd", $arg_param, + $uri_param, 'asciidoc', $pwcallback); + $synopsis .= "\n" if $oldclass && $oldclass ne $class; + + $synopsis .= "$str\n\n"; + $oldclass = $class; + } + + $synopsis .= "\n"; + + return $synopsis; +} + sub print_simple_pod_manpage { my ($podfn, $class, $name, $arg_param, $uri_param) = @_; @@ -389,8 +430,29 @@ sub generate_pod_manpage { } } +sub generate_asciidoc_synopsys { + my ($class) = @_; + + $cli_handler_class = $class; + + $exename = &$get_exe_name($class); + + no strict 'refs'; + my $def = ${"${class}::cmddef"}; + + if (ref($def) eq 'ARRAY') { + print_simple_asciidoc_synopsys(@$def); + } else { + $cmddef = $def; + + $cmddef->{help} = [ __PACKAGE__, 'help', ['cmd'] ]; + + print_asciidoc_synopsys(); + } +} + my $handle_cmd = sub { - my ($def, $cmdname, $cmd, $args, $pwcallback, $podfn, $preparefunc) = @_; + my ($def, $cmdname, $cmd, $args, $pwcallback, $podfn, $preparefunc, $stringfilemap) = @_; $cmddef = $def; $exename = $cmdname; @@ -424,13 +486,13 @@ my $handle_cmd = sub { } my $prefix = "$exename $cmd"; - my $res = $class->cli_handler($prefix, $name, \@ARGV, $arg_param, $uri_param, $pwcallback); + my $res = $class->cli_handler($prefix, $name, \@ARGV, $arg_param, $uri_param, $pwcallback, $stringfilemap); &$outsub($res) if $outsub; }; my $handle_simple_cmd = sub { - my ($def, $args, $pwcallback, $podfn, $preparefunc) = @_; + my ($def, $args, $pwcallback, $podfn, $preparefunc, $stringfilemap) = @_; my ($class, $name, $arg_param, $uri_param, $outsub) = @{$def}; die "no class specified" if !$class; @@ -457,7 +519,7 @@ my $handle_simple_cmd = sub { &$preparefunc() if $preparefunc; - my $res = $class->cli_handler($name, $name, \@ARGV, $arg_param, $uri_param, $pwcallback); + my $res = $class->cli_handler($name, $name, \@ARGV, $arg_param, $uri_param, $pwcallback, $stringfilemap); &$outsub($res) if $outsub; }; @@ -491,6 +553,7 @@ sub run_cli_handler { my $no_init = $params{no_init}; my $pwcallback = $class->can('read_password'); + my $stringfilemap = $class->can('string_param_file_mapping'); $exename = &$get_exe_name($class); @@ -511,11 +574,11 @@ sub run_cli_handler { my $def = ${"${class}::cmddef"}; if (ref($def) eq 'ARRAY') { - &$handle_simple_cmd($def, \@ARGV, $pwcallback, $podfn, $preparefunc); + &$handle_simple_cmd($def, \@ARGV, $pwcallback, $podfn, $preparefunc, $stringfilemap); } else { $cmddef = $def; my $cmd = shift @ARGV; - &$handle_cmd($cmddef, $exename, $cmd, \@ARGV, $pwcallback, $podfn, $preparefunc); + &$handle_cmd($cmddef, $exename, $cmd, \@ARGV, $pwcallback, $podfn, $preparefunc, $stringfilemap); } exit 0;