Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 251 Rev 256
Line 1... Line 1...
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
use warnings;
2
use warnings;
3
use strict;
3
use strict;  
4
 
4
 
5
# Description: Processes libvirt Clients
5
use version ; our $VERSION = 'v1.0.0';
6
 
6
 
-
 
7
# Template for modules to be used in sysinfo
-
 
8
# Author: R. W. Rodolico
-
 
9
#         Breena Rodolico
7
our $VERSION = '1.0';
10
# Date:   2021-02-28
-
 
11
#
-
 
12
# Process libvirt clients
-
 
13
#
-
 
14
# Revision History
-
 
15
#
-
 
16
#
8
 
17
 
9
# Looks at various libvirt information about running virtuals
18
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
10
# Written by RWR and BNR, 20210228
-
 
11
 
-
 
12
# find our location and use it for searching for libraries
19
# or, if run interactively, in the parent of the modules
13
BEGIN {
20
BEGIN {
14
   use FindBin;
21
   use FindBin;
15
   use File::Spec;
22
   use File::Spec;
16
   use lib File::Spec->catdir($FindBin::Bin);
23
   # prepend the bin directory and its parent
17
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
24
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
18
   eval( 'use Data::Dumper;' );
25
   eval( 'use library;' );
-
 
26
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
19
}
27
}
20
 
28
 
-
 
29
#####
21
# check for valid OS. 
30
##### Change these to match your needs
-
 
31
#####
-
 
32
 
-
 
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 = {
22
exit 1 unless &checkOS( { 'linux' => undef } );
35
        'Data::Dumper'     => undef,
-
 
36
   };
23
 
37
 
24
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
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)
25
# script returns a 2
40
my $commandsList = {
-
 
41
        'virsh' => undef,
-
 
42
   };
-
 
43
 
-
 
44
# list of operating systems this module can be used on.
-
 
45
my $osList = {
-
 
46
#         'mswin32' => undef,
-
 
47
#         'freebsd' => undef,
-
 
48
         'linux'   => undef,
-
 
49
   };
-
 
50
 
-
 
51
# the category the return data should go into. See sysinfo for a list
-
 
52
my $CATEGORY = 'virtual';
-
 
53
 
-
 
54
#####
-
 
55
##### End of required
-
 
56
#####
-
 
57
 
-
 
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
-
 
61
 
-
 
62
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
26
foreach my $command ( 'virsh' ) {
63
for my $module ( keys %$modulesList ) {
-
 
64
   eval ( "use $module;" );
27
   exit 2 unless &validCommandOnSystem( $command );
65
   push @out, "$errorPrepend Could not load $module" if $@;
28
}
66
}
29
 
67
 
30
 
-
 
31
# category we will use for all values found
-
 
32
# see sysinfo for a list of valid categories
-
 
33
my $CATEGORY = 'xen';
-
 
34
 
-
 
35
# run the commands necessary to do whatever you want to do
-
 
36
# The library entered above has some helper routines
-
 
37
# validCommandOnSystem -- passed a name, returns the fully qualified path or
-
 
38
# '' if it does not exist
-
 
39
# cleanUp - passed a delimiter and a string, does the following (delimiter
-
 
40
# can be '')
-
 
41
#           chomps the string (removes trailing newlines)
-
 
42
#           removes all text BEFORE the delimiter, the delimiter, and any
-
 
43
# whitespace
-
 
44
#           thus, the string 'xxI Am x  a weird string' with a newline will
68
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
45
# become
-
 
46
#           'a weird string' with no newline
-
 
47
 
-
 
48
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
-
 
49
# item, name as recognized by sysinfo is the second and the value is
-
 
50
# the last one. For multiple entries, place on separate lines (ie, newline
-
 
51
# separated)
-
 
52
 
-
 
53
my $xl = 'virsh';
-
 
54
# print "My command is $xl\n";
-
 
55
exit 1 unless $xl;
-
 
56
$xl .= ' list';
-
 
57
# print "My command is $xl\n";
-
 
58
# die;
-
 
59
 
-
 
60
sub parseOutput {
-
 
61
   my $output = shift;
-
 
62
   my @lines = split( "\n", $output );
-
 
63
   my %domu;
-
 
64
   return ( 'noname' ) unless $lines[0] =~ m/^\s*id\s+name\s+state\s*$/i;
-
 
65
   for ( my $i = 2; $i < @lines; $i++ ) {
-
 
66
#      print "Working on $i, value is {$lines[$i]}\n";
-
 
67
      $lines[$i] =~ s/^\s*//;
-
 
68
#      print "After cleanup, value is {$lines[$i]}\n";
69
    push @out, "$errorPrepend Invalid Operating System";
69
      my ( $id,$name ) = split( /\s+/, $lines[$i] );
-
 
70
      $domu{$name}{'id'} = $id;
-
 
71
   }
-
 
72
   return \%domu;
-
 
73
}
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
   }
74
 
93
 
75
my $output = `$xl`;
94
   my $output = `virsh list`;
76
 
-
 
77
#print $output;
-
 
78
#die;
-
 
79
 
-
 
80
my $hier = &parseOutput( $output );
95
   my $hier = &parseOutput( $output );
81
 
96
 
-
 
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
   
82
#die;
104
   #####
-
 
105
   ##### Your code ends here.
-
 
106
   #####
-
 
107
}
83
 
108
 
84
foreach my $domu ( sort keys %$hier ) {
109
# If we are testing from the command line (caller is undef), print the results for debugging
85
   my $temp = $$hier{$domu};
-
 
86
   foreach my $key ( sort keys %$temp ) {
110
print join( "\n", @out ) . "\n" unless caller;
87
      print "$CATEGORY\tvirtual\t$domu\t$key\t$$temp{$key}\n";
111
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
88
   }
-
 
89
} # foreach
112
my $return = join( "\n", @out );
90
 
113
 
91
# if you have not done an exit state above (1 indicating no data), do one
-
 
92
# here (exit 0 indicates success)
-
 
93
# NOTE: you can bail early with exit 1 if you can not process anything
-
 
94
# because it is the wrong system or something
-
 
95
exit 0;
-