Subversion Repositories camp_sysinfo_client_3

Rev

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

Rev Author Line No. Line
25 rodolico 1
#!/usr/bin/env perl
2
use warnings;
256 rodolico 3
use strict;  
25 rodolico 4
 
256 rodolico 5
use version ; our $VERSION = '1.1.1';
25 rodolico 6
 
256 rodolico 7
# Author: R. W. Rodolico
8
# Date:   2016-09-11
9
#
25 rodolico 10
# Looks at various Xen parameters, mainly which DOMU's are running on it
256 rodolico 11
#
12
# Revision History
13
#
14
# 20250403 RWR v1.1.1
15
# changed parseOutput to parseXenOutput to avoid conflict with libvirt module
16
#
25 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
25 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/..");
251 rodolico 25
   eval( 'use library;' );
256 rodolico 26
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
25 rodolico 27
}
28
 
256 rodolico 29
#####
30
##### Change these to match your needs
31
#####
25 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
        'xl' => undef,
42
   };
25 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
   };
25 rodolico 50
 
256 rodolico 51
# the category the return data should go into. See sysinfo for a list
52
my $CATEGORY = 'virtual';
25 rodolico 53
 
256 rodolico 54
#####
55
##### End of required
56
#####
25 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
61
 
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 $@;
66
}
67
 
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 parseXenOutput {
80
      my $output = shift;
81
      my @lines = split( "\n", $output );
82
      my %domu;
83
      return ( 'noname' ) unless $lines[0] =~ m/^Name/;
84
      return ( 'baddomu') unless $lines[1] =~ m/^Domain-0/;
85
      for ( my $i = 2; $i < @lines; $i++ ) {
86
         my ( $name,$id,$mem,$vcpu,$state,$time) = split( /\s+/, $lines[$i] );
87
         $domu{$name}{'id'} = $id;
88
         $domu{$name}{'memory'} = $mem;
89
         $domu{$name}{'numcpu'} = $vcpu;
90
      }
91
      return \%domu;
25 rodolico 92
   }
256 rodolico 93
 
94
   my $output = `xl list`;
95
   my $hier = &parseXenOutput( $output );
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}";
101
      }
102
   } # foreach
103
 
104
   #####
105
   ##### Your code ends here.
106
   #####
25 rodolico 107
}
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 );
25 rodolico 113