/usr/share/perl5/Paranoid/Log/Buffer.pm is in libparanoid-perl 0.34-1.
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | # Paranoid::Log::Buffer -- Log buffer support for paranoid programs
#
# (c) 2005, Arthur Corliss <corliss@digitalmages.com>
#
# $Id: Buffer.pm,v 0.83 2010/06/03 19:03:46 acorliss Exp $
#
# This software is licensed under the same terms as Perl, itself.
# Please see http://dev.perl.org/licenses/ for more information.
#
#####################################################################
#####################################################################
#
# Environment definitions
#
#####################################################################
package Paranoid::Log::Buffer;
use 5.006;
use strict;
use warnings;
use vars qw($VERSION);
use Paranoid::Debug qw(:all);
use Carp;
($VERSION) = ( q$Revision: 0.83 $ =~ /(\d+(?:\.(\d+))+)/sm );
#####################################################################
#
# Module code follows
#
#####################################################################
{
# Buffers
my %buffers = ();
sub _getBuffer ($) {
# Purpose: Retrieves the named buffer (which is an array ref).
# Creates the array on the fly if it doesn't exist.
# Returns: Array ref
# False (0) if there are any errors
# Usage: $ref = _getBuffer($name);
my $name = shift;
$buffers{$name} = [] unless exists $buffers{$name};
return $buffers{$name};
}
sub _delBuffer ($) {
# Purpose: Deletes the named buffer from the hash.
# Returns: True (1)
# Usage: _delBuffer($name);
my $name = shift;
delete $buffers{$name} if exists $buffers{$name};
return 1;
}
sub init () {
# Purpose: Empties the named buffer hash
# Returns: True (1)
# Usage: init();
%buffers = ();
return 1;
}
}
sub remove ($) {
# Purpose: Removes the requested buffer
# Returns: Return value of _delBuffer()
# Usage: $rv = remove($name);
my $name = shift;
return _delBuffer($name);
}
sub log ($$$$$$$$) {
# Purpose: Logs the passed message to the named buffer, trimming excess
# messages as needed
# Returns: True (1)
# Usage: log($msgtime, $severity, $message, $name, $facility, $level,
# $scope);
# Usage: log($msgtime, $severity, $message, $name, $facility, $level,
# $scope, $buffSize);
my $msgtime = shift;
my $severity = shift;
my $message = shift;
my $name = shift;
my $facility = shift;
my $level = shift;
my $scope = shift;
my $buffSize = shift;
my $barg = defined $buffSize ? $buffSize : 'undef';
my $buffer = _getBuffer($name);
# Validate arguments
croak 'Mandatory third argument must be a valid message'
unless defined $message;
croak 'Mandatory fourth argument must be a defined buffer name'
unless defined $name;
pdebug(
"entering w/($msgtime)($severity)($message)($name)($facility)"
. "($level)($scope)($barg)",
PDLEVEL1
);
pIn();
# Buffer size defaults to twenty entries
$buffSize = 20 unless defined $buffSize and $buffSize > 0;
# Message time defaults to current time
$msgtime = time unless defined $msgtime;
# Trim the buffer if needed
splice( @$buffer, 0, $buffSize - 1 ) if scalar @$buffer > $buffSize;
# Add the message
push @$buffer, [ $msgtime, $message ];
pOut();
pdebug( 'leaving w/rv: 1', PDLEVEL1 );
return 1;
}
sub dump ($) {
# Purpose: Returns the contents of the named buffer
# Returns: Array
# Usage: @events = dump($name);
my $name = shift;
my $buffer = _getBuffer($name);
return @$buffer;
}
1;
__END__
=head1 NAME
Paranoid::Log::Buffer - Log Buffer Functions
=head1 VERSION
$Id: Buffer.pm,v 0.83 2010/06/03 19:03:46 acorliss Exp $
=head1 SYNOPSIS
use Paranoid::Log;
enableFacility('events', 'buffer', 'debug', '+');
enableFacility('more-events', 'buffer', 'debug', '+', 100);
@messages = Paranoid::Log::Buffer::dump($name);
=head1 DESCRIPTION
This module implements named buffers to be used for logging purposes.
Each buffer is of a concrete size (definable by the developer) with a
max message length of 2KB. Each message is stored with a timestamp. Once
the buffer hits the maximun number of entries it begins deleting the oldest
messages as the new messages come in.
Buffers are created automatically on the fly, and messages trimmed
before being stored.
With the exception of the B<dump> function this module is not meant to be
used directly. B<Paranoid::Log> should be your exclusive interface for
logging.
When enabling a buffer facility with B<Paranoid::Log> you can add one integral
argument to the call. That number defines the size of the log buffer in
terms of number of entries allowed.
B<NOTE:> Buffers are maintained within process memory. If you fork
a process from a parent with a log buffer each copy will maintain its own
entries.
=head1 SUBROUTINES/METHODS
B<NOTE>: Given that this module is not intended to be used directly nothing
is exported.
=head2 init
=head2 log
=head2 remove
=head2 Paranoid::Log::Buffer::dump
@entries = Paranoid::Log::Buffer::dump($name);
This dumps all current entries in the named buffer. Each entry is an
array reference to a two-element array. The first element is the timestamp
of the message (in UNIX epoch seconds), the second the actual message
itself.
=head1 DEPENDENCIES
=over
=item o
Paranoid::Debug
=back
=head1 SEE ALSO
=over
=item o
L<Paranoid::Log>
=back
=head1 BUGS AND LIMITATIONS
=head1 AUTHOR
Arthur Corliss (corliss@digitalmages.com)
=head1 LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself.
Please see http://dev.perl.org/licenses/ for more information.
(c) 2005, Arthur Corliss (corliss@digitalmages.com)
|