55 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
|
|
3 |
use strict;
|
|
|
4 |
|
256 |
rodolico |
5 |
use version ; our $VERSION = 'v1.3.0';
|
55 |
rodolico |
6 |
|
256 |
rodolico |
7 |
# Disk usage for BSD Unix systems
|
55 |
rodolico |
8 |
# Author: R. W. Rodolico
|
256 |
rodolico |
9 |
# Date: 2025-04-02
|
|
|
10 |
#
|
56 |
rodolico |
11 |
# gets information on disks. Returns them as a hash
|
55 |
rodolico |
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
|
61 |
rodolico |
21 |
#
|
256 |
rodolico |
22 |
# Revision History
|
|
|
23 |
#
|
61 |
rodolico |
24 |
# v1.3 20180424 RWR
|
|
|
25 |
# Fixed bug when diskinfo generates an error. Will still send error
|
|
|
26 |
# to STDERR, but will not break program.
|
256 |
rodolico |
27 |
#
|
55 |
rodolico |
28 |
|
256 |
rodolico |
29 |
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
|
|
|
30 |
# or, if run interactively, in the parent of the modules
|
55 |
rodolico |
31 |
BEGIN {
|
251 |
rodolico |
32 |
use FindBin;
|
|
|
33 |
use File::Spec;
|
256 |
rodolico |
34 |
# prepend the bin directory and its parent
|
|
|
35 |
use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
|
|
|
36 |
eval( 'use library;' );
|
|
|
37 |
die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
|
55 |
rodolico |
38 |
}
|
|
|
39 |
|
256 |
rodolico |
40 |
#####
|
|
|
41 |
##### Change these to match your needs
|
|
|
42 |
#####
|
55 |
rodolico |
43 |
|
256 |
rodolico |
44 |
# 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
|
|
|
45 |
my $modulesList = {
|
|
|
46 |
'Data::Dumper' => undef,
|
|
|
47 |
};
|
197 |
rodolico |
48 |
|
256 |
rodolico |
49 |
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
|
|
|
50 |
# the full path (from which or where)
|
|
|
51 |
my $commandsList = {
|
|
|
52 |
'sysctl' => undef,
|
|
|
53 |
};
|
55 |
rodolico |
54 |
|
256 |
rodolico |
55 |
# list of operating systems this module can be used on.
|
|
|
56 |
my $osList = {
|
|
|
57 |
# 'mswin32' => undef,
|
|
|
58 |
'freebsd' => undef,
|
|
|
59 |
# 'linux' => undef,
|
|
|
60 |
};
|
|
|
61 |
|
|
|
62 |
# the category the return data should go into. See sysinfo for a list
|
56 |
rodolico |
63 |
my $CATEGORY = 'diskinfo';
|
55 |
rodolico |
64 |
|
256 |
rodolico |
65 |
#####
|
|
|
66 |
##### End of required
|
|
|
67 |
#####
|
56 |
rodolico |
68 |
|
256 |
rodolico |
69 |
# some variables needed for our system
|
|
|
70 |
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
|
|
|
71 |
my @out; # temporary location for each line of output
|
|
|
72 |
|
|
|
73 |
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
|
|
|
74 |
for my $module ( keys %$modulesList ) {
|
|
|
75 |
eval ( "use $module;" );
|
|
|
76 |
push @out, "$errorPrepend Could not load $module" if $@;
|
55 |
rodolico |
77 |
}
|
|
|
78 |
|
256 |
rodolico |
79 |
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
|
|
|
80 |
push @out, "$errorPrepend Invalid Operating System";
|
|
|
81 |
}
|
|
|
82 |
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
|
|
|
83 |
push @out, "$errorPrepend Can not find some commands needed";
|
|
|
84 |
}
|
|
|
85 |
if ( !@out ) { # we made it, we have everything, so do the processing
|
|
|
86 |
#####
|
|
|
87 |
##### Your code starts here. Remember to push all output onto @out
|
|
|
88 |
#####
|
|
|
89 |
|
|
|
90 |
my $temp = getSysctlParameter( 'sysctl', 'kern.disks' );
|
|
|
91 |
my @disks = split( /\s+/, $temp );
|
|
|
92 |
foreach my $device ( @disks ) {
|
|
|
93 |
next unless eval { $temp = qx( diskinfo $device ); };
|
|
|
94 |
chomp $temp;
|
|
|
95 |
my @info = split( /\s+/, $temp );
|
|
|
96 |
$temp = $info[2] / 1024;
|
|
|
97 |
push @out, "$CATEGORY\t/dev/$device\tsize\t$temp";
|
|
|
98 |
}
|
|
|
99 |
|
|
|
100 |
|
|
|
101 |
#####
|
|
|
102 |
##### Your code ends here.
|
|
|
103 |
#####
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
# If we are testing from the command line (caller is undef), print the results for debugging
|
|
|
107 |
print join( "\n", @out ) . "\n" unless caller;
|
|
|
108 |
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
|
|
|
109 |
my $return = join( "\n", @out );
|
|
|
110 |
|