/usr/share/perl5/RRDp.pm is in librrdp-perl 1.5.5-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | package RRDp;
=head1 NAME
RRDp - Attach RRDtool from within a perl script via a set of pipes;
=head1 SYNOPSIS
use B<RRDp>
B<RRDp::start> I<path to RRDtool executable>
B<RRDp::cmd> I<rrdtool commandline>
$answer = B<RRD::read>
$status = B<RRD::end>
B<$RRDp::user>, B<$RRDp::sys>, B<$RRDp::real>, B<$RRDp::error_mode>, B<$RRDp::error>
=head1 DESCRIPTION
With this module you can safely communicate with the RRDtool.
After every B<RRDp::cmd> you have to issue an B<RRDp::read> command to get
B<RRDtool>s answer to your command. The answer is returned as a pointer,
in order to speed things up. If the last command did not return any
data, B<RRDp::read> will return an undefined variable.
If you import the PERFORMANCE variables into your namespace,
you can access RRDtool's internal performance measurements.
=over 8
=item use B<RRDp>
Load the RRDp::pipe module.
=item B<RRDp::start> I<path to RRDtool executable>
start RRDtool. The argument must be the path to the RRDtool executable
=item B<RRDp::cmd> I<rrdtool commandline>
pass commands on to RRDtool. Check the RRDtool documentation for
more info on the RRDtool commands.
B<Note>: Due to design limitations, B<RRDp::cmd> does not support the
C<graph -> command - use C<graphv -> instead.
=item $answer = B<RRDp::read>
read RRDtool's response to your command. Note that the $answer variable will
only contain a pointer to the returned data. The reason for this is, that
RRDtool can potentially return quite excessive amounts of data
and we don't want to copy this around in memory. So when you want to
access the contents of $answer you have to use $$answer which dereferences
the variable.
=item $status = B<RRDp::end>
terminates RRDtool and returns RRDtool's status ...
=item B<$RRDp::user>, B<$RRDp::sys>, B<$RRDp::real>
these variables will contain totals of the user time, system time and
real time as seen by RRDtool. User time is the time RRDtool is
running, System time is the time spend in system calls and real time
is the total time RRDtool has been running.
The difference between user + system and real is the time spent
waiting for things like the hard disk and new input from the Perl
script.
=item B<$RRDp::error_mode> and B<$RRDp::error>
If you set the variable $RRDp::error_mode to the value 'catch' before you run RRDp::read a potential
ERROR message will not cause the program to abort but will be returned in this variable. If no error
occurs the variable will be empty.
$RRDp::error_mode = 'catch';
RRDp::cmd qw(info file.rrd);
print $RRDp::error if $RRDp::error;
=back
=head1 EXAMPLE
use RRDp;
RRDp::start "/usr/local/bin/rrdtool";
RRDp::cmd qw(create demo.rrd --step 100
DS:in:GAUGE:100:U:U
RRA:AVERAGE:0.5:1:10);
$answer = RRDp::read;
print $$answer;
($usertime,$systemtime,$realtime) = ($RRDp::user,$RRDp::sys,$RRDp::real);
=head1 SEE ALSO
For more information on how to use RRDtool, check the manpages.
=head1 AUTHOR
Tobias Oetiker <tobi@oetiker.ch>
=cut
#' this is to make cperl.el happy
use strict;
use Fcntl;
use Carp;
use IO::Handle;
use IPC::Open2;
use vars qw($Sequence $RRDpid $VERSION);
my $Sequence;
my $RRDpid;
# Prototypes
sub start ($);
sub cmd (@);
sub end ();
sub read ();
$VERSION=1.4003;
sub start ($){
croak "rrdtool is already running"
if defined $Sequence;
$Sequence = 'S';
my $rrdtool = shift @_;
$RRDpid = open2 \*RRDreadHand,\*RRDwriteHand, $rrdtool,"-"
or croak "Can't Start rrdtool: $!";
RRDwriteHand->autoflush(); #flush after every write
fcntl RRDreadHand, F_SETFL,O_NONBLOCK|O_NDELAY; #make readhandle NON BLOCKING
return $RRDpid;
}
sub read () {
croak "RRDp::read can only be called after RRDp::cmd"
unless $Sequence eq 'C';
$RRDp::error = undef;
$Sequence = 'R';
my $inmask = 0;
my $srbuf;
my $minibuf;
my $buffer;
my $nfound;
my $timeleft;
vec($inmask,fileno(RRDreadHand),1) = 1; # setup select mask for Reader
while (1) {
my $rout;
$nfound = select($rout=$inmask,undef,undef,2);
if ($nfound == 0 ) {
# here, we could do something sensible ...
next;
}
sysread(RRDreadHand,$srbuf,4096);
$minibuf .= $srbuf;
while ($minibuf =~ s|^(.+?)\n||s) {
my $line = $1;
# print $line,"\n";
$RRDp::error = undef;
if ($line =~ m|^ERROR|) {
$RRDp::error_mode eq 'catch' ? $RRDp::error = $line : croak $line;
$RRDp::sys = undef;
$RRDp::user = undef;
$RRDp::real = undef;
return undef;
}
elsif ($line =~ m|^OK(?: u:([\d\.]+) s:([\d\.]+) r:([\d\.]+))?|){
($RRDp::sys,$RRDp::user,$RRDp::real)=($1,$2,$3);
return \$buffer;
} else {
$buffer .= $line. "\n";
}
}
}
}
sub cmd (@){
croak "RRDp::cmd can only be called after RRDp::read or RRDp::start"
unless $Sequence eq 'R' or $Sequence eq 'S';
$Sequence = 'C';
my $cmd = join " ", @_;
if ($Sequence ne 'S') {
}
$cmd =~ s/\n/ /gs;
$cmd =~ s/\s/ /gs;
# The generated graphs aren't necessarily terminated by a newline,
# causing RRDp::read() to wait for a line matching '^OK' forever.
if ($cmd =~ m/^\s*graph\s+-\s+/) {
croak "RRDp does not support the 'graph -' command - "
. "use 'graphv -' instead";
}
print RRDwriteHand "$cmd\n";
}
sub end (){
croak "RRDp::end can only be called after RRDp::start"
unless $Sequence;
close RRDwriteHand;
close RRDreadHand;
$Sequence = undef;
waitpid $RRDpid,0;
return $?
}
1;
|