[pve-devel] [PATCH storage] style: remove goto statements

Fiona Ebner f.ebner at proxmox.com
Thu Jun 27 15:28:20 CEST 2024


Am 26.06.24 um 10:56 schrieb Fabian Grünbichler:
> these can just as well be `die` statements right there, there is no complicated
> cleanup that would warrant a goto statement..
> 
> Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>

Reviewed-by: Fiona Ebner <f.ebner at proxmox.com>

but with some suggestions:

> ---
>  src/PVE/Storage/Plugin.pm | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm
> index b5a54c1..f8dc9a2 100644
> --- a/src/PVE/Storage/Plugin.pm
> +++ b/src/PVE/Storage/Plugin.pm
> @@ -1586,13 +1586,14 @@ sub read_common_header($) {
>  # Export a volume into a file handle as a stream of desired format.
>  sub volume_export {
>      my ($class, $scfg, $storeid, $fh, $volname, $format, $snapshot, $base_snapshot, $with_snapshots) = @_;

While at it, we could add a blank line here ;)

> +    my $unsupported = "volume export format $format not available for $class\n";

Maybe add _msg or _error or similar to improve the variable name?

>      if ($scfg->{path} && !defined($snapshot) && !defined($base_snapshot)) {
>  	my $file = $class->path($scfg, $volname, $storeid)
> -	    or goto unsupported;
> +	    or die $unsupported;

Could be moved to the previous line.

>  	my ($size, $file_format) = file_size_info($file);
>  
>  	if ($format eq 'raw+size') {
> -	    goto unsupported if $with_snapshots || $file_format eq 'subvol';
> +	    die $unsupported if $with_snapshots || $file_format eq 'subvol';
>  	    write_common_header($fh, $size);
>  	    if ($file_format eq 'raw') {
>  		run_command(['dd', "if=$file", "bs=4k", "status=progress"], output => '>&'.fileno($fh));




More information about the pve-devel mailing list