/usr/share/perl5/Scrappy/Logger.pm is in libscrappy-perl 0.94112090-2.
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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | # ABSTRACT: Scrappy Scraper Event Logging
# Dist::Zilla: +PodWeaver
package Scrappy::Logger;
BEGIN {
$Scrappy::Logger::VERSION = '0.94112090';
}
# load OO System
use Moose;
# load other libraries
use Carp;
use DateTime;
use DateTime::Format::SQLite;
use YAML::Syck;
$YAML::Syck::ImplicitTyping = 1;
has 'auto_save' => (is => 'rw', isa => 'Bool', default => 1);
has file => (is => 'rw', isa => 'Str');
has verbose => (is => 'rw', isa => 'Int', default => 0);
sub load {
my $self = shift;
my $file = shift;
if ($file) {
$self->{file} = $file;
# load event-log file
$self->{stash} = LoadFile($file)
or croak("Log file $file does not exist or is not read/writable");
}
return $self->{stash};
}
sub timestamp {
my $self = shift;
my $date = shift;
if ($date) {
# $date =~ s/\_/ /g;
return DateTime::Format::SQLite->parse_datetime($date)
; # datetime object
}
else {
$date =
DateTime::Format::SQLite->format_datetime(DateTime->now); # string
# $date =~ s/ /_/g;
return $date;
}
}
sub info {
return shift->event('info', @_);
}
sub warn {
return shift->event('warn', @_);
}
sub error {
return shift->event('error', @_);
}
sub event {
my $self = shift;
my $type = shift;
my $note = shift;
croak("Can't record an event without an event-type and notation")
unless $type && $note;
$self->{stash} = {} unless defined $self->{stash};
$self->{stash}->{$type} = [] unless defined $self->{stash}->{$type};
my $frame = $type eq 'info' || $type eq 'error' || $type eq 'warn' ? 1 : 0;
my @trace = caller($frame);
my $entry = scalar @{$self->{stash}->{$type}};
my $time = $self->timestamp;
my $data = {};
$data = {
'// package' => $trace[0],
'// filename' => $trace[1],
'// line' => $trace[2],
'// occurred' => $time,
'// notation' => $note,
}
if $self->verbose;
$self->{stash}->{$type}->[$entry] = {eventlog => "[$time] [$type] $note"}
unless defined $self->{stash}->{$type}->[$entry];
$self->{stash}->{$type}->[$entry]->{metadata} = $data
if scalar keys %{$data};
if (@_ && $self->verbose) {
my $stash = @_ > 1 ? {@_} : $_[0];
if ($stash) {
if (ref $stash eq 'HASH') {
for (keys %{$stash}) {
$self->{stash}->{$type}->[$entry]->{metadata}->{$_} =
$stash->{$_};
}
}
}
}
$self->write;
return $self->{stash}->{$type}->[$entry];
}
sub write {
my $self = shift;
my $file = shift || $self->{file};
$self->{file} = $file;
if ($file) {
# write event-log file
DumpFile($file, $self->{stash})
or
croak("event-log file $file does not exist or is not read/writable");
}
return $self->{stash};
}
1;
__END__
=pod
=head1 NAME
Scrappy::Logger - Scrappy Scraper Event Logging
=head1 VERSION
version 0.94112090
=head1 SYNOPSIS
#!/usr/bin/perl
use Scrappy::Logger;
my $logger = Scrappy::Logger->new;
-f 'scraper.log' ?
$logger->load('scraper.log');
$logger->write('scraper.log');
$logger->stash('foo' => 'bar');
$logger->stash('abc' => [('a'..'z')]);
=head1 DESCRIPTION
Scrappy::Logger provides YAML-Based event-log handling for recording events
encountered using the L<Scrappy> framework.
=head2 ATTRIBUTES
The following is a list of object attributes available with every Scrappy::Logger
instance.
=head3 auto_save
The auto_save attribute is a boolean that determines whether event data is
automatically saved to the log file on update.
my $logger = Scrappy::Logger->new;
$logger->load('scraper.log');
# turn auto-saving off
$logger->auto_save(0);
$logger->event('...', 'yada yada yada');
$logger->write; # explicit write
=head3 file
The file attribute gets/sets the filename of the current event-log file.
my $logger = Scrappy::Logger->new;
$logger->load('scraper.log');
$logger->write('scraper.log.bak');
$logger->file('scraper.log');
=head3 verbose
The verbose attribute is a boolean that instructs the logger to write very
detailed logs.
my $logger = Scrappy::Logger->new;
$logger->verbose(1);
=head1 METHODS
=head2 load
The load method is used to read-in an event-log file, it returns its data in the
structure it was saved-in.
my $logger = Scrappy::Logger->new;
my $data = $logger->load('scraper.log');
=head2 timestamp
The timestamp method returns the current date/timestamp in string form. When
supplied a properly formatted date/timestamp this method returns a corresponding
L<DateTime> object.
my $logger = Scrappy::Logger->new;
my $date = $logger->timestamp;
my $dt = $logger->timestamp($date);
=head2 info
The info method is used to capture informational events and returns the event
data.
my $logger = Scrappy::Logger->new;
my %data = (foo => 'bar', baz => 'xyz');
my $event = $logger->info('This is an informational message', %data);
$logger->info('This is an informational message');
=head2 warn
The warn method is used to capture warning events and returns the event
data.
my $logger = Scrappy::Logger->new;
my %data = (foo => 'bar', baz => 'xyz');
my $event = $logger->warn('This is a warning message', %data);
$logger->info('This is an warning message');
=head2 error
The error method is used to capture error events and returns the event
data.
my $logger = Scrappy::Logger->new;
my %data = (foo => 'bar', baz => 'xyz');
my $event = $logger->error('This is a n error message', %data);
$logger->info('This is an error message');
=head2 event
The event method is used to capture custom events and returns the event
data.
my $logger = Scrappy::Logger->new;
my %data = (foo => 'bar', baz => 'xyz');
my $event = $logger->event('myapp', 'This is a user-defined message', %data);
$logger->event('myapp', 'This is a user-defined message');
=head2 write
The write method is used to write-out an event-log file.
my $logger = Scrappy::Logger->new;
$logger->info('This is very cool', 'foo' => 'bar');
$logger->warn('Somethin aint right here');
$logger->error('It broke, I cant believe it broke');
$logger->write('scraper.log');
=head1 AUTHOR
Al Newkirk <awncorp@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by awncorp.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|