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
|
# -----------------------------------------------------------------------------
# $Id: Base.pm 3004 2007-12-10 12:45:39Z topia $
# -----------------------------------------------------------------------------
# copyright (C) 2004 Topia <topia@clovery.jp>. all rights reserved.
package Log::Writer::Base;
use strict;
use warnings;
use Carp;
use Tiarra::Utils;
use base qw(Tiarra::Utils);
# pure virtual function helper
sub not_implemented_error {
my ($class_or_this) = shift;
die $class_or_this->name . '/' . (caller(1))[3] .
': Please Implement this!';
}
# need override
sub new {
my ($class, $parent, $uri, %options) = @_;
carp 'Cannot use undef on class, parent, and uri.'
if (grep {(!defined $_) ? 1 : ()} ($class, $parent, $uri));
my $this = {
refcount => 0,
parent => $parent,
buffer => '',
always_flush => $class->first_defined($options{always_flush}, 1),
uri => $uri,
notify_cache => {},
};
bless $this, $class;
$this;
}
sub capability {
my ($class, $type, @args) = @_;
# $type:
# - fallback: protocol support fallback
return 0;
}
sub scheme {
my $class_or_this = shift;
# please return scheme string(such as 'file')
'';
}
sub name {
my $class_or_this = shift;
# please return protocol name
'base (cannot use this directly)';
}
sub supported_schemes {
my $class_or_this = shift;
# please return supported schemes
();
}
sub real_flush {
my $this = shift;
$this->not_implemented_error;
0; # please return bool(1: successful, 0: failed)
}
sub real_destruct {
my ($this, $force) = @_;
$this->not_implemented_error;
# optionally, you can warning if losing data.
# probably $force is useless, because usually does NOT call this
# on (!$this->can_remove && !$force).
# when $force is true, we will destroy instance even if return failed.
0; # please return bool(1: successful, 0: failed)
}
# base definition
sub first_defined {
shift->get_first_defined(@_);
}
sub define_accessor {
# backward compat
shift->define_attr_accessor(0, @_);
}
__PACKAGE__->define_attr_accessor(0, qw(buffer always_flush uri));
__PACKAGE__->define_attr_getter(0, qw(refcount parent));
sub add_ref { ++(shift->{refcount}); }
sub release { --(shift->{refcount}); }
sub length { CORE::length(shift->buffer); }
sub clear { shift->buffer(''); }
sub has_data { shift->length > 0; }
sub path {
my $this = shift;
if (!defined $this->{path}) {
return undef if (!defined $this->{uri});
my $scheme = $this->scheme;
return undef if (!defined $scheme);
($this->{path} = $this->{uri}) =~ s|^\Q$scheme\E://||;
}
$this->{path};
}
sub register {
my $this = shift;
$this->add_ref;
$this;
}
sub unregister {
my $this = shift;
$this->release;
if ($this->can_remove) {
return $this->destruct;
} else {
return 1;
}
}
sub can_remove {
my $this = shift;
return ($this->refcount <= 0 && !$this->has_data);
}
sub reserve {
my ($this, $str) = @_;
$this->{buffer} .= $str;
$this->flush if ($this->always_flush);
}
*write = \&reserve;
*print = \&reserve;
sub flush {
my $this = shift;
return 1 if !$this->has_data;
if ($this->real_flush) {
$this->destruct if ($this->can_remove);
return 1;
} else {
return 0;
}
}
sub destruct {
my ($this, $force) = @_;
my $ret = $this->real_destruct($force);
$this->parent->object_release($this->uri) if ($ret || $force);
$ret;
}
# util
sub _notify_warn {
my ($this, $str) = @_;
if ($this->_check_notify_cache($str)) {
$this->parent->notify_warn($this->_notify_prefix(1).$str);
}
}
sub _notify_error {
my ($this, $str) = @_;
if ($this->_check_notify_cache($str)) {
$this->parent->notify_error($this->_notify_prefix(1).$str);
}
}
sub _notify_msg {
my ($this, $str) = @_;
if ($this->_check_notify_cache($str)) {
$this->parent->notify_msg($this->_notify_prefix(1).$str);
}
}
sub _check_notify_cache {
# check cache and return true if can notify
my ($this, $str) = @_;
if (%{$this->{notify_cache}}) {
grep {
if ($this->{notify_cache}->{$_} < time) {
# expire
delete $this->{notify_cache};
}
0;
} keys %{$this->{notify_cache}};
}
if ($this->{notify_cache}->{$str}) {
return 0;
} else {
# ignore 15sec
$this->{notify_cache}->{$str} = time + 15;
return 1;
}
}
sub _notify_prefix {
my ($this, $stack_level) = @_;
$stack_level = 0 if !defined $stack_level;
$this->name.'/'.(caller(1 + $stack_level))[3].'('
.$this->uri.'): ';
}
1;
|