Subversion Repositories camp_sysinfo_client_3

Rev

Rev 254 | 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.0.0';
2 rodolico 6
 
256 rodolico 7
# Template for modules to be used in sysinfo
8
# Author: R. W. Rodolico
9
# Date:   2025-04-02
10
#
11
# Enter some information about system here
12
#
13
# Revision History
14
#
15
# 20250402 v4.0.0 Rodolico
16
# Modified for v4 of sysinfo_client, using extended tests for modules, files used and operating systems
17
# Underlying code remains unchanged
18
#
37 rodolico 19
 
256 rodolico 20
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
21
# or, if run interactively, in the parent of the modules
2 rodolico 22
BEGIN {
165 rodolico 23
   use FindBin;
24
   use File::Spec;
256 rodolico 25
   # prepend the bin directory and its parent
26
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
165 rodolico 27
   eval( 'use library;' );
256 rodolico 28
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
2 rodolico 29
}
30
 
256 rodolico 31
#####
32
##### Change these to match your needs
33
#####
251 rodolico 34
 
256 rodolico 35
# 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
36
my $modulesList = {
37
        'Data::Dumper'     => undef,
38
   };
251 rodolico 39
 
256 rodolico 40
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
41
# the full path (from which or where)
42
my $commandsList = {
43
        'dpkg' => undef,
44
        'grep' => undef,
45
   };
2 rodolico 46
 
256 rodolico 47
# list of operating systems this module can be used on.
48
my $osList = {
49
#         'mswin32' => undef,
50
         'freebsd' => undef,
51
#         'linux'   => undef,
52
   };
2 rodolico 53
 
256 rodolico 54
# the category the return data should go into. See sysinfo for a list
55
my $CATEGORY = 'software';
20 rodolico 56
 
256 rodolico 57
#####
58
##### End of required
59
#####
60
 
61
# some variables needed for our system
62
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
63
my @out; # temporary location for each line of output
64
 
65
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
66
for my $module ( keys %$modulesList ) {
67
   eval ( "use $module;" );
68
   push @out, "$errorPrepend Could not load $module" if $@;
2 rodolico 69
}
70
 
256 rodolico 71
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
72
    push @out, "$errorPrepend Invalid Operating System";
73
}
74
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
75
   push @out, "$errorPrepend Can not find some commands needed";
76
}
77
if ( !@out ) { # we made it, we have everything, so do the processing
78
   #####
79
   ##### Your code starts here. Remember to push all output onto @out
80
   #####
81
 
82
   # sample for dpkg on Debian based systems
83
   my @packages  = split( "\n", qx(dpkg -l | grep ^i) );
84
   chomp @packages;
85
 
86
   for ( my $i = 0; $i < @packages; $i++ ) {
87
      utf8::encode( $packages[$i] );
88
      my ($status,$package, $version, @description) = split ' ', $packages[$i];
89
      push @out, "$CATEGORY\t$package\tversion\t$version";
90
      push @out, "$CATEGORY\t$package\tdescription\t" . join(" ", @description);
91
   }
92
 
93
   #####
94
   ##### Your code ends here.
95
   #####
96
}
97
 
98
# If we are testing from the command line (caller is undef), print the results for debugging
99
print join( "\n", @out ) . "\n" unless caller;
100
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
101
my $return = join( "\n", @out );
102