]> git.proxmox.com Git - pve-common.git/blame - src/PVE/CLIFormatter.pm
PVE::CLIFormatter::extract_properties_to_print - new helper
[pve-common.git] / src / PVE / CLIFormatter.pm
CommitLineData
f53ad23a
DM
1package PVE::CLIFormatter;
2
3use strict;
4use warnings;
4ac85000
DM
5use I18N::Langinfo;
6
84142f1d 7use PVE::JSONSchema;
4ac85000 8use PVE::PTY;
f53ad23a 9use JSON;
eb1c51c2
DM
10use utf8;
11use Encode;
f53ad23a 12
f495c868
DM
13sub render_duration {
14 my ($duration_in_seconds) = @_;
15
16 my $text = '';
17 my $rest = $duration_in_seconds;
18
19 my $step = sub {
20 my ($unit, $unitlength) = @_;
21
22 if ((my $v = int($rest/$unitlength)) > 0) {
23 $text .= " " if length($text);
24 $text .= "${v}${unit}";
25 $rest -= $v * $unitlength;
26 }
27 };
28
29 $step->('w', 7*24*3600);
30 $step->('d', 24*3600);
31 $step->('h', 3600);
32 $step->('m', 60);
33 $step->('s', 1);
34
35 return $text;
36}
37
38PVE::JSONSchema::register_renderer('duration', \&render_duration);
39
40sub render_fraction_as_percentage {
41 my ($fraction) = @_;
42
43 return sprintf("%.2f%%", $fraction*100);
44}
45
46PVE::JSONSchema::register_renderer(
47 'fraction_as_percentage', \&render_fraction_as_percentage);
48
49sub render_bytes {
50 my ($value) = @_;
51
52 my @units = qw(B KiB MiB GiB TiB PiB);
53
54 my $max_unit = 0;
55 if ($value > 1023) {
56 $max_unit = int(log($value)/log(1024));
57 $value /= 1024**($max_unit);
58 }
59
60 return sprintf "%.2f $units[$max_unit]", $value;
61}
62
63PVE::JSONSchema::register_renderer('bytes', \&render_bytes);
64
4ac85000
DM
65sub query_terminal_options {
66 my ($options) = @_;
67
68 $options //= {};
69
70 if (-t STDOUT) {
71 ($options->{columns}) = PVE::PTY::tcgetsize(*STDOUT);
72 }
73
74 $options->{encoding} = I18N::Langinfo::langinfo(I18N::Langinfo::CODESET());
75
76 $options->{utf8} = 1 if $options->{encoding} eq 'UTF-8';
77
78 return $options;
79}
80
f53ad23a 81sub data_to_text {
84142f1d 82 my ($data, $propdef) = @_;
f53ad23a 83
3cd6f2f3
DM
84 return '' if !defined($data);
85
84142f1d
DM
86 if (defined($propdef)) {
87 if (my $type = $propdef->{type}) {
88 if ($type eq 'boolean') {
89 return $data ? 1 : 0;
90 }
91 }
92 if (!defined($data) && defined($propdef->{default})) {
93 return "($propdef->{default})";
94 }
95 if (defined(my $renderer = $propdef->{renderer})) {
96 my $code = PVE::JSONSchema::get_renderer($renderer);
97 die "internal error: unknown renderer '$renderer'" if !$code;
98 return $code->($data);
99 }
100 }
f53ad23a
DM
101
102 if (my $class = ref($data)) {
84142f1d 103 return to_json($data, { canonical => 1 });
f53ad23a
DM
104 } else {
105 return "$data";
106 }
107}
108
109# prints a formatted table with a title row.
110# $data - the data to print (array of objects)
111# $returnprops -json schema property description
112# $props_to_print - ordered list of properties to print
0c22b00c
DM
113# $options
114# - sort_key: can be used to sort after a column, if it isn't set we sort
f53ad23a 115# after the leftmost column (with no undef value in $data) this can be
0c22b00c
DM
116# turned off by passing 0 as sort_key
117# - border: print with/without table header and asciiart border
118# - columns: limit output width (if > 0)
119# - utf8: use utf8 characters for table delimiters
120
f53ad23a 121sub print_text_table {
0c22b00c
DM
122 my ($data, $returnprops, $props_to_print, $options) = @_;
123
124 my $sort_key = $options->{sort_key};
125 my $border = $options->{border};
126 my $columns = $options->{columns};
127 my $utf8 = $options->{utf8};
43b104c4 128 my $encoding = $options->{encoding} // 'UTF-8';
f53ad23a 129
ef3c37dd 130 if (!defined($sort_key) || $sort_key eq 0) {
41d554d9
DM
131 $sort_key = $props_to_print->[0];
132 }
133
134 if (defined($sort_key)) {
135 my $type = $returnprops->{$sort_key}->{type} // 'string';
136 if ($type eq 'integer' || $type eq 'number') {
137 @$data = sort { $a->{$sort_key} <=> $b->{$sort_key} } @$data;
138 } else {
139 @$data = sort { $a->{$sort_key} cmp $b->{$sort_key} } @$data;
140 }
f53ad23a
DM
141 }
142
143 my $colopts = {};
793ad69b 144
eb1c51c2
DM
145 my $borderstring_m = '';
146 my $borderstring_b = '';
147 my $borderstring_t = '';
f53ad23a
DM
148 my $formatstring = '';
149
150 my $column_count = scalar(@$props_to_print);
151
41d554d9
DM
152 my $tabledata = [];
153
154 foreach my $entry (@$data) {
155
156 my $height = 1;
157 my $rowdata = {};
158
159 for (my $i = 0; $i < $column_count; $i++) {
160 my $prop = $props_to_print->[$i];
161 my $propinfo = $returnprops->{$prop} // {};
162
163 my $text = data_to_text($entry->{$prop}, $propinfo);
164 my $lines = [ split(/\n/, $text) ];
165 my $linecount = scalar(@$lines);
166 $height = $linecount if $linecount > $height;
167
168 my $width = 0;
169 foreach my $line (@$lines) {
170 my $len = length($line);
171 $width = $len if $len > $width;
172 }
173
174 $rowdata->{$prop} = {
175 lines => $lines,
176 width => $width,
177 };
178 }
179
180 push @$tabledata, {
181 height => $height,
182 rowdata => $rowdata,
183 };
184 }
185
f53ad23a
DM
186 for (my $i = 0; $i < $column_count; $i++) {
187 my $prop = $props_to_print->[$i];
188 my $propinfo = $returnprops->{$prop} // {};
189
190 my $title = $propinfo->{title} // $prop;
191 my $cutoff = $propinfo->{print_width} // $propinfo->{maxLength};
192
193 # calculate maximal print width and cutoff
194 my $titlelen = length($title);
195
196 my $longest = $titlelen;
41d554d9
DM
197 foreach my $coldata (@$tabledata) {
198 my $rowdata = $coldata->{rowdata}->{$prop};
199 $longest = $rowdata->{width} if $rowdata->{width} > $longest;
f53ad23a
DM
200 }
201 $cutoff = $longest if !defined($cutoff) || $cutoff > $longest;
f53ad23a
DM
202
203 $colopts->{$prop} = {
204 title => $title,
f53ad23a
DM
205 cutoff => $cutoff,
206 };
207
793ad69b 208 if ($border) {
eb1c51c2
DM
209 if ($i == 0 && ($column_count == 1)) {
210 if ($utf8) {
41d554d9
DM
211 $formatstring .= "│ %-${cutoff}s │";
212 $borderstring_t .= "┌─" . ('─' x $cutoff) . "─┐";
213 $borderstring_m .= "├─" . ('─' x $cutoff) . "─┤";
214 $borderstring_b .= "└─" . ('─' x $cutoff) . "─┘";
eb1c51c2 215 } else {
41d554d9
DM
216 $formatstring .= "| %-${cutoff}s |";
217 $borderstring_m .= "+-" . ('-' x $cutoff) . "-+";
eb1c51c2
DM
218 }
219 } elsif ($i == 0) {
220 if ($utf8) {
221 $formatstring .= "│ %-${cutoff}s ";
222 $borderstring_t .= "┌─" . ('─' x $cutoff) . '─';
223 $borderstring_m .= "├─" . ('─' x $cutoff) . '─';
224 $borderstring_b .= "└─" . ('─' x $cutoff) . '─';
225 } else {
226 $formatstring .= "| %-${cutoff}s ";
227 $borderstring_m .= "+-" . ('-' x $cutoff) . '-';
228 }
229 } elsif ($i == ($column_count - 1)) {
230 if ($utf8) {
41d554d9
DM
231 $formatstring .= "│ %-${cutoff}s │";
232 $borderstring_t .= "┬─" . ('─' x $cutoff) . "─┐";
233 $borderstring_m .= "┼─" . ('─' x $cutoff) . "─┤";
234 $borderstring_b .= "┴─" . ('─' x $cutoff) . "─┘";
eb1c51c2 235 } else {
41d554d9
DM
236 $formatstring .= "| %-${cutoff}s |";
237 $borderstring_m .= "+-" . ('-' x $cutoff) . "-+";
eb1c51c2 238 }
793ad69b 239 } else {
eb1c51c2
DM
240 if ($utf8) {
241 $formatstring .= "│ %-${cutoff}s ";
242 $borderstring_t .= "┬─" . ('─' x $cutoff) . '─';
243 $borderstring_m .= "┼─" . ('─' x $cutoff) . '─';
244 $borderstring_b .= "┴─" . ('─' x $cutoff) . '─';
245 } else {
246 $formatstring .= "| %-${cutoff}s ";
247 $borderstring_m .= "+-" . ('-' x $cutoff) . '-';
248 }
793ad69b
DM
249 }
250 } else {
251 # skip alignment and cutoff on last column
41d554d9 252 $formatstring .= ($i == ($column_count - 1)) ? "%s" : "%-${cutoff}s ";
f53ad23a
DM
253 }
254 }
255
eb1c51c2
DM
256 $borderstring_t = $borderstring_m if !length($borderstring_t);
257 $borderstring_b = $borderstring_m if !length($borderstring_b);
258
41d554d9
DM
259 my $writeln = sub {
260 my ($text) = @_;
261
262 if ($columns) {
263 print encode($encoding, substr($text, 0, $columns) . "\n");
264 } else {
265 print encode($encoding, $text) . "\n";
266 }
267 };
268
269 $writeln->($borderstring_t) if $border;
cde31da0 270 my $text = sprintf $formatstring, map { $colopts->{$_}->{title} } @$props_to_print;
41d554d9 271 $writeln->($text);
793ad69b 272
41d554d9
DM
273 foreach my $coldata (@$tabledata) {
274 $writeln->($borderstring_m) if $border;
275
276 for (my $i = 0; $i < $coldata->{height}; $i++) {
277
278 $text = sprintf $formatstring, map {
279 substr($coldata->{rowdata}->{$_}->{lines}->[$i] // '', 0, $colopts->{$_}->{cutoff});
280 } @$props_to_print;
281
282 $writeln->($text);
283 }
f53ad23a 284 }
41d554d9
DM
285
286 $writeln->($borderstring_b) if $border;
f53ad23a
DM
287}
288
c5adc5f9
DM
289sub extract_properties_to_print {
290 my ($propdef) = @_;
291
292 my $required = [];
293 my $optional = [];
294
295 foreach my $key (keys %$propdef) {
296 my $prop = $propdef->{$key};
297 if ($prop->{optional}) {
298 push @$optional, $key;
299 } else {
300 push @$required, $key;
301 }
302 }
303
304 return [ sort(@$required), sort(@$optional) ];
305}
306
f53ad23a
DM
307# prints the result of an API GET call returning an array as a table.
308# takes formatting information from the results property of the call
309# if $props_to_print is provided, prints only those columns. otherwise
310# takes all fields of the results property, with a fallback
311# to all fields occuring in items of $data.
312sub print_api_list {
0c22b00c 313 my ($data, $result_schema, $props_to_print, $options) = @_;
f53ad23a
DM
314
315 die "can only print object lists\n"
316 if !($result_schema->{type} eq 'array' && $result_schema->{items}->{type} eq 'object');
317
318 my $returnprops = $result_schema->{items}->{properties};
319
c5adc5f9
DM
320 $props_to_print = extract_properties_to_print($returnprops)
321 if !defined($props_to_print);
322
323 if (!scalar(@$props_to_print)) {
324 my $all_props = {};
325 foreach my $obj (@$data) {
326 foreach my $key (keys %$obj) {
327 $all_props->{$key} = 1;
f53ad23a 328 }
f53ad23a 329 }
c5adc5f9 330 $props_to_print = [ sort keys %{$all_props} ];
f53ad23a
DM
331 }
332
c5adc5f9
DM
333 die "unable to detect list properties\n" if !scalar(@$props_to_print);
334
0c22b00c 335 print_text_table($data, $returnprops, $props_to_print, $options);
f53ad23a
DM
336}
337
338sub print_api_result {
0c22b00c
DM
339 my ($format, $data, $result_schema, $props_to_print, $options) = @_;
340
4ac85000
DM
341 if (!defined($options)) {
342 $options = query_terminal_options({});
343 } else {
344 $options = { %$options }; # copy
345 }
f53ad23a
DM
346
347 return if $result_schema->{type} eq 'null';
348
349 if ($format eq 'json') {
43b104c4 350 # Note: we always use utf8 encoding for json format
f53ad23a 351 print to_json($data, {utf8 => 1, allow_nonref => 1, canonical => 1, pretty => 1 });
793ad69b 352 } elsif ($format eq 'text' || $format eq 'plain') {
43b104c4 353 my $encoding = $options->{encoding} // 'UTF-8';
f53ad23a
DM
354 my $type = $result_schema->{type};
355 if ($type eq 'object') {
c5adc5f9
DM
356 $props_to_print = extract_properties_to_print($result_schema->{properties})
357 if !defined($props_to_print);
358 $props_to_print = [ sort keys %$data ] if !scalar(@$props_to_print);
2a174d2a 359 my $kvstore = [];
f53ad23a 360 foreach my $key (@$props_to_print) {
84142f1d 361 push @$kvstore, { key => $key, value => data_to_text($data->{$key}, $result_schema->{properties}->{$key}) };
f53ad23a 362 }
2a174d2a 363 my $schema = { type => 'array', items => { type => 'object' }};
0c22b00c
DM
364 $options->{border} = $format eq 'text';
365 print_api_list($kvstore, $schema, ['key', 'value'], $options);
f53ad23a
DM
366 } elsif ($type eq 'array') {
367 return if !scalar(@$data);
368 my $item_type = $result_schema->{items}->{type};
369 if ($item_type eq 'object') {
0c22b00c
DM
370 $options->{border} = $format eq 'text';
371 print_api_list($data, $result_schema, $props_to_print, $options);
f53ad23a
DM
372 } else {
373 foreach my $entry (@$data) {
43b104c4 374 print encode($encoding, data_to_text($entry) . "\n");
f53ad23a
DM
375 }
376 }
377 } else {
43b104c4 378 print encode($encoding, "$data\n");
f53ad23a
DM
379 }
380 } else {
381 die "internal error: unknown output format"; # should not happen
382 }
383}
384
3851;