1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
package System::Info;
use strict;
use warnings;
our $VERSION = "0.066";
use base "Exporter";
our @EXPORT_OK = qw( &sysinfo &sysinfo_hash &si_uname );
use System::Info::AIX;
use System::Info::BSD;
use System::Info::Cygwin;
use System::Info::Darwin;
use System::Info::Generic;
use System::Info::Haiku;
use System::Info::HPUX;
use System::Info::Irix;
use System::Info::Linux;
use System::Info::Solaris;
use System::Info::VMS;
use System::Info::Windows;
=head1 NAME
System::Info - Factory for system specific information objects
=head1 SYNOPSIS
use System::Info;
my $si = System::Info->new;
printf "Hostname: %s\n", $si->host;
printf "Number of CPU's: %s\n", $si->ncpu;
printf "Processor type: %s\n", $si->cpu_type; # short
printf "Processor description: %s\n", $si->cpu; # long
printf "OS and version: %s\n", $si->os;
or
use System::Info qw( sysinfo );
printf "[%s]\n", sysinfo ();
or
$ perl -MSystem::Info=si_uname -le print+si_uname
=head1 DESCRIPTION
System::Info tries to present system-related information, like number of CPU's,
architecture, OS and release related information in a system-independent way.
This releases the user of this module of the need to know if the information
comes from Windows, Linux, HP-UX, AIX, Solaris, Irix, or VMS, and if the
architecture is i386, x64, pa-risc2, or arm.
=head1 METHODS
=head2 System::Info->new
Factory method, with fallback to the information in C<< POSIX::uname () >>.
=cut
sub new {
my $factory = shift;
$^O =~ m/aix/i and return System::Info::AIX->new;
$^O =~ m/bsd|dragonfly/i and return System::Info::BSD->new;
$^O =~ m/cygwin/i and return System::Info::Cygwin->new;
$^O =~ m/darwin/i and return System::Info::Darwin->new;
$^O =~ m/haiku/ and return System::Info::Haiku->new;
$^O =~ m/hp-?ux/i and return System::Info::HPUX->new;
$^O =~ m/irix/i and return System::Info::Irix->new;
$^O =~ m/linux|android/i and return System::Info::Linux->new;
$^O =~ m/solaris|sunos|osf/i and return System::Info::Solaris->new;
$^O =~ m/VMS/ and return System::Info::VMS->new;
$^O =~ m/mswin32|windows/i and return System::Info::Windows->new;
return System::Info::Generic->new;
}
=head2 sysinfo
C<sysinfo> returns a string with C<host>, C<os> and C<cpu_type>.
=cut
sub sysinfo {
my $si = System::Info->new;
my @fields = $_[0]
? qw( host os cpu ncpu cpu_type )
: qw( host os cpu_type );
return join " ", @{ $si }{ map "_$_" => @fields };
} # sysinfo
=head2 sysinfo_hash
C<sysinfo_hash> returns a hash reference with basic system information, like:
{ cpu => 'Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz (GenuineIntel 2700MHz)',
cpu_count => '1 [8 cores]',
cpu_cores => 8,
cpu_type => 'x86_64',
distro => 'openSUSE Tumbleweed 20171030',
hostname => 'foobar',
os => 'linux - 4.13.10-1-default [openSUSE Tumbleweed 20171030]',
osname => 'Linux',
osvers => '4.13.10-1-default'
}
The C<cpu_cores> count refers to logical cores. On MacOS there is also a
C<physical_cores> count, which will be the same as C<cpu_cores> for Apple Silicon,
but not for an Intel Mac with SMT enabled:
{ cpu => 'Quad-Core Intel Core i7 (2 GHz)',
cpu_count => '1 [4 cores]',
cpu_cores => '8',
physical_cores => '4',
cpu_type => 'x86_64',
distro => 'Darwin 11.7.10',
hostname => '192.168.1.6',
os => 'darwin - 20.6.0 (Mac OS X - macOS 11.7.10 (20G1427))',
osname => 'Darwin',
osvers => '11.7.10'
}
=cut
sub sysinfo_hash {
my $si = System::Info->new;
my %phys = $si->{_phys_core} ? (physical_cores => $si->{_phys_core}) : ();
return {
%phys,
hostname => $si->{_host},
cpu => $si->{_cpu},
cpu_type => $si->{_cpu_type},
cpu_count => $si->{_ncpu},
cpu_cores => $si->{_ncore},
os => $si->{_os},
osname => $si->{__osname},
osvers => $si->{__osvers},
distro => $si->{__distro}
|| join " " => $si->{__osname}, $si->{__osvers},
};
} # sysinfo
=head2 si_uname (@args)
This class gathers most of the C<uname(1)> info, make a comparable
version. Takes almost the same arguments:
a for all (can be omitted)
n for nodename
s for os name and version
m for cpu name
c for cpu count
p for cpu_type
=cut
sub si_uname {
my $si = System::Info->new;
return $si->si_uname (@_);
}
1;
__END__
=head1 SEE ALSO
There are more modules that provide system and/or architectural information.
Where System::Info aims at returning the information that is useful for
bug reports, some other modules focus on a single aspect (possibly with
way more variables and methods than System::Info does supports), or are
limited to use on a specific architecture, like Windows or Linux.
Here are some of the alternatives and how to replace that code with what
System::Info offers. Not all returned values will be exactly the same.
=head2 Sys::Hostname
use Sys::Hostname;
say "Hostname: ", hostname;
->
use System::Info;
my $si = System::Info->new;
say "Hostname: ", $si->host;
Sys::Hostname is a CORE module, and will always be available.
=head2 Unix::Processors
use Unix::Processors;
my $up = Unix::Processors->new;
say "CPU type : ", $up->processors->[0]->type; # Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
say "CPU count: ", $up->max_physical; # 4
say "CPU cores: ", $up->max_online; # 8
say "CPU speed: ", $up->max_clock; # 2700
->
use System::Info;
my $si = System::Info->new;
say "CPU type : ", $si->cpu;
say "CPU count: ", $si->ncpu;
say "CPU cores: ", $si->ncore;
say "CPU speed: ", $si->cpu =~ s{^.*\b([0-9.]+)\s*[A-Z]Hz.*}{$1}r;
The number reported by max_physical is inaccurate for modern CPU's
=head2 Sys::Info
Sys::Info has a somewhat rigid configuration, which causes it to fail
installation on e.g. (modern versions of) CentOS and openSUSE Tumbleweed.
It aims at returning a complete set of information, but as I cannot
install it on openSUSE Tumbleweed, I cannot test it and show the analogies.
=head2 Sys::CPU
use Sys::CPU;
say "CPU type : ", Sys::CPU::cpu_type; # Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
say "CPU count: ", Sys::CPU::cpu_count; # 8
say "CPU speed: ", Sys::CPU::cpu_clock; # 2700
->
use System::Info;
my $si = System::Info->new;
say "CPU type : ", $si->get_cpu; # or ->cpu
say "CPU count: ", $si->get_core_count; # or ->ncore
say "CPU speed: ", $si->get_cpu =~ s{^.*\b([0-9.]+)\s*[A-Z]Hz.*}{$1}r;
The speed reported by Sys::CPU is the I<current> speed, and it will change
from call to call. YMMV.
Sys::CPU is not available on CPAN anymore, but you can still get is from
BackPAN.
=head2 Devel::Platform::Info
L<Devel::Platform::Info> derives information from the files C</etc/issue>,
C</etc/.issue> and the output of the commands C<uname -a> (and C<-m>, C<-o>,
C<-r>, and C<-s>) and C<lsb_release -a>. It returns no information on CPU
type, CPU speed, or Memory.
use Devel::Platform::Info;
my $info = Devel::Platform::Info->new->get_info ();
# { archname => 'x86_64',
# codename => 'n/a',
# is32bit => 0,
# is64bit => 1,
# kernel => 'linux-5.17.4-1-default',
# kname => 'Linux',
# kvers => '5.17.4-1-default',
# osflag => 'linux',
# oslabel => 'openSUSE',
# osname => 'GNU/Linux',
# osvers => '20220426',
# }
->
use System::Info;
my $si = System::Info->new;
my $info = {
archname => $si->cpu_type, # x86_64
codename => undef,
is32bit => undef,
is64bit => undef,
kernel => "$^O-".$si->_osvers, # linux-5.17.4-1-default
kname => $si->_osname, # Linux
kvers => $si->_osvers, # 5.17.4-1-default
osflag => $^O, # linux
oslabel => $si->distro, # openSUSE Tumbleweed 20220426
osname => undef,
osvers => $si->distro, # openSUSE Tumbleweed 20220426
};
=head2 Devel::CheckOS
This one does not return the OS information as such, but features an
alternative to C<$^O>.
=head2 Sys::OsRelease
Interface to FreeDesktop.Org's os-release standard.
use Sys::OsRealease;
Sys::OsRelease->init;
my $i = Sys::OsRelease->instance;
say $i->ansi_color; # 0;32
say $i->bug_report_url; # https://bugs.opensuse.org
say $i->cpe_name; # cpe:/o:opensuse:tumbleweed:20220426
say $i->documentation_url; # https://en.opensuse.org/Portal:Tumbleweed
say $i->home_url; # https://www.opensuse.org/
say $i->id; # opensuse-tumbleweed
say $i->id_like; # opensuse suse
say $i->logo; # distributor-logo-Tumbleweed
say $i->name; # openSUSE Tumbleweed
say $i->pretty_name; # openSUSE Tumbleweed
say $i->version_id; # 20220426
=head1 COPYRIGHT AND LICENSE
(c) 2016-2025, Abe Timmerman & H.Merijn Brand, All rights reserved.
With contributions from Jarkko Hietaniemi, Campo Weijerman, Alan Burlison,
Allen Smith, Alain Barbet, Dominic Dunlop, Rich Rauenzahn, David Cantrell.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
See:
=over 4
=item * L<http://www.perl.com/perl/misc/Artistic.html>
=item * L<http://www.gnu.org/copyleft/gpl.html>
=back
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
|