Subversion Repositories camp_sysinfo_client_3

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
48 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;  
4
 
5
# Description: Gets PCI information on Unix systems if lspci installed
6
 
7
our $VERSION = '1.2';
8
 
9
# pci information for sysinfo client
10
# Author: R. W. Rodolico
11
# Date:   2016-04-08
12
 
13
# gets information on pci information assuming lspci is installed
14
# I really don't remember how I wrote this originally, so I just put everything
15
# into the hash (as done in v2), then print the hash. Unneccessarily wasteful of memory
16
 
251 rodolico 17
# find our location and use it for searching for libraries
48 rodolico 18
BEGIN {
251 rodolico 19
   use FindBin;
20
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   eval( 'use Data::Dumper;' );
48 rodolico 24
}
25
 
251 rodolico 26
# check for valid OS. 
27
exit 1 unless &checkOS( { 'freebsd' => undef } );
48 rodolico 28
 
251 rodolico 29
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
30
# script returns a 2
31
foreach my $command ( 'pciconfig' ) {
32
   exit 2 unless &validCommandOnSystem( $command );
33
}
48 rodolico 34
 
35
my $CATEGORY = 'pci';
36
 
251 rodolico 37
my @pciInfo =  qx( pciconfig -lv);
48 rodolico 38
 
39
my %returnValue;
40
 
41
chomp @pciInfo;
42
my $slot = '';
43
while ( my $line = shift( @pciInfo ) ) {
44
   if ( $line =~ m/^([^@]+)\@([^ ]+)\s+class=([^ ]+)\s+card=([^ ]+)\s+chip=([^ ]+)\s+rev=([^ ]+)\s+hdr=(.+)$/ ) {
45
      $slot = $2;
46
      $returnValue{$slot}{'driver'} = $1;
47
      $returnValue{$slot}{'class'} = $3;
48
      $returnValue{$slot}{'card'} = $4;
49
      $returnValue{$slot}{'chip'} = $5;
50
      $returnValue{$slot}{'revision'} = $6;
51
      $returnValue{$slot}{'header'} = $7;
52
   } else {
53
      my ($key, $value ) = split( '=', $line );
54
      $returnValue{$slot}{&cleanUp( ' ', $key )} = &cleanUp( ' ', $value );
55
   }
56
}
57
 
58
 
59
foreach my $key ( sort keys %returnValue ) {
60
   my $temp = $returnValue{$key};
61
   foreach my $info ( keys %$temp ) {
62
      print "$CATEGORY\t$key\t$info\t" . $$temp{$info} . "\n";
63
   }
64
}
251 rodolico 65