20 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
251 |
rodolico |
3 |
use strict;
|
2 |
rodolico |
4 |
|
251 |
rodolico |
5 |
use Data::Dumper;
|
|
|
6 |
|
116 |
rodolico |
7 |
# modified 20190419 RWR
|
|
|
8 |
# changed cleanup to remove encapsulating quotes
|
169 |
rodolico |
9 |
#
|
165 |
rodolico |
10 |
# 20200220 RWR v1.4.1
|
|
|
11 |
# added trim
|
169 |
rodolico |
12 |
# 20200224 RWR v1.4.2
|
|
|
13 |
# Added tableToHash
|
250 |
rodolico |
14 |
# 20250327 RWR v1.4.3
|
251 |
rodolico |
15 |
# Created new sub checkOS which is passed a hash with the keys containing the operating systems we need
|
|
|
16 |
# modified getOS to return the lower case of $^O. getOS is now deprecated in favor or checkOS, but left for
|
|
|
17 |
# backwards compatibility
|
|
|
18 |
# modified validCommandOnSystem to be compatible with Win32
|
165 |
rodolico |
19 |
|
250 |
rodolico |
20 |
|
37 |
rodolico |
21 |
# Description: Library used by modules. Do NOT enable
|
20 |
rodolico |
22 |
|
250 |
rodolico |
23 |
our $VERSION = '1.4.3';
|
37 |
rodolico |
24 |
|
256 |
rodolico |
25 |
#use Exporter 'import';
|
|
|
26 |
#our @ISA = qw( Exporter );
|
|
|
27 |
#our @EXPORT_OK = qw ( checkOS );
|
|
|
28 |
#our %EXPORT_TAGS = (
|
|
|
29 |
# default => [ qw(checkOS ) ]
|
|
|
30 |
# );
|
|
|
31 |
|
2 |
rodolico |
32 |
# set of libraries to be used by these modules
|
|
|
33 |
|
169 |
rodolico |
34 |
# parameters
|
|
|
35 |
# $report - a reference to a report array (one line per row)
|
|
|
36 |
# $headerRegex - optional regex to locate the first (header) line.
|
|
|
37 |
# $delimiter - optional delimiter used between header columns
|
|
|
38 |
# if $headerRegex is not defined, assumes first line is the headers
|
|
|
39 |
# if delimiter is not defined, assumes space is the delimitere
|
|
|
40 |
#
|
|
|
41 |
# Determines the field widths based on the header line
|
|
|
42 |
# processes each line in turn, returning an array ref, where each
|
|
|
43 |
# row is a hash ref. The hash ref has the key from the header, and
|
|
|
44 |
# the value found in the row.
|
2 |
rodolico |
45 |
|
169 |
rodolico |
46 |
sub tableToHash {
|
|
|
47 |
my ($report, $headerRegex, $delimiter) = @_;
|
|
|
48 |
my @return;
|
|
|
49 |
my %headers;
|
|
|
50 |
# get rid of any line returns at the end.
|
|
|
51 |
chomp @{$report};
|
|
|
52 |
my $lineNum = 0;
|
|
|
53 |
# bypass all the header information, if $headerRegex is defined
|
|
|
54 |
if ( $headerRegex ) {
|
|
|
55 |
for ( $lineNum = 0; $lineNum < @{$report} && ${$report}[$lineNum] !~ m/$headerRegex/; $lineNum++ ) {}
|
|
|
56 |
}
|
|
|
57 |
if ( $lineNum < @{$report} ) { # did we get an actual report? some drives will not give us one
|
|
|
58 |
# first, process the header line and get the start position and the length
|
|
|
59 |
my $char = 0;
|
|
|
60 |
while ( $char < length(${$report}[$lineNum]) ) {
|
|
|
61 |
substr( ${$report}[$lineNum],$char ) =~ m/^([^ ]+\s*)/;
|
|
|
62 |
my $header = $1;
|
|
|
63 |
my $start = $char;
|
|
|
64 |
my $length = length($header);
|
|
|
65 |
if ( $header = &trim( $header ) ) {
|
|
|
66 |
$headers{$header}{'start'} = $start;
|
|
|
67 |
# note that if this is the last header, we do NOT want a lenght attribute
|
|
|
68 |
$headers{$header}{'length'} = $length-1 if $length + $char < length(${$report}[$lineNum]);
|
|
|
69 |
}
|
|
|
70 |
$char += $length;
|
|
|
71 |
}
|
|
|
72 |
# now, get the data from all the following lines
|
|
|
73 |
while ( ++$lineNum < @{$report} ) {
|
|
|
74 |
last unless ${$report}[$lineNum]; # first blank line bails
|
|
|
75 |
my %thisLine;
|
|
|
76 |
foreach my $thisHeader (keys %headers) {
|
|
|
77 |
$thisLine{$thisHeader} = &trim(
|
|
|
78 |
defined( $headers{$thisHeader}{'length'} ) ?
|
|
|
79 |
substr( ${$report}[$lineNum], $headers{$thisHeader}{'start'}, $headers{$thisHeader}{'length'} )
|
|
|
80 |
: # if no length defined, grab everything to the end of the line
|
|
|
81 |
substr( ${$report}[$lineNum], $headers{$thisHeader}{'start'} )
|
|
|
82 |
);
|
|
|
83 |
}
|
|
|
84 |
push @return, \%thisLine;
|
|
|
85 |
}
|
|
|
86 |
}
|
|
|
87 |
return \@return;
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
|
|
|
91 |
|
|
|
92 |
|
20 |
rodolico |
93 |
# cleanUp - passed a delimiter and a string, does the following (delimiter can be '')
|
|
|
94 |
# chomps the string (removes trailing newlines)
|
|
|
95 |
# removes all text BEFORE the delimiter, the delimiter, and any whitespace
|
|
|
96 |
# thus, the string 'xxI Am x a weird string' with a newline will become
|
|
|
97 |
# 'a weird string' with no newline
|
116 |
rodolico |
98 |
# will also look for single and double quotes surrounding entire string and remove them
|
117 |
rodolico |
99 |
# if they exist
|
20 |
rodolico |
100 |
|
2 |
rodolico |
101 |
sub cleanUp {
|
|
|
102 |
my ($delimiter, $text) = @_;
|
|
|
103 |
chomp $text;
|
117 |
rodolico |
104 |
if ( $delimiter && $text =~ m/[^$delimiter]*$delimiter\s*(.*)/ ) {
|
116 |
rodolico |
105 |
$text = $1;
|
|
|
106 |
}
|
|
|
107 |
if ( $text =~ m/^'(.*)'$/ ) {
|
|
|
108 |
$text = $1;
|
|
|
109 |
}
|
|
|
110 |
if ( $text =~ m/^"(.*)"$/ ) {
|
|
|
111 |
$text = $1;
|
|
|
112 |
}
|
|
|
113 |
return $text;
|
2 |
rodolico |
114 |
}
|
|
|
115 |
|
165 |
rodolico |
116 |
# remove leading and trailing spaces from string
|
|
|
117 |
sub trim {
|
|
|
118 |
my $value = shift;
|
|
|
119 |
$value =~ s/^\s+|\s+$//g if $value;
|
|
|
120 |
return $value;
|
|
|
121 |
}
|
|
|
122 |
|
2 |
rodolico |
123 |
# checks if a command is valid on this system. If so, returns the full path to it
|
251 |
rodolico |
124 |
# else, returns empty string. Theoretically valid for Unix and Windows systems (tested Win10, Server 2019)
|
2 |
rodolico |
125 |
sub validCommandOnSystem {
|
256 |
rodolico |
126 |
my $commandList = shift;
|
|
|
127 |
my $ok = 1;
|
|
|
128 |
foreach my $command (keys %$commandList ) {
|
|
|
129 |
# Windows uses 'where' while Unix uses which. Tested only on Windows Server
|
|
|
130 |
$commandList->{$command} = lc $^O eq 'mswin32' ? `where $command 2> nul` : `which $command 2> /dev/null`;
|
|
|
131 |
chomp $commandList->{$command};
|
|
|
132 |
$ok = 0 unless $commandList->{$command};
|
|
|
133 |
}
|
|
|
134 |
return $ok;
|
|
|
135 |
#chomp $command;
|
|
|
136 |
#return -x $command ? $command : '';
|
2 |
rodolico |
137 |
}
|
|
|
138 |
|
251 |
rodolico |
139 |
# when passed a hashref containing the lower case of operating systems
|
|
|
140 |
# which can be used as keys, will return true if the operating system
|
|
|
141 |
# we are on is there.
|
|
|
142 |
#
|
|
|
143 |
# exit unless &checkOS( { 'linux' => undef, 'freebsd' => 1, 'mswin32' => undef } );
|
|
|
144 |
# the value can be anything, defined only checks for the key. For maximum
|
|
|
145 |
# efficiency, use undef as it uses a lot less space than any value
|
|
|
146 |
sub checkOS {
|
|
|
147 |
my $valid = shift;
|
|
|
148 |
return exists $valid->{lc $^O};
|
|
|
149 |
}
|
48 |
rodolico |
150 |
|
251 |
rodolico |
151 |
sub getOS {
|
|
|
152 |
return lc $^O;
|
|
|
153 |
}
|
|
|
154 |
|
55 |
rodolico |
155 |
sub getSysctlParameter {
|
|
|
156 |
my ( $sysctl, $parameter ) = @_;
|
|
|
157 |
my $result = qx( $sysctl $parameter );
|
|
|
158 |
chomp $result;
|
|
|
159 |
$result =~ s/$parameter:\s*//;
|
|
|
160 |
return $result;
|
|
|
161 |
}
|
|
|
162 |
|
152 |
rodolico |
163 |
# simple function to return true if the current date is the first of the week, month or year
|
|
|
164 |
# parameter passed in is 'w' (weekly), 'm' (monthly) or 'y' (yearly)
|
|
|
165 |
# to have a test run only weekly, place
|
|
|
166 |
# exit 1 unless &checkDate( 'w' );
|
|
|
167 |
sub checkDate {
|
153 |
rodolico |
168 |
return 1 if -e '/tmp/sysinfo.firstrun';
|
152 |
rodolico |
169 |
my $frequency = lc shift;
|
|
|
170 |
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
|
|
|
171 |
return $mday == 1 if $frequency eq 'm'; # monthly
|
|
|
172 |
return $wday == 1 if $frequency eq 'w'; # weekly
|
|
|
173 |
return $yday == 1 if $frequency eq 'y'; # yearly
|
|
|
174 |
return 0; # we failed
|
|
|
175 |
}
|
|
|
176 |
|
|
|
177 |
|
20 |
rodolico |
178 |
1;
|