Subversion Repositories camp_sysinfo_client_3

Rev

Rev 69 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 rodolico 1
#!/usr/bin/env perl
2
use warnings;
26 rodolico 3
use strict;  
2 rodolico 4
 
37 rodolico 5
# Description: Gets PCI information on Unix systems if lspci installed
20 rodolico 6
 
37 rodolico 7
our $VERSION = '1.2';
8
 
20 rodolico 9
# pci information for sysinfo client
10
# Author: R. W. Rodolico
11
# Date:   2016-04-08
12
 
2 rodolico 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
20 rodolico 15
# into the hash (as done in v2), then print the hash. Unneccessarily wasteful of memory
2 rodolico 16
 
251 rodolico 17
# find our location and use it for searching for libraries
2 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;' );
2 rodolico 24
}
25
 
251 rodolico 26
# check for valid OS. 
27
exit 1 unless &checkOS( { 'linux' => undef } );
2 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 ( 'lspci' ) {
32
   exit 2 unless &validCommandOnSystem( $command );
33
}
2 rodolico 34
 
35
my $CATEGORY = 'pci';
36
 
37
my $pciInfo =  qx(lspci -Dvmm);
38
 
39
# this is a regular expression to "find" the slot number, if one exists
40
# Different versions of lspci use different keys for the name and the slot
41
# in some cases, the key Device: is used for both the device name and the slot (Debian Etch lspci version 2.2.4-pre4)
42
# so I have to use this kludge. I may rewrite it to just search the sys directory tree later.
43
my $SLOT_REGEX = '^[0-9a-z]+[:.][0-9a-z]+';
44
my @pciInfo = split ("\n\n", $pciInfo);
45
my $i = 0;
28 rodolico 46
my %returnValue;
47
 
2 rodolico 48
while (my $test = shift (@pciInfo)) {
49
   foreach my $thisLine (sort split("\n", $test)) {
50
      if ($thisLine =~ m/([a-z]+):\s*(\S.*)/i) {
51
         my ($key, $value) = (lc $1,$2);
52
         # remove any leading whitespace
53
         $key =~ s/^\s*//g;
54
         $value =~ s/^\s*//g;
55
         while (defined($returnValue{$i}{$key})) { # dup key, so give it a unique value
56
            $key .= '0'; # just add some 0's at the end
57
         }
58
         $returnValue{$i}{$key} = $value;
59
      }
60
   }
61
   unless (defined $returnValue{$i}{'slot'}) { # no slot number, so see if we have one
62
      $returnValue{$i}{'slot'} = 'Unknown';
63
      for my $thisKey ( keys %{$returnValue{$i}} ) {
64
            if ($returnValue{$i}{$thisKey} =~ m/$SLOT_REGEX/i) {
65
            $returnValue{$i}{'slot'} = $returnValue{$i}{$thisKey}; # this puts it in two places, so remove the original
66
            delete $returnValue{$i}{$thisKey};
67
            last;
68
            }
69
         }
70
   }
71
 
72
   if (defined ($returnValue{$i}{'name'})) { # we need to not have this; it messes up the xml package
73
      $returnValue{$i}{'device name'} = $returnValue{$i}{'name'};
74
      delete $returnValue{$i}{'name'}
75
   }
76
   unless (defined ($returnValue{$i}{'name'})) { # no name, so see if we have one
77
      $returnValue{$i}{'name'} = 'Unknown';
78
      foreach my $thisKey ( 'slot', 'device', 'device0', 'sdevice', 'class', 'vendor', 'svendor' ) {
79
         if (defined($returnValue{$i}{$thisKey}) && ($returnValue{$i} ne 'Unknown') ) {
80
            $returnValue{$i}{'name'} = $returnValue{$i}{$thisKey};
81
            last;
82
         }
83
      }
84
   }
85
   $i++;
86
}
87
 
88
foreach my $key ( keys %returnValue ) {
89
   my $name = $returnValue{$key}{'name'};
90
   my $temp = $returnValue{$key};
91
   foreach my $info ( keys %$temp ) {
92
      print "$CATEGORY\t$name\t$info\t" . $$temp{$info} . "\n" unless $info eq 'name';
93
   }
94
}