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