mdidomenico has asked for the wisdom of the Perl Monks concerning the following question:
How can i condense the if conditional, from the above code snippet, into a smaller block and one that handles variable lengths? I thought about using a for loop, but I'm not able to conjure anything that tells me how to append keys to a hash.#!/usr/bin/perl use strict; use warnings; my $devstats; readfile("/sys/class/net/p2p1/statistics/rx_bytes"); exit(0); sub readfile { my $file = shift; my @data = split("/", $file); my $nic = $data[4]; my $key = $data[-1]; my $dirCnt = $#data; open(FIFO, "< $file"); my $value = <FIFO>; if (defined($value)) { chomp($value); if ($dirCnt eq 6) { $devstats->{$nic}->{$data[5]}->{$key} = $value; } elseif ($dircnt eq 7) { $devstats->{$nic}->{$data[5]}->{$data[6]}->{$key} = $value; } elseif ($dircnt eq 8) { $devstats->{$nic}->{$data[5]}->{$data[6]}->{$data[7]}->{$key} = +$value; } elseif ($dircnt eq 9) { $devstats->{$nic}->{$data[5]}->{$data[6]}->{$data[7]}->{$data[8] +}->{$key} = $value; } else { $devstats->{$nic}->{$key} = $value; } } close(FIFO); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: condense conditional
by Corion (Patriarch) on Sep 12, 2018 at 13:18 UTC | |
by hippo (Archbishop) on Sep 12, 2018 at 13:31 UTC | |
|
Re: condense conditional
by tybalt89 (Monsignor) on Sep 12, 2018 at 14:35 UTC | |
by ikegami (Patriarch) on Sep 12, 2018 at 15:35 UTC | |
by mdidomenico (Initiate) on Sep 12, 2018 at 15:13 UTC | |
|
Re: condense conditional
by fullermd (Vicar) on Sep 12, 2018 at 13:14 UTC | |
|
Re: condense conditional
by ikegami (Patriarch) on Sep 12, 2018 at 15:36 UTC | |
|
Re: condense conditional
by holli (Abbot) on Sep 12, 2018 at 18:23 UTC |