]> git.proxmox.com Git - pve-common.git/blame - src/PVE/CLIHandler.pm
fix #2696: avoid 'undefined value' warning in 'pvesh help unknown'
[pve-common.git] / src / PVE / CLIHandler.pm
CommitLineData
e143e9d8
DM
1package PVE::CLIHandler;
2
3use strict;
4use warnings;
0dd5686a 5
340c9862 6use JSON;
0dd5686a 7use Scalar::Util qw(weaken);
e143e9d8 8
93ddd7bc 9use PVE::SafeSyslog;
e143e9d8 10use PVE::Exception qw(raise raise_param_exc);
e2f2c2d0 11use PVE::JSONSchema;
e143e9d8 12use PVE::RESTHandler;
0da61ab3 13use PVE::PTY;
881eb755 14use PVE::INotify;
f53ad23a 15use PVE::CLIFormatter;
e143e9d8
DM
16
17use base qw(PVE::RESTHandler);
18
c1059f7c
TL
19# $cmddef defines which (sub)commands are available in a specific CLI class.
20# A real command is always an array consisting of its class, name, array of
21# position fixed (required) parameters and hash of predefined parameters when
22# mapping a CLI command t o an API call. Optionally an output method can be
9da27228
DM
23# passed at the end, e.g., for formatting or transformation purpose, and
24# a schema of additional properties/arguments which are added to
25# the method schema and gets passed to the formatter.
c1059f7c
TL
26#
27# [class, name, fixed_params, API_pre-set params, output_sub ]
28#
29# In case of so called 'simple commands', the $cmddef can be also just an
30# array.
31#
32# Examples:
33# $cmddef = {
34# command => [ 'PVE::API2::Class', 'command', [ 'arg1', 'arg2' ], { node => $nodename } ],
35# do => {
36# this => [ 'PVE::API2::OtherClass', 'method', [ 'arg1' ], undef, sub {
37# my ($res) = @_;
38# print "$res\n";
39# }],
40# that => [ 'PVE::API2::OtherClass', 'subroutine' [] ],
41# },
42# dothat => { alias => 'do that' },
43# }
e143e9d8
DM
44my $cmddef;
45my $exename;
891b798d 46my $cli_handler_class;
e143e9d8 47
37f010e7
TL
48my $standard_mappings = {
49 'pve-password' => {
50 name => 'password',
51 desc => '<password>',
52 interactive => 1,
53 func => sub {
54 my ($value) = @_;
55 return $value if $value;
56 return PVE::PTY::get_confirmed_password();
57 },
58 },
59};
60sub get_standard_mapping {
61 my ($name, $base) = @_;
62
63 my $std = $standard_mappings->{$name};
64 die "no such standard mapping '$name'\n" if !$std;
65
66 my $res = $base || {};
67
68 foreach my $opt (keys %$std) {
69 next if defined($res->{$opt});
70 $res->{$opt} = $std->{$opt};
71 }
72
73 return $res;
74}
75
4842b651
DC
76my $gen_param_mapping_func = sub {
77 my ($cli_handler_class) = @_;
78
79 my $param_mapping = $cli_handler_class->can('param_mapping');
80
81 if (!$param_mapping) {
82 my $read_password = $cli_handler_class->can('read_password');
83 my $string_param_mapping = $cli_handler_class->can('string_param_file_mapping');
84
85 return $string_param_mapping if !$read_password;
86
87 $param_mapping = sub {
88 my ($name) = @_;
89
90 my $password_map = get_standard_mapping('pve-password', {
91 func => $read_password
92 });
93 my $map = $string_param_mapping ? $string_param_mapping->($name) : [];
94 return [@$map, $password_map];
95 };
96 }
97
98 return $param_mapping;
99};
100
d204696c
TL
101my $assert_initialized = sub {
102 my @caller = caller;
103 die "$caller[0]:$caller[2] - not initialized\n"
104 if !($cmddef && $exename && $cli_handler_class);
105};
106
918140af
TL
107my $abort = sub {
108 my ($reason, $cmd) = @_;
109 print_usage_short (\*STDERR, $reason, $cmd);
110 exit (-1);
111};
112
e143e9d8 113my $expand_command_name = sub {
6bd0783c 114 my ($def, $cmd, $enforce_exact) = @_;
e143e9d8 115
5082a17b
WB
116 return $cmd if exists $def->{$cmd}; # command is already complete
117
ea5a5084 118 my $is_alias = sub { ref($_[0]) eq 'HASH' && exists($_[0]->{alias}) };
0b796806
TL
119 my @expanded = grep { /^\Q$cmd\E/ && !$is_alias->($def->{$_}) } keys %$def;
120
6bd0783c
SI
121 return @expanded if !$enforce_exact;
122
5082a17b
WB
123 return $expanded[0] if scalar(@expanded) == 1; # enforce exact match
124
125 return undef;
e143e9d8
DM
126};
127
50b89b88
TL
128my $get_commands = sub {
129 my $def = shift // die "no command definition passed!";
130 return [ grep { !(ref($def->{$_}) eq 'HASH' && defined($def->{$_}->{alias})) } sort keys %$def ];
edf3d572
DM
131};
132
50b89b88
TL
133my $complete_command_names = sub { $get_commands->($cmddef) };
134
135# traverses the command definition using the $argv array, resolving one level
136# of aliases.
137# Returns the matching (sub) command and its definition, and argument array for
138# this (sub) command and a hash where we marked which (sub) commands got
139# expanded (e.g. st => status) while traversing
140sub resolve_cmd {
141 my ($argv, $is_alias) = @_;
142
143 my ($def, $cmd) = ($cmddef, $argv);
f9326469 144 my $cmdstr = $exename;
50b89b88
TL
145
146 if (ref($argv) eq 'ARRAY') {
5082a17b 147 my $expanded_last_arg;
50b89b88
TL
148 my $last_arg_id = scalar(@$argv) - 1;
149
150 for my $i (0..$last_arg_id) {
6bd0783c 151 $cmd = $expand_command_name->($def, $argv->[$i], 1);
5082a17b
WB
152 if (defined($cmd)) {
153 # If the argument was expanded (or was already complete) and it
154 # is the final argument, tell our caller about it:
155 $expanded_last_arg = $cmd if $i == $last_arg_id;
156 } else {
157 # Otherwise continue with the unexpanded version of it.
6bd0783c 158 $cmd = $argv->[$i];
5082a17b 159 }
f9326469 160 $cmdstr .= " $cmd";
6bd0783c
SI
161 if (!defined($def->{$cmd})) {
162 # $cmd still could be a valid prefix for bash_completion
163 # in that case keep $def as it is, else set it to undef
164 $def = undef if !$expand_command_name->($def, $cmd);
165 last;
166 }
50b89b88
TL
167 $def = $def->{$cmd};
168
169 if (ref($def) eq 'ARRAY') {
170 # could expand to a real command, rest of $argv are its arguments
171 my $cmd_args = [ @$argv[$i+1..$last_arg_id] ];
5082a17b 172 return ($cmd, $def, $cmd_args, $expanded_last_arg, $cmdstr);
50b89b88
TL
173 }
174
175 if (defined($def->{alias})) {
176 die "alias loop detected for '$cmd'" if $is_alias; # avoids cycles
177 # replace aliased (sub)command with the expanded aliased command
178 splice @$argv, $i, 1, split(/ +/, $def->{alias});
179 return resolve_cmd($argv, 1);
180 }
181 }
182 # got either a special command (bashcomplete, verifyapi) or an unknown
183 # cmd, just return first entry as cmd and the rest of $argv as cmd_arg
184 my $cmd_args = [ @$argv[1..$last_arg_id] ];
5082a17b 185 return ($argv->[0], $def, $cmd_args, $expanded_last_arg, $cmdstr);
50b89b88 186 }
f9326469 187 return ($cmd, $def, undef, undef, $cmdstr);
50b89b88
TL
188}
189
4c802a57
TL
190sub generate_usage_str {
191 my ($format, $cmd, $indent, $separator, $sortfunc) = @_;
192
193 $assert_initialized->();
194 die 'format required' if !$format;
195
196 $sortfunc //= sub { sort keys %{$_[0]} };
197 $separator //= '';
198 $indent //= '';
199
968bcf45 200 my $param_cb = $gen_param_mapping_func->($cli_handler_class);
4c802a57 201
f9326469 202 my ($subcmd, $def, undef, undef, $cmdstr) = resolve_cmd($cmd);
4c802a57 203
0dd5686a
WB
204 my $generate_weak;
205 $generate_weak = sub {
4c802a57
TL
206 my ($indent, $separator, $def, $prefix) = @_;
207
208 my $str = '';
209 if (ref($def) eq 'HASH') {
210 my $oldclass = undef;
211 foreach my $cmd (&$sortfunc($def)) {
212
213 if (ref($def->{$cmd}) eq 'ARRAY') {
9da27228 214 my ($class, $name, $arg_param, $fixed_param, undef, $formatter_properties) = @{$def->{$cmd}};
4c802a57
TL
215
216 $str .= $separator if $oldclass && $oldclass ne $class;
217 $str .= $indent;
218 $str .= $class->usage_str($name, "$prefix $cmd", $arg_param,
9da27228 219 $fixed_param, $format, $param_cb, $formatter_properties);
4c802a57 220 $oldclass = $class;
50b89b88
TL
221
222 } elsif (defined($def->{$cmd}->{alias}) && ($format eq 'asciidoc')) {
223
224 $str .= "*$prefix $cmd*\n\nAn alias for '$exename $def->{$cmd}->{alias}'.\n\n";
225
226 } else {
227 next if $def->{$cmd}->{alias};
228
0dd5686a 229 my $substr = $generate_weak->($indent, '', $def->{$cmd}, "$prefix $cmd");
50b89b88
TL
230 if ($substr) {
231 $substr .= $separator if $substr !~ /\Q$separator\E{2}/;
232 $str .= $substr;
233 }
4c802a57
TL
234 }
235
236 }
237 } else {
87e31b23 238 $abort->("unknown command '$cmd->[0]'") if !$def;
9da27228 239 my ($class, $name, $arg_param, $fixed_param, undef, $formatter_properties) = @$def;
4c802a57
TL
240
241 $str .= $indent;
9da27228 242 $str .= $class->usage_str($name, $prefix, $arg_param, $fixed_param, $format, $param_cb, $formatter_properties);
4c802a57
TL
243 }
244 return $str;
245 };
0dd5686a
WB
246 my $generate = $generate_weak;
247 weaken($generate_weak);
4c802a57 248
50b89b88 249 return $generate->($indent, $separator, $def, $cmdstr);
4c802a57
TL
250}
251
e143e9d8 252__PACKAGE__->register_method ({
3ef20687 253 name => 'help',
e143e9d8
DM
254 path => 'help',
255 method => 'GET',
256 description => "Get help about specified command.",
257 parameters => {
3ef20687 258 additionalProperties => 0,
e143e9d8 259 properties => {
6627ae09
TL
260 'extra-args' => PVE::JSONSchema::get_standard_option('extra-args', {
261 description => 'Shows help for a specific command',
edf3d572 262 completion => $complete_command_names,
6627ae09 263 }),
e143e9d8
DM
264 verbose => {
265 description => "Verbose output format.",
266 type => 'boolean',
267 optional => 1,
268 },
269 },
270 },
271 returns => { type => 'null' },
3ef20687 272
e143e9d8
DM
273 code => sub {
274 my ($param) = @_;
275
d204696c 276 $assert_initialized->();
e143e9d8 277
6627ae09 278 my $cmd = $param->{'extra-args'};
e143e9d8 279
6627ae09 280 my $verbose = defined($cmd) && $cmd;
e143e9d8
DM
281 $verbose = $param->{verbose} if defined($param->{verbose});
282
283 if (!$cmd) {
284 if ($verbose) {
285 print_usage_verbose();
3ef20687 286 } else {
e143e9d8
DM
287 print_usage_short(\*STDOUT);
288 }
289 return undef;
290 }
291
4c802a57
TL
292 my $str;
293 if ($verbose) {
294 $str = generate_usage_str('full', $cmd, '');
295 } else {
296 $str = generate_usage_str('short', $cmd, ' ' x 7);
297 }
298 $str =~ s/^\s+//;
e143e9d8 299
e143e9d8
DM
300 if ($verbose) {
301 print "$str\n";
302 } else {
303 print "USAGE: $str\n";
304 }
305
306 return undef;
307
308 }});
309
0a5a1eee 310sub print_simple_asciidoc_synopsis {
d204696c 311 $assert_initialized->();
fe3f1fde 312
4c802a57
TL
313 my $synopsis = "*${exename}* `help`\n\n";
314 $synopsis .= generate_usage_str('asciidoc');
fe3f1fde
DM
315
316 return $synopsis;
317}
318
0a5a1eee 319sub print_asciidoc_synopsis {
d204696c 320 $assert_initialized->();
fe3f1fde 321
fe3f1fde
DM
322 my $synopsis = "";
323
324 $synopsis .= "*${exename}* `<COMMAND> [ARGS] [OPTIONS]`\n\n";
325
4c802a57 326 $synopsis .= generate_usage_str('asciidoc');
fe3f1fde
DM
327
328 $synopsis .= "\n";
329
330 return $synopsis;
331}
332
e143e9d8 333sub print_usage_verbose {
d204696c 334 $assert_initialized->();
891b798d 335
e143e9d8
DM
336 print "USAGE: $exename <COMMAND> [ARGS] [OPTIONS]\n\n";
337
4c802a57 338 my $str = generate_usage_str('full');
e143e9d8 339
4c802a57 340 print "$str\n";
e143e9d8
DM
341}
342
343sub print_usage_short {
50b89b88 344 my ($fd, $msg, $cmd) = @_;
e143e9d8 345
d204696c 346 $assert_initialized->();
891b798d 347
e143e9d8 348 print $fd "ERROR: $msg\n" if $msg;
7b2ba123 349 print $fd "USAGE: $exename <COMMAND> [ARGS] [OPTIONS]\n\n";
e143e9d8 350
c701c565 351 print {$fd} generate_usage_str('short', $cmd, ' ' x 7, $cmd ? '' : "\n", sub {
4c802a57
TL
352 my ($h) = @_;
353 return sort {
354 if (ref($h->{$a}) eq 'ARRAY' && ref($h->{$b}) eq 'ARRAY') {
355 # $a and $b are both real commands order them by their class
356 return $h->{$a}->[0] cmp $h->{$b}->[0] || $a cmp $b;
50b89b88
TL
357 } elsif (ref($h->{$a}) eq 'ARRAY' xor ref($h->{$b}) eq 'ARRAY') {
358 # real command and subcommand mixed, put sub commands first
359 return ref($h->{$b}) eq 'ARRAY' ? -1 : 1;
4c802a57 360 } else {
50b89b88 361 # both are either from the same class or subcommands
4c802a57
TL
362 return $a cmp $b;
363 }
364 } keys %$h;
365 });
e143e9d8
DM
366}
367
d8053c08 368my $print_bash_completion = sub {
57e67ea3 369 my ($simple_cmd, $bash_command, $cur, $prev) = @_;
d8053c08
DM
370
371 my $debug = 0;
372
373 return if !(defined($cur) && defined($prev) && defined($bash_command));
374 return if !defined($ENV{COMP_LINE});
375 return if !defined($ENV{COMP_POINT});
376
377 my $cmdline = substr($ENV{COMP_LINE}, 0, $ENV{COMP_POINT});
378 print STDERR "\nCMDLINE: $ENV{COMP_LINE}\n" if $debug;
379
58d9e664 380 my $args = PVE::Tools::split_args($cmdline);
5fa768fc 381 shift @$args; # no need for program name
d8053c08
DM
382 my $print_result = sub {
383 foreach my $p (@_) {
2c48a665 384 print "$p\n" if $p =~ m/^\Q$cur\E/;
d8053c08
DM
385 }
386 };
387
5fa768fc
TL
388 my ($cmd, $def) = ($simple_cmd, $cmddef);
389 if (!$simple_cmd) {
0ed80698 390 ($cmd, $def, $args, my $expanded) = resolve_cmd($args);
50b89b88 391
5082a17b
WB
392 if (defined($expanded) && $prev ne $expanded) {
393 print "$expanded\n";
50b89b88
TL
394 return;
395 }
5082a17b
WB
396
397 if (ref($def) eq 'HASH') {
398 &$print_result(@{$get_commands->($def)});
d8053c08
DM
399 return;
400 }
d8053c08 401 }
d8053c08
DM
402 return if !$def;
403
5fa768fc
TL
404 my $pos = scalar(@$args) - 1;
405 $pos += 1 if $cmdline =~ m/\s+$/;
406 print STDERR "pos: $pos\n" if $debug;
407 return if $pos < 0;
d8053c08
DM
408
409 my $skip_param = {};
410
9da27228 411 my ($class, $name, $arg_param, $uri_param, undef, $formatter_properties) = @$def;
d8053c08
DM
412 $arg_param //= [];
413 $uri_param //= {};
414
d90a2fd0
DM
415 $arg_param = [ $arg_param ] if !ref($arg_param);
416
d8053c08
DM
417 map { $skip_param->{$_} = 1; } @$arg_param;
418 map { $skip_param->{$_} = 1; } keys %$uri_param;
419
d8053c08
DM
420 my $info = $class->map_method_by_name($name);
421
9da27228
DM
422 my $prop = { %{$info->{parameters}->{properties}} }; # copy
423 $prop = { %$prop, %$formatter_properties } if $formatter_properties;
d8053c08
DM
424
425 my $print_parameter_completion = sub {
426 my ($pname) = @_;
427 my $d = $prop->{$pname};
428 if ($d->{completion}) {
429 my $vt = ref($d->{completion});
430 if ($vt eq 'CODE') {
58d9e664 431 my $res = $d->{completion}->($cmd, $pname, $cur, $args);
d8053c08
DM
432 &$print_result(@$res);
433 }
434 } elsif ($d->{type} eq 'boolean') {
435 &$print_result('0', '1');
436 } elsif ($d->{enum}) {
437 &$print_result(@{$d->{enum}});
438 }
439 };
440
441 # positional arguments
5fa768fc
TL
442 if ($pos < scalar(@$arg_param)) {
443 my $pname = $arg_param->[$pos];
d8053c08
DM
444 &$print_parameter_completion($pname);
445 return;
446 }
447
448 my @option_list = ();
449 foreach my $key (keys %$prop) {
450 next if $skip_param->{$key};
451 push @option_list, "--$key";
452 }
453
454 if ($cur =~ m/^-/) {
455 &$print_result(@option_list);
456 return;
457 }
458
459 if ($prev =~ m/^--?(.+)$/ && $prop->{$1}) {
460 my $pname = $1;
461 &$print_parameter_completion($pname);
462 return;
463 }
464
465 &$print_result(@option_list);
466};
467
1f130ba6
DM
468sub verify_api {
469 my ($class) = @_;
470
471 # simply verify all registered methods
472 PVE::RESTHandler::validate_method_schemas();
473}
474
8f3712f8
DM
475my $get_exe_name = sub {
476 my ($class) = @_;
3ef20687 477
8f3712f8
DM
478 my $name = $class;
479 $name =~ s/^.*:://;
480 $name =~ s/_/-/g;
481
482 return $name;
483};
484
c45707a0
DM
485sub generate_bash_completions {
486 my ($class) = @_;
487
488 # generate bash completion config
489
8f3712f8 490 $exename = &$get_exe_name($class);
c45707a0
DM
491
492 print <<__EOD__;
493# $exename bash completion
494
495# see http://tiswww.case.edu/php/chet/bash/FAQ
496# and __ltrim_colon_completions() in /usr/share/bash-completion/bash_completion
497# this modifies global var, but I found no better way
498COMP_WORDBREAKS=\${COMP_WORDBREAKS//:}
499
e4a1d8e2 500complete -o default -C '$exename bashcomplete' $exename
c45707a0
DM
501__EOD__
502}
503
ad2cc599
CE
504sub generate_zsh_completions {
505 my ($class) = @_;
506
507 # generate zsh completion config
508
509 $exename = &$get_exe_name($class);
510
511 print <<__EOD__;
512#compdef _$exename $exename
513
514function _$exename() {
515 local cwords line point cmd curr prev
516 cwords=\${#words[@]}
517 line=\$words
518 point=\${#line}
519 cmd=\${words[1]}
520 curr=\${words[cwords]}
521 prev=\${words[cwords-1]}
630fe0a7 522 compadd -- \$(COMP_CWORD="\$cwords" COMP_LINE="\$line" COMP_POINT="\$point" \\
ad2cc599
CE
523 $exename bashcomplete "\$cmd" "\$curr" "\$prev")
524}
525__EOD__
526}
527
fe3f1fde
DM
528sub generate_asciidoc_synopsys {
529 my ($class) = @_;
0a5a1eee
FG
530 $class->generate_asciidoc_synopsis();
531};
532
533sub generate_asciidoc_synopsis {
534 my ($class) = @_;
fe3f1fde
DM
535
536 $cli_handler_class = $class;
537
538 $exename = &$get_exe_name($class);
539
540 no strict 'refs';
541 my $def = ${"${class}::cmddef"};
57e67ea3 542 $cmddef = $def;
fe3f1fde
DM
543
544 if (ref($def) eq 'ARRAY') {
4c802a57 545 print_simple_asciidoc_synopsis();
fe3f1fde 546 } else {
fe3f1fde
DM
547 $cmddef->{help} = [ __PACKAGE__, 'help', ['cmd'] ];
548
0a5a1eee 549 print_asciidoc_synopsis();
fe3f1fde
DM
550 }
551}
552
7b7f99c9
DM
553# overwrite this if you want to run/setup things early
554sub setup_environment {
555 my ($class) = @_;
556
557 # do nothing by default
558}
559
891b798d 560my $handle_cmd = sub {
968bcf45 561 my ($args, $preparefunc, $param_cb) = @_;
e143e9d8 562
6627ae09 563 $cmddef->{help} = [ __PACKAGE__, 'help', ['extra-args'] ];
e143e9d8 564
f9326469 565 my ($cmd, $def, $cmd_args, undef, $cmd_str) = resolve_cmd($args);
7b7f99c9 566
918140af
TL
567 $abort->("no command specified") if !$cmd;
568
569 # call verifyapi before setup_environment(), don't execute any real code in
570 # this case
571 if ($cmd eq 'verifyapi') {
e143e9d8
DM
572 PVE::RESTHandler::validate_method_schemas();
573 return;
7b7f99c9
DM
574 }
575
576 $cli_handler_class->setup_environment();
577
578 if ($cmd eq 'bashcomplete') {
50b89b88 579 &$print_bash_completion(undef, @$cmd_args);
d8053c08 580 return;
e143e9d8
DM
581 }
582
50b89b88 583 # checked special commands, if def is still a hash we got an incomplete sub command
131f316b 584 $abort->("incomplete command '$cmd_str'", $args) if ref($def) eq 'HASH';
8e3e9929 585
50b89b88 586 &$preparefunc() if $preparefunc;
e143e9d8 587
9da27228 588 my ($class, $name, $arg_param, $uri_param, $outsub, $formatter_properties) = @{$def || []};
50b89b88 589 $abort->("unknown command '$cmd_str'") if !$class;
e143e9d8 590
9da27228
DM
591 my ($res, $formatter_params) = $class->cli_handler(
592 $cmd_str, $name, $cmd_args, $arg_param, $uri_param, $param_cb, $formatter_properties);
2026f4b5 593
a604bf22 594 if (defined $outsub) {
ec3cbded 595 my $result_schema = $class->map_method_by_name($name)->{returns};
9da27228 596 $outsub->($res, $result_schema, $formatter_params);
a604bf22 597 }
891b798d 598};
2026f4b5 599
891b798d 600my $handle_simple_cmd = sub {
968bcf45 601 my ($args, $preparefunc, $param_cb) = @_;
2026f4b5 602
9da27228 603 my ($class, $name, $arg_param, $uri_param, $outsub, $formatter_properties) = @{$cmddef};
2026f4b5
DM
604 die "no class specified" if !$class;
605
d8053c08 606 if (scalar(@$args) >= 1) {
2026f4b5
DM
607 if ($args->[0] eq 'help') {
608 my $str = "USAGE: $name help\n";
4c802a57 609 $str .= generate_usage_str('long');
2026f4b5
DM
610 print STDERR "$str\n\n";
611 return;
612 } elsif ($args->[0] eq 'verifyapi') {
613 PVE::RESTHandler::validate_method_schemas();
614 return;
2026f4b5 615 }
e143e9d8 616 }
2026f4b5 617
7b7f99c9
DM
618 $cli_handler_class->setup_environment();
619
620 if (scalar(@$args) >= 1) {
621 if ($args->[0] eq 'bashcomplete') {
622 shift @$args;
57e67ea3 623 &$print_bash_completion($name, @$args);
7b7f99c9
DM
624 return;
625 }
626 }
627
7fe1f565
DM
628 &$preparefunc() if $preparefunc;
629
9da27228
DM
630 my ($res, $formatter_params) = $class->cli_handler(
631 $name, $name, \@ARGV, $arg_param, $uri_param, $param_cb, $formatter_properties);
2026f4b5 632
a604bf22 633 if (defined $outsub) {
ec3cbded 634 my $result_schema = $class->map_method_by_name($name)->{returns};
9da27228 635 $outsub->($res, $result_schema, $formatter_params);
a604bf22 636 }
891b798d
DM
637};
638
891b798d
DM
639sub run_cli_handler {
640 my ($class, %params) = @_;
641
642 $cli_handler_class = $class;
643
644 $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
645
aa9b9af5 646 foreach my $key (keys %params) {
5ae87c41 647 next if $key eq 'prepare';
1042b82c
DM
648 next if $key eq 'no_init'; # not used anymore
649 next if $key eq 'no_rpcenv'; # not used anymore
aa9b9af5
DM
650 die "unknown parameter '$key'";
651 }
652
5ae87c41 653 my $preparefunc = $params{prepare};
891b798d 654
968bcf45 655 my $param_cb = $gen_param_mapping_func->($cli_handler_class);
891b798d
DM
656
657 $exename = &$get_exe_name($class);
658
57d44151
DM
659 my $logid = $ENV{PVE_LOG_ID} || $exename;
660 initlog($logid);
891b798d 661
891b798d 662 no strict 'refs';
57e67ea3 663 $cmddef = ${"${class}::cmddef"};
891b798d 664
57e67ea3 665 if (ref($cmddef) eq 'ARRAY') {
968bcf45 666 $handle_simple_cmd->(\@ARGV, $preparefunc, $param_cb);
891b798d 667 } else {
968bcf45 668 $handle_cmd->(\@ARGV, $preparefunc, $param_cb);
891b798d
DM
669 }
670
671 exit 0;
e143e9d8
DM
672}
673
6741;