Subversion Repositories camp_sysinfo_client_3

Rev

Rev 255 | Details | Compare with Previous | Last modification | View Log | RSS feed

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