Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
189 rodolico 1
#!/usr/bin/env perl
2
use warnings;
256 rodolico 3
use strict;  
189 rodolico 4
 
256 rodolico 5
use version ; our $VERSION = 'v1.0.0';
189 rodolico 6
 
256 rodolico 7
# Template for modules to be used in sysinfo
8
# Author: R. W. Rodolico
9
#         Breena Rodolico
10
# Date:   2021-02-28
11
#
12
# Process libvirt clients
13
#
14
# Revision History
15
#
16
#
189 rodolico 17
 
256 rodolico 18
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
19
# or, if run interactively, in the parent of the modules
189 rodolico 20
BEGIN {
251 rodolico 21
   use FindBin;
22
   use File::Spec;
256 rodolico 23
   # prepend the bin directory and its parent
24
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
25
   eval( 'use library;' );
26
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
189 rodolico 27
}
28
 
256 rodolico 29
#####
30
##### Change these to match your needs
31
#####
189 rodolico 32
 
256 rodolico 33
# 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
34
my $modulesList = {
35
        'Data::Dumper'     => undef,
36
   };
251 rodolico 37
 
256 rodolico 38
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
39
# the full path (from which or where)
40
my $commandsList = {
41
        'virsh' => undef,
42
   };
251 rodolico 43
 
256 rodolico 44
# list of operating systems this module can be used on.
45
my $osList = {
46
#         'mswin32' => undef,
47
#         'freebsd' => undef,
48
         'linux'   => undef,
49
   };
189 rodolico 50
 
256 rodolico 51
# the category the return data should go into. See sysinfo for a list
52
my $CATEGORY = 'virtual';
189 rodolico 53
 
256 rodolico 54
#####
55
##### End of required
56
#####
189 rodolico 57
 
256 rodolico 58
# some variables needed for our system
59
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
60
my @out; # temporary location for each line of output
189 rodolico 61
 
256 rodolico 62
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
63
for my $module ( keys %$modulesList ) {
64
   eval ( "use $module;" );
65
   push @out, "$errorPrepend Could not load $module" if $@;
189 rodolico 66
}
67
 
256 rodolico 68
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
69
    push @out, "$errorPrepend Invalid Operating System";
70
}
71
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
72
   push @out, "$errorPrepend Can not find some commands needed";
73
}
74
if ( !@out ) { # we made it, we have everything, so do the processing
75
   #####
76
   ##### Your code starts here. Remember to push all output onto @out
77
   #####
78
 
79
   sub parseOutput {
80
      my $output = shift;
81
      my @lines = split( "\n", $output );
82
      my %domu;
83
      return ( 'noname' ) unless $lines[0] =~ m/^\s*id\s+name\s+state\s*$/i;
84
      for ( my $i = 2; $i < @lines; $i++ ) {
85
   #      print "Working on $i, value is {$lines[$i]}\n";
86
         $lines[$i] =~ s/^\s*//;
87
   #      print "After cleanup, value is {$lines[$i]}\n";
88
         my ( $id,$name ) = split( /\s+/, $lines[$i] );
89
         $domu{$name}{'id'} = $id;
90
      }
91
      return \%domu;
92
   }
190 rodolico 93
 
256 rodolico 94
   my $output = `virsh list`;
95
   my $hier = &parseOutput( $output );
190 rodolico 96
 
256 rodolico 97
   foreach my $domu ( sort keys %$hier ) {
98
      my $temp = $$hier{$domu};
99
      foreach my $key ( sort keys %$temp ) {
100
         push @out, "$CATEGORY\tvirtual\t$domu\t$key\t$$temp{$key}\n";
101
      }
102
   } # foreach
103
 
104
   #####
105
   ##### Your code ends here.
106
   #####
107
}
189 rodolico 108
 
256 rodolico 109
# If we are testing from the command line (caller is undef), print the results for debugging
110
print join( "\n", @out ) . "\n" unless caller;
111
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
112
my $return = join( "\n", @out );
190 rodolico 113