]> git.proxmox.com Git - pve-common.git/blame - src/PVE/CLIHandler.pm
Tools.pm: do not ignore "0" in split_list
[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);
24ccf353 193 $abort->("unknown command '$cmdstr'") if !defined($def) && ref($cmd) eq 'ARRAY';
4c802a57
TL
194
195 my $generate;
196 $generate = sub {
197 my ($indent, $separator, $def, $prefix) = @_;
198
199 my $str = '';
200 if (ref($def) eq 'HASH') {
201 my $oldclass = undef;
202 foreach my $cmd (&$sortfunc($def)) {
203
204 if (ref($def->{$cmd}) eq 'ARRAY') {
9da27228 205 my ($class, $name, $arg_param, $fixed_param, undef, $formatter_properties) = @{$def->{$cmd}};
4c802a57
TL
206
207 $str .= $separator if $oldclass && $oldclass ne $class;
208 $str .= $indent;
209 $str .= $class->usage_str($name, "$prefix $cmd", $arg_param,
9da27228 210 $fixed_param, $format, $param_cb, $formatter_properties);
4c802a57 211 $oldclass = $class;
50b89b88
TL
212
213 } elsif (defined($def->{$cmd}->{alias}) && ($format eq 'asciidoc')) {
214
215 $str .= "*$prefix $cmd*\n\nAn alias for '$exename $def->{$cmd}->{alias}'.\n\n";
216
217 } else {
218 next if $def->{$cmd}->{alias};
219
7b2ba123 220 my $substr = $generate->($indent, '', $def->{$cmd}, "$prefix $cmd");
50b89b88
TL
221 if ($substr) {
222 $substr .= $separator if $substr !~ /\Q$separator\E{2}/;
223 $str .= $substr;
224 }
4c802a57
TL
225 }
226
227 }
228 } else {
9da27228 229 my ($class, $name, $arg_param, $fixed_param, undef, $formatter_properties) = @$def;
4c802a57
TL
230 $abort->("unknown command '$cmd'") if !$class;
231
232 $str .= $indent;
9da27228 233 $str .= $class->usage_str($name, $prefix, $arg_param, $fixed_param, $format, $param_cb, $formatter_properties);
4c802a57
TL
234 }
235 return $str;
236 };
237
50b89b88 238 return $generate->($indent, $separator, $def, $cmdstr);
4c802a57
TL
239}
240
e143e9d8 241__PACKAGE__->register_method ({
3ef20687 242 name => 'help',
e143e9d8
DM
243 path => 'help',
244 method => 'GET',
245 description => "Get help about specified command.",
246 parameters => {
3ef20687 247 additionalProperties => 0,
e143e9d8 248 properties => {
6627ae09
TL
249 'extra-args' => PVE::JSONSchema::get_standard_option('extra-args', {
250 description => 'Shows help for a specific command',
edf3d572 251 completion => $complete_command_names,
6627ae09 252 }),
e143e9d8
DM
253 verbose => {
254 description => "Verbose output format.",
255 type => 'boolean',
256 optional => 1,
257 },
258 },
259 },
260 returns => { type => 'null' },
3ef20687 261
e143e9d8
DM
262 code => sub {
263 my ($param) = @_;
264
d204696c 265 $assert_initialized->();
e143e9d8 266
6627ae09 267 my $cmd = $param->{'extra-args'};
e143e9d8 268
6627ae09 269 my $verbose = defined($cmd) && $cmd;
e143e9d8
DM
270 $verbose = $param->{verbose} if defined($param->{verbose});
271
272 if (!$cmd) {
273 if ($verbose) {
274 print_usage_verbose();
3ef20687 275 } else {
e143e9d8
DM
276 print_usage_short(\*STDOUT);
277 }
278 return undef;
279 }
280
4c802a57
TL
281 my $str;
282 if ($verbose) {
283 $str = generate_usage_str('full', $cmd, '');
284 } else {
285 $str = generate_usage_str('short', $cmd, ' ' x 7);
286 }
287 $str =~ s/^\s+//;
e143e9d8 288
e143e9d8
DM
289 if ($verbose) {
290 print "$str\n";
291 } else {
292 print "USAGE: $str\n";
293 }
294
295 return undef;
296
297 }});
298
0a5a1eee 299sub print_simple_asciidoc_synopsis {
d204696c 300 $assert_initialized->();
fe3f1fde 301
4c802a57
TL
302 my $synopsis = "*${exename}* `help`\n\n";
303 $synopsis .= generate_usage_str('asciidoc');
fe3f1fde
DM
304
305 return $synopsis;
306}
307
0a5a1eee 308sub print_asciidoc_synopsis {
d204696c 309 $assert_initialized->();
fe3f1fde 310
fe3f1fde
DM
311 my $synopsis = "";
312
313 $synopsis .= "*${exename}* `<COMMAND> [ARGS] [OPTIONS]`\n\n";
314
4c802a57 315 $synopsis .= generate_usage_str('asciidoc');
fe3f1fde
DM
316
317 $synopsis .= "\n";
318
319 return $synopsis;
320}
321
e143e9d8 322sub print_usage_verbose {
d204696c 323 $assert_initialized->();
891b798d 324
e143e9d8
DM
325 print "USAGE: $exename <COMMAND> [ARGS] [OPTIONS]\n\n";
326
4c802a57 327 my $str = generate_usage_str('full');
e143e9d8 328
4c802a57 329 print "$str\n";
e143e9d8
DM
330}
331
332sub print_usage_short {
50b89b88 333 my ($fd, $msg, $cmd) = @_;
e143e9d8 334
d204696c 335 $assert_initialized->();
891b798d 336
e143e9d8 337 print $fd "ERROR: $msg\n" if $msg;
7b2ba123 338 print $fd "USAGE: $exename <COMMAND> [ARGS] [OPTIONS]\n\n";
e143e9d8 339
c701c565 340 print {$fd} generate_usage_str('short', $cmd, ' ' x 7, $cmd ? '' : "\n", sub {
4c802a57
TL
341 my ($h) = @_;
342 return sort {
343 if (ref($h->{$a}) eq 'ARRAY' && ref($h->{$b}) eq 'ARRAY') {
344 # $a and $b are both real commands order them by their class
345 return $h->{$a}->[0] cmp $h->{$b}->[0] || $a cmp $b;
50b89b88
TL
346 } elsif (ref($h->{$a}) eq 'ARRAY' xor ref($h->{$b}) eq 'ARRAY') {
347 # real command and subcommand mixed, put sub commands first
348 return ref($h->{$b}) eq 'ARRAY' ? -1 : 1;
4c802a57 349 } else {
50b89b88 350 # both are either from the same class or subcommands
4c802a57
TL
351 return $a cmp $b;
352 }
353 } keys %$h;
354 });
e143e9d8
DM
355}
356
d8053c08 357my $print_bash_completion = sub {
57e67ea3 358 my ($simple_cmd, $bash_command, $cur, $prev) = @_;
d8053c08
DM
359
360 my $debug = 0;
361
362 return if !(defined($cur) && defined($prev) && defined($bash_command));
363 return if !defined($ENV{COMP_LINE});
364 return if !defined($ENV{COMP_POINT});
365
366 my $cmdline = substr($ENV{COMP_LINE}, 0, $ENV{COMP_POINT});
367 print STDERR "\nCMDLINE: $ENV{COMP_LINE}\n" if $debug;
368
58d9e664 369 my $args = PVE::Tools::split_args($cmdline);
5fa768fc 370 shift @$args; # no need for program name
d8053c08
DM
371 my $print_result = sub {
372 foreach my $p (@_) {
2c48a665 373 print "$p\n" if $p =~ m/^\Q$cur\E/;
d8053c08
DM
374 }
375 };
376
5fa768fc
TL
377 my ($cmd, $def) = ($simple_cmd, $cmddef);
378 if (!$simple_cmd) {
0ed80698 379 ($cmd, $def, $args, my $expanded) = resolve_cmd($args);
50b89b88 380
5082a17b
WB
381 if (defined($expanded) && $prev ne $expanded) {
382 print "$expanded\n";
50b89b88
TL
383 return;
384 }
5082a17b
WB
385
386 if (ref($def) eq 'HASH') {
387 &$print_result(@{$get_commands->($def)});
d8053c08
DM
388 return;
389 }
d8053c08 390 }
d8053c08
DM
391 return if !$def;
392
5fa768fc
TL
393 my $pos = scalar(@$args) - 1;
394 $pos += 1 if $cmdline =~ m/\s+$/;
395 print STDERR "pos: $pos\n" if $debug;
396 return if $pos < 0;
d8053c08
DM
397
398 my $skip_param = {};
399
9da27228 400 my ($class, $name, $arg_param, $uri_param, undef, $formatter_properties) = @$def;
d8053c08
DM
401 $arg_param //= [];
402 $uri_param //= {};
403
d90a2fd0
DM
404 $arg_param = [ $arg_param ] if !ref($arg_param);
405
d8053c08
DM
406 map { $skip_param->{$_} = 1; } @$arg_param;
407 map { $skip_param->{$_} = 1; } keys %$uri_param;
408
d8053c08
DM
409 my $info = $class->map_method_by_name($name);
410
9da27228
DM
411 my $prop = { %{$info->{parameters}->{properties}} }; # copy
412 $prop = { %$prop, %$formatter_properties } if $formatter_properties;
d8053c08
DM
413
414 my $print_parameter_completion = sub {
415 my ($pname) = @_;
416 my $d = $prop->{$pname};
417 if ($d->{completion}) {
418 my $vt = ref($d->{completion});
419 if ($vt eq 'CODE') {
58d9e664 420 my $res = $d->{completion}->($cmd, $pname, $cur, $args);
d8053c08
DM
421 &$print_result(@$res);
422 }
423 } elsif ($d->{type} eq 'boolean') {
424 &$print_result('0', '1');
425 } elsif ($d->{enum}) {
426 &$print_result(@{$d->{enum}});
427 }
428 };
429
430 # positional arguments
5fa768fc
TL
431 if ($pos < scalar(@$arg_param)) {
432 my $pname = $arg_param->[$pos];
d8053c08
DM
433 &$print_parameter_completion($pname);
434 return;
435 }
436
437 my @option_list = ();
438 foreach my $key (keys %$prop) {
439 next if $skip_param->{$key};
440 push @option_list, "--$key";
441 }
442
443 if ($cur =~ m/^-/) {
444 &$print_result(@option_list);
445 return;
446 }
447
448 if ($prev =~ m/^--?(.+)$/ && $prop->{$1}) {
449 my $pname = $1;
450 &$print_parameter_completion($pname);
451 return;
452 }
453
454 &$print_result(@option_list);
455};
456
1f130ba6
DM
457sub verify_api {
458 my ($class) = @_;
459
460 # simply verify all registered methods
461 PVE::RESTHandler::validate_method_schemas();
462}
463
8f3712f8
DM
464my $get_exe_name = sub {
465 my ($class) = @_;
3ef20687 466
8f3712f8
DM
467 my $name = $class;
468 $name =~ s/^.*:://;
469 $name =~ s/_/-/g;
470
471 return $name;
472};
473
c45707a0
DM
474sub generate_bash_completions {
475 my ($class) = @_;
476
477 # generate bash completion config
478
8f3712f8 479 $exename = &$get_exe_name($class);
c45707a0
DM
480
481 print <<__EOD__;
482# $exename bash completion
483
484# see http://tiswww.case.edu/php/chet/bash/FAQ
485# and __ltrim_colon_completions() in /usr/share/bash-completion/bash_completion
486# this modifies global var, but I found no better way
487COMP_WORDBREAKS=\${COMP_WORDBREAKS//:}
488
e4a1d8e2 489complete -o default -C '$exename bashcomplete' $exename
c45707a0
DM
490__EOD__
491}
492
fe3f1fde
DM
493sub generate_asciidoc_synopsys {
494 my ($class) = @_;
0a5a1eee
FG
495 $class->generate_asciidoc_synopsis();
496};
497
498sub generate_asciidoc_synopsis {
499 my ($class) = @_;
fe3f1fde
DM
500
501 $cli_handler_class = $class;
502
503 $exename = &$get_exe_name($class);
504
505 no strict 'refs';
506 my $def = ${"${class}::cmddef"};
57e67ea3 507 $cmddef = $def;
fe3f1fde
DM
508
509 if (ref($def) eq 'ARRAY') {
4c802a57 510 print_simple_asciidoc_synopsis();
fe3f1fde 511 } else {
fe3f1fde
DM
512 $cmddef->{help} = [ __PACKAGE__, 'help', ['cmd'] ];
513
0a5a1eee 514 print_asciidoc_synopsis();
fe3f1fde
DM
515 }
516}
517
7b7f99c9
DM
518# overwrite this if you want to run/setup things early
519sub setup_environment {
520 my ($class) = @_;
521
522 # do nothing by default
523}
524
891b798d 525my $handle_cmd = sub {
968bcf45 526 my ($args, $preparefunc, $param_cb) = @_;
e143e9d8 527
6627ae09 528 $cmddef->{help} = [ __PACKAGE__, 'help', ['extra-args'] ];
e143e9d8 529
f9326469 530 my ($cmd, $def, $cmd_args, undef, $cmd_str) = resolve_cmd($args);
7b7f99c9 531
918140af
TL
532 $abort->("no command specified") if !$cmd;
533
534 # call verifyapi before setup_environment(), don't execute any real code in
535 # this case
536 if ($cmd eq 'verifyapi') {
e143e9d8
DM
537 PVE::RESTHandler::validate_method_schemas();
538 return;
7b7f99c9
DM
539 }
540
541 $cli_handler_class->setup_environment();
542
543 if ($cmd eq 'bashcomplete') {
50b89b88 544 &$print_bash_completion(undef, @$cmd_args);
d8053c08 545 return;
e143e9d8
DM
546 }
547
50b89b88 548 # checked special commands, if def is still a hash we got an incomplete sub command
131f316b 549 $abort->("incomplete command '$cmd_str'", $args) if ref($def) eq 'HASH';
8e3e9929 550
50b89b88 551 &$preparefunc() if $preparefunc;
e143e9d8 552
9da27228 553 my ($class, $name, $arg_param, $uri_param, $outsub, $formatter_properties) = @{$def || []};
50b89b88 554 $abort->("unknown command '$cmd_str'") if !$class;
e143e9d8 555
9da27228
DM
556 my ($res, $formatter_params) = $class->cli_handler(
557 $cmd_str, $name, $cmd_args, $arg_param, $uri_param, $param_cb, $formatter_properties);
2026f4b5 558
a604bf22 559 if (defined $outsub) {
ec3cbded 560 my $result_schema = $class->map_method_by_name($name)->{returns};
9da27228 561 $outsub->($res, $result_schema, $formatter_params);
a604bf22 562 }
891b798d 563};
2026f4b5 564
891b798d 565my $handle_simple_cmd = sub {
968bcf45 566 my ($args, $preparefunc, $param_cb) = @_;
2026f4b5 567
9da27228 568 my ($class, $name, $arg_param, $uri_param, $outsub, $formatter_properties) = @{$cmddef};
2026f4b5
DM
569 die "no class specified" if !$class;
570
d8053c08 571 if (scalar(@$args) >= 1) {
2026f4b5
DM
572 if ($args->[0] eq 'help') {
573 my $str = "USAGE: $name help\n";
4c802a57 574 $str .= generate_usage_str('long');
2026f4b5
DM
575 print STDERR "$str\n\n";
576 return;
577 } elsif ($args->[0] eq 'verifyapi') {
578 PVE::RESTHandler::validate_method_schemas();
579 return;
2026f4b5 580 }
e143e9d8 581 }
2026f4b5 582
7b7f99c9
DM
583 $cli_handler_class->setup_environment();
584
585 if (scalar(@$args) >= 1) {
586 if ($args->[0] eq 'bashcomplete') {
587 shift @$args;
57e67ea3 588 &$print_bash_completion($name, @$args);
7b7f99c9
DM
589 return;
590 }
591 }
592
7fe1f565
DM
593 &$preparefunc() if $preparefunc;
594
9da27228
DM
595 my ($res, $formatter_params) = $class->cli_handler(
596 $name, $name, \@ARGV, $arg_param, $uri_param, $param_cb, $formatter_properties);
2026f4b5 597
a604bf22 598 if (defined $outsub) {
ec3cbded 599 my $result_schema = $class->map_method_by_name($name)->{returns};
9da27228 600 $outsub->($res, $result_schema, $formatter_params);
a604bf22 601 }
891b798d
DM
602};
603
891b798d
DM
604sub run_cli_handler {
605 my ($class, %params) = @_;
606
607 $cli_handler_class = $class;
608
609 $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
610
aa9b9af5 611 foreach my $key (keys %params) {
5ae87c41 612 next if $key eq 'prepare';
1042b82c
DM
613 next if $key eq 'no_init'; # not used anymore
614 next if $key eq 'no_rpcenv'; # not used anymore
aa9b9af5
DM
615 die "unknown parameter '$key'";
616 }
617
5ae87c41 618 my $preparefunc = $params{prepare};
891b798d 619
968bcf45 620 my $param_cb = $gen_param_mapping_func->($cli_handler_class);
891b798d
DM
621
622 $exename = &$get_exe_name($class);
623
57d44151
DM
624 my $logid = $ENV{PVE_LOG_ID} || $exename;
625 initlog($logid);
891b798d 626
891b798d 627 no strict 'refs';
57e67ea3 628 $cmddef = ${"${class}::cmddef"};
891b798d 629
57e67ea3 630 if (ref($cmddef) eq 'ARRAY') {
968bcf45 631 $handle_simple_cmd->(\@ARGV, $preparefunc, $param_cb);
891b798d 632 } else {
968bcf45 633 $handle_cmd->(\@ARGV, $preparefunc, $param_cb);
891b798d
DM
634 }
635
636 exit 0;
e143e9d8
DM
637}
638
6391;