Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | 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
 
256 rodolico 5
use version ; our $VERSION = 'v1.2.0';
20 rodolico 6
 
256 rodolico 7
# Disk usage for Unix system
20 rodolico 8
# Author: R. W. Rodolico
9
# Date:   2016-04-08
256 rodolico 10
#
2 rodolico 11
# gets information on disks and partitions. Returns them as a hash
12
# uses standard df -kT and parses the output
13
# skips anything that does not have a device with /dev in it
14
# assumes the structure of the output is:
15
# device fstype size usedSpace availableSpace percentSpace mountPoint
16
# however, the output can sometimes wrap to multi lines, especially if the 
17
# device is long. So, we will replace all newlines with spaces, then 
18
# remove space duplications, then split on spaces and process each item in
19
# turn.
20
# NOTE: this will totally break if you have spaces in your mount point
256 rodolico 21
#
22
# Revision History
23
#
2 rodolico 24
 
256 rodolico 25
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
26
# or, if run interactively, in the parent of the modules
2 rodolico 27
BEGIN {
251 rodolico 28
   use FindBin;
29
   use File::Spec;
256 rodolico 30
   # prepend the bin directory and its parent
31
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
251 rodolico 32
   eval( 'use library;' );
256 rodolico 33
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
2 rodolico 34
}
35
 
256 rodolico 36
#####
37
##### Change these to match your needs
38
#####
2 rodolico 39
 
256 rodolico 40
# 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
41
my $modulesList = {
42
        'Data::Dumper'     => undef,
43
   };
2 rodolico 44
 
256 rodolico 45
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
46
# the full path (from which or where)
47
my $commandsList = {
48
        'df' => undef,
49
   };
50
 
51
# list of operating systems this module can be used on.
52
my $osList = {
53
#         'mswin32' => undef,
54
         'freebsd' => undef,
55
         'linux'   => undef,
56
   };
57
 
58
# the category the return data should go into. See sysinfo for a list
2 rodolico 59
my $CATEGORY = 'diskinfo';
60
 
256 rodolico 61
#####
62
##### End of required
63
#####
64
 
65
# some variables needed for our system
66
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
67
my @out; # temporary location for each line of output
68
 
69
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
70
for my $module ( keys %$modulesList ) {
71
   eval ( "use $module;" );
72
   push @out, "$errorPrepend Could not load $module" if $@;
2 rodolico 73
}
256 rodolico 74
 
75
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
76
    push @out, "$errorPrepend Invalid Operating System";
77
}
78
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
79
   push @out, "$errorPrepend Can not find some commands needed";
80
}
81
if ( !@out ) { # we made it, we have everything, so do the processing
82
   #####
83
   ##### Your code starts here. Remember to push all output onto @out
84
   #####
85
 
86
   # process physical partitions
87
   my $temp = qx/df -kT/; # execute the system command df, returned values in kilobytes, showing file system types
88
   my @temp = split("\n", $temp ); # get array of lines
89
   shift @temp; # get rid of the first line . . . it is nothing but header info
90
   $temp = join( ' ', @temp ); # rejoin everything back with spaces
91
   $temp =~ s/ +/ /gi; # remove all duplicate spaces
92
   @temp = split( ' ', $temp ); # turn it back into an array of space separated values
93
   while (@temp) {
94
      my $device = shift @temp; # get the device name
95
      my $output = '';
96
      $output .=  "$CATEGORY\t$device\tfstype\t" . (shift @temp) . "\n"; # next is fs type
97
      $output .=  "$CATEGORY\t$device\tsize\t" . (shift @temp) . "\n"; # total partition size, in k
98
      $output .=  "$CATEGORY\t$device\tused\t" . (shift @temp) . "\n"; # disk usage, in k
99
      shift @temp; # $available, not recorded
100
      shift @temp; # $percent, not recorded
101
      $output .=  "$CATEGORY\t$device\tmount\t" . (shift @temp) . "\n"; # mount point
102
      # now, if it is a /dev device, we add it to the diskInfo hash
103
      push @out, $output if $device =~ m/\/dev/;
104
   }
105
 
106
   #####
107
   ##### Your code ends here.
108
   #####
109
}
110
 
111
# If we are testing from the command line (caller is undef), print the results for debugging
112
print join( "\n", @out ) . "\n" unless caller;
113
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
114
my $return = join( "\n", @out );
115