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
 
256 rodolico 5
use version ; our $VERSION = 'v1.0.0';
48 rodolico 6
 
256 rodolico 7
# Gets PCI information on BSD systems
48 rodolico 8
# Author: R. W. Rodolico
9
# Date:   2016-04-08
256 rodolico 10
#
48 rodolico 11
# gets information on pci information assuming lspci is installed
12
# I really don't remember how I wrote this originally, so I just put everything
13
# into the hash (as done in v2), then print the hash. Unneccessarily wasteful of memory
256 rodolico 14
#
15
# Revision History
16
#
17
#
48 rodolico 18
 
256 rodolico 19
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
20
# or, if run interactively, in the parent of the modules
48 rodolico 21
BEGIN {
251 rodolico 22
   use FindBin;
23
   use File::Spec;
256 rodolico 24
   # prepend the bin directory and its parent
25
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
26
   eval( 'use library;' );
27
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
48 rodolico 28
}
29
 
256 rodolico 30
#####
31
##### Change these to match your needs
32
#####
48 rodolico 33
 
256 rodolico 34
# Make this a list of all the modules we are going to use. You can replace undef with the version you need, if you like
35
my $modulesList = {
36
        'Data::Dumper'     => undef,
37
   };
48 rodolico 38
 
256 rodolico 39
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
40
# the full path (from which or where)
41
my $commandsList = {
42
        'pciconfig' => undef,
43
   };
44
 
45
# list of operating systems this module can be used on.
46
my $osList = {
47
#         'mswin32' => undef,
48
         'freebsd' => undef,
49
#         'linux'   => undef,
50
   };
51
 
52
# the category the return data should go into. See sysinfo for a list
48 rodolico 53
my $CATEGORY = 'pci';
54
 
256 rodolico 55
#####
56
##### End of required
57
#####
48 rodolico 58
 
256 rodolico 59
# some variables needed for our system
60
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
61
my @out; # temporary location for each line of output
48 rodolico 62
 
256 rodolico 63
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
64
for my $module ( keys %$modulesList ) {
65
   eval ( "use $module;" );
66
   push @out, "$errorPrepend Could not load $module" if $@;
48 rodolico 67
}
68
 
256 rodolico 69
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
70
    push @out, "$errorPrepend Invalid Operating System";
71
}
72
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
73
   push @out, "$errorPrepend Can not find some commands needed";
74
}
75
if ( !@out ) { # we made it, we have everything, so do the processing
76
   #####
77
   ##### Your code starts here. Remember to push all output onto @out
78
   #####
79
 
80
   my @pciInfo =  qx( pciconfig -lv);
48 rodolico 81
 
256 rodolico 82
   my %returnValue;
83
 
84
   chomp @pciInfo;
85
   my $slot = '';
86
   while ( my $line = shift( @pciInfo ) ) {
87
      if ( $line =~ m/^([^@]+)\@([^ ]+)\s+class=([^ ]+)\s+card=([^ ]+)\s+chip=([^ ]+)\s+rev=([^ ]+)\s+hdr=(.+)$/ ) {
88
         $slot = $2;
89
         $returnValue{$slot}{'driver'} = $1;
90
         $returnValue{$slot}{'class'} = $3;
91
         $returnValue{$slot}{'card'} = $4;
92
         $returnValue{$slot}{'chip'} = $5;
93
         $returnValue{$slot}{'revision'} = $6;
94
         $returnValue{$slot}{'header'} = $7;
95
      } else {
96
         my ($key, $value ) = split( '=', $line );
97
         $returnValue{$slot}{&cleanUp( ' ', $key )} = &cleanUp( ' ', $value );
98
      }
48 rodolico 99
   }
256 rodolico 100
 
101
 
102
   foreach my $key ( sort keys %returnValue ) {
103
      my $temp = $returnValue{$key};
104
      foreach my $info ( keys %$temp ) {
105
         push @out, "$CATEGORY\t$key\t$info\t" . $$temp{$info};
106
      }
107
   }
108
 
109
 
110
   #####
111
   ##### Your code ends here.
112
   #####
48 rodolico 113
}
256 rodolico 114
 
115
# If we are testing from the command line (caller is undef), print the results for debugging
116
print join( "\n", @out ) . "\n" unless caller;
117
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
118
my $return = join( "\n", @out );
119