/usr/share/perl5/Log/Agent/Message.pm is in liblog-agent-perl 1.001-1ubuntu1.
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 | ###########################################################################
#
# Message.pm
#
# Copyright (C) 1999 Raphael Manfredi.
# Copyright (C) 2002-2015 Mark Rogaski, mrogaski@cpan.org;
# all rights reserved.
#
# See the README file included with the
# distribution for license information.
#
##########################################################################
use strict;
########################################################################
package Log::Agent::Message;
use overload
qw("" stringify);
#
# ->make
#
# Creation routine.
#
# Attributes:
# str formatted message string coming from user
# prepend_list list of strings to prepend to `str'
# append_list list of strings to append to `str'
#
sub make {
my $self = bless [], shift; # Array for minimal overhead
$self->[0] = $_[0];
return $self;
}
#
# Attribute access
#
sub str { $_[0]->[0] }
sub prepend_list { $_[0]->[1] }
sub append_list { $_[0]->[2] }
#
# Attribute setting
#
sub set_str { $_[0]->[0] = $_[1] }
sub set_prepend_list { $_[0]->[1] = $_[1] }
sub set_append_list { $_[0]->[2] = $_[1] }
#
# ->prepend
#
# Add string to the prepend list, at its TAIL.
# (i.e. the first to prepend gets output first)
#
sub prepend {
my $self = shift;
my ($str) = @_;
my $array = $self->prepend_list;
$array = $self->set_prepend_list([]) unless $array;
push(@{$array}, $str);
}
#
# ->prepend_first
#
# Add string to the prepend list, at its HEAD.
#
sub prepend_first {
my $self = shift;
my ($str) = @_;
my $array = $self->prepend_list;
$array = $self->set_prepend_list([]) unless $array;
unshift(@{$array}, $str);
}
#
# ->append
#
# Add string to the append list, at its HEAD.
# (i.e. the first to append gets output last)
#
sub append {
my $self = shift;
my ($str) = @_;
my $array = $self->append_list;
$array = $self->set_append_list([]) unless $array;
unshift(@{$array}, $str);
}
#
# ->append_last
#
# Add string to the append list, at its TAIL.
#
sub append_last {
my $self = shift;
my ($str) = @_;
my $array = $self->append_list;
$array = $self->set_append_list([]) unless $array;
push(@{$array}, $str);
}
#
# ->stringify
# (stringify)
#
# Returns complete string, with all prepended strings first, then the
# original string followed by all the appended strings.
#
sub stringify {
my $self = shift;
return $self->[0] if @{$self} == 1; # Optimize usual case
my $prepend = $self->prepend_list;
my $append = $self->append_list;
return
($prepend ? join('', @{$prepend}) : '') .
$self->str .
($append ? join('', @{$append}) : '');
}
#
# ->clone
#
# Clone object
# (not a deep clone, but prepend and append lists are also shallow-cloned.)
#
sub clone {
my $self = shift;
my $other = bless [], ref $self;
$other->[0] = $self->[0];
return $other if @{$self} == 1; # Optimize usual case
if (defined $self->[1]) {
my @array = @{$self->[1]};
$other->[1] = \@array;
}
if (defined $self->[2]) {
my @array = @{$self->[2]};
$other->[2] = \@array;
}
return $other;
}
1; # for require
__END__
=head1 NAME
Log::Agent::Message - a log message
=head1 SYNOPSIS
require Log::Agent::Message;
my $msg = Log::Agent::Message->make("string");
$msg->prepend("string");
$msg->append("string");
my $copy = $msg->clone;
print "Message is $msg\n"; # overloaded stringification
=head1 DESCRIPTION
The Log::Agent::Message class represents an original log message
(a string) to which one may prepend or append other strings, but with
the special property that prepended strings aggregate themselves
in FIFO order, whilst appended strings aggregate themselves in LIFO
order, which is counter-intuitive at first sight.
In plain words, this means that the last routine that prepends something
to the message will get its prepended string right next to the original
string, regardless of what could have been prepended already. The behaviour
is symetric for appending.
=head1 INTERFACE
The following routines are available:
=over 4
=item append($str)
Append suppled string $str to the original string (given at creation
time), at the head of all existing appended strings.
=item append_last($str)
Append suppled string $str to the original string (given at creation
time), at the tail of all existing appended strings.
=item clone
Clone the message. This is not a shallow clone, because the list of
prepended and appended strings is recreated. However it is not a deep
clone, because the items held in those lists are merely copied (this would
matter only when other objects with overloaded stringification routines
were supplied to prepend() and append(), which is not the case today in
the basic Log::Agent framework).
=item make($string)
This is the creation routine.
=item prepend($str)
Prepend supplied string $str to the original string (given at creation
time), at the tail of all existing prepended strings.
=item prepend_first($str)
Prepend supplied string $str to the original string (given at creation
time), at the head of all existing prepended strings.
=item stringify
This is the overloaded "" operator, which returns the complete string
composed of all the prepended strings, the original string, and all
the appended strings.
=back
=head1 AUTHOR
Raphael Manfredi F<E<lt>Raphael_Manfredi@pobox.comE<gt>>
=head1 SEE ALSO
Log::Agent(3).
=cut
|