Subversion Repositories camp_sysinfo_client_3

Rev

Details | Last modification | View Log | RSS feed

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