Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
use v5.12.5;
our $VERSION = '1.16.0'; # VERSION
sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = {@_};
bless( $self, $proto );
return $self;
}
sub get {
my ($self) = @_;
my @ret;
if ( is_readable('/proc/cpuinfo') ) {
my @cpuinfo = split /\n/, cat "/proc/cpuinfo";
chomp @cpuinfo;
my $proc = 0;
for my $line (@cpuinfo) {
next if $line =~ qr{^$};
my ( $key, $val ) = split /\s*:\s*/, $line, 2;
if ( $key eq "processor" ) {
$proc = $val;
$ret[$proc] = {};
next;
}
$ret[$proc]->{$key} = $val;
}
}
else {
Rex::Logger::info( 'Cannot read /proc/cpuinfo', 'warn' );
}
return \@ret;
}
1;