X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=src%2FPVE%2FCLIFormatter.pm;h=af7a01b851e7961fb9b76f0db094799e13c1f121;hp=80504b26a9249e3113733ab550a462b8df6a9297;hb=cde31da01a56ae6d868d68aea7e33006ef230d73;hpb=2a174d2ab092e7b8fcf0e40ab04d1f0f19be58ad diff --git a/src/PVE/CLIFormatter.pm b/src/PVE/CLIFormatter.pm index 80504b2..af7a01b 100644 --- a/src/PVE/CLIFormatter.pm +++ b/src/PVE/CLIFormatter.pm @@ -2,15 +2,44 @@ package PVE::CLIFormatter; use strict; use warnings; +use PVE::JSONSchema; use JSON; +sub println_max { + my ($text, $max) = @_; + + if ($max) { + my @lines = split(/\n/, $text); + foreach my $line (@lines) { + print substr($line, 0, $max) . "\n"; + } + } else { + print $text; + } +} + sub data_to_text { - my ($data) = @_; + my ($data, $propdef) = @_; + if (defined($propdef)) { + if (my $type = $propdef->{type}) { + if ($type eq 'boolean') { + return $data ? 1 : 0; + } + } + if (!defined($data) && defined($propdef->{default})) { + return "($propdef->{default})"; + } + if (defined(my $renderer = $propdef->{renderer})) { + my $code = PVE::JSONSchema::get_renderer($renderer); + die "internal error: unknown renderer '$renderer'" if !$code; + return $code->($data); + } + } return '' if !defined($data); if (my $class = ref($data)) { - return to_json($data, { utf8 => 1, canonical => 1 }); + return to_json($data, { canonical => 1 }); } else { return "$data"; } @@ -25,7 +54,7 @@ sub data_to_text { # turned off by passing 0 as $sort_key # $border - print with/without table header and asciiart border sub print_text_table { - my ($data, $returnprops, $props_to_print, $sort_key, $border) = @_; + my ($data, $returnprops, $props_to_print, $sort_key, $border, $columns) = @_; my $autosort = 1; if (defined($sort_key) && $sort_key eq 0) { @@ -53,7 +82,7 @@ sub print_text_table { my $longest = $titlelen; my $sortable = $autosort; foreach my $entry (@$data) { - my $len = length(data_to_text($entry->{$prop})) // 0; + my $len = length(data_to_text($entry->{$prop}, $propinfo)) // 0; $longest = $len if $len > $longest; $sortable = 0 if !defined($entry->{$prop}); } @@ -89,17 +118,19 @@ sub print_text_table { } } - print $borderstring if $border; - printf $formatstring, map { $colopts->{$_}->{title} } @$props_to_print; + println_max($borderstring, $columns) if $border; + my $text = sprintf $formatstring, map { $colopts->{$_}->{title} } @$props_to_print; + println_max($text, $columns); foreach my $entry (@$data) { - print $borderstring if $border; - printf $formatstring, map { - substr(data_to_text($entry->{$_}) // $colopts->{$_}->{default}, + println_max($borderstring, $columns) if $border; + $text = sprintf $formatstring, map { + substr(data_to_text($entry->{$_}, $returnprops->{$_}) // $colopts->{$_}->{default}, 0, $colopts->{$_}->{cutoff}); } @$props_to_print; + println_max($text, $columns); } - print $borderstring if $border; + println_max($borderstring, $columns) if $border; } # prints the result of an API GET call returning an array as a table. @@ -108,7 +139,7 @@ sub print_text_table { # takes all fields of the results property, with a fallback # to all fields occuring in items of $data. sub print_api_list { - my ($data, $result_schema, $props_to_print, $sort_key, $border) = @_; + my ($data, $result_schema, $props_to_print, $sort_key, $border, $columns) = @_; die "can only print object lists\n" if !($result_schema->{type} eq 'array' && $result_schema->{items}->{type} eq 'object'); @@ -129,11 +160,11 @@ sub print_api_list { die "unable to detect list properties\n" if !scalar(@$props_to_print); } - print_text_table($data, $returnprops, $props_to_print, $sort_key, $border); + print_text_table($data, $returnprops, $props_to_print, $sort_key, $border, $columns); } sub print_api_result { - my ($format, $data, $result_schema, $props_to_print, $sort_key) = @_; + my ($format, $data, $result_schema, $props_to_print, $sort_key, $columns) = @_; return if $result_schema->{type} eq 'null'; @@ -145,15 +176,15 @@ sub print_api_result { $props_to_print = [ sort keys %$data ] if !defined($props_to_print); my $kvstore = []; foreach my $key (@$props_to_print) { - push @$kvstore, { key => $key, value => data_to_text($data->{$key}) }; + push @$kvstore, { key => $key, value => data_to_text($data->{$key}, $result_schema->{properties}->{$key}) }; } my $schema = { type => 'array', items => { type => 'object' }}; - print_api_list($kvstore, $schema, ['key', 'value'], 0, $format eq 'text'); + print_api_list($kvstore, $schema, ['key', 'value'], 0, $format eq 'text', $columns); } elsif ($type eq 'array') { return if !scalar(@$data); my $item_type = $result_schema->{items}->{type}; if ($item_type eq 'object') { - print_api_list($data, $result_schema, $props_to_print, $sort_key, $format eq 'text'); + print_api_list($data, $result_schema, $props_to_print, $sort_key, $format eq 'text', $columns); } else { foreach my $entry (@$data) { print data_to_text($entry) . "\n";