/usr/share/perl5/POE/Resource/Events.pm is in libpoe-perl 2:1.3580-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 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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | # Data and accessors to manage POE's events.
package POE::Resource::Events;
use vars qw($VERSION);
$VERSION = '1.358'; # NOTE - Should be #.### (three decimal places)
# These methods are folded into POE::Kernel;
package POE::Kernel;
use strict;
# A local copy of the queue so we can manipulate it directly.
my $kr_queue;
my %event_count;
# ( $session_id => $count,
# ...,
# );
my %post_count;
# ( $session_id => $count,
# ...,
# );
### Begin-run initialization.
sub _data_ev_initialize {
my ($self, $queue) = @_;
$kr_queue = $queue;
}
### End-run leak checking.
sub _data_ev_relocate_kernel_id {
my ($self, $old_id, $new_id) = @_;
$event_count{$new_id} = delete $event_count{$old_id}
if exists $event_count{$old_id};
$post_count{$new_id} = delete $post_count{$old_id}
if exists $post_count{$old_id};
}
sub _data_ev_finalize {
my $finalized_ok = 1;
while (my ($ses_id, $cnt) = each(%event_count)) {
$finalized_ok = 0;
_warn("!!! Leaked event-to count: $ses_id = $cnt\n");
}
while (my ($ses_id, $cnt) = each(%post_count)) {
$finalized_ok = 0;
_warn("!!! Leaked event-from count: $ses_id = $cnt\n");
}
return $finalized_ok;
}
### Enqueue an event.
sub FIFO_TIME_EPSILON () { 0.000001 }
my $last_fifo_time = monotime();
sub _data_ev_enqueue {
my (
$self,
$session, $source_session, $event, $type, $etc,
$file, $line, $fromstate, $time, $delta, $priority
) = @_;
my $sid = $session->ID;
if (ASSERT_DATA) {
unless ($self->_data_ses_exists($sid)) {
_trap(
"<ev> can't enqueue event ``$event'' for nonexistent",
$self->_data_alias_loggable($sid)
);
}
}
# This is awkward, but faster than using the fields individually.
my $event_to_enqueue = [ @_[(1+EV_SESSION) .. (1+EV_FROMSTATE)] ];
if( defined $time ) {
$event_to_enqueue->[EV_WALLTIME] = $time;
$event_to_enqueue->[EV_DELTA] = $delta;
$priority ||= wall2mono( $time + ($delta||0) );
}
else {
$priority ||= monotime();
}
my $new_id;
my $old_head_priority = $kr_queue->get_next_priority();
unless ($type & ET_MASK_DELAYED) {
$priority = $last_fifo_time + FIFO_TIME_EPSILON if $priority <= $last_fifo_time;
$last_fifo_time = $priority;
}
$new_id = $kr_queue->enqueue($priority, $event_to_enqueue);
$event_to_enqueue->[EV_SEQ] = $new_id;
#_carp( Carp::longmess( "<ev> priority is much to far in the future" ) ) if $priority > 1354569908;
if (TRACE_EVENTS ) {
_warn(
"<ev> enqueued event $new_id ``$event'' from ",
$self->_data_alias_loggable($source_session->ID), " to ",
$self->_data_alias_loggable($sid),
" at $time, priority=$priority"
);
}
unless (defined $old_head_priority) {
$self->loop_resume_time_watcher($priority);
}
elsif ($priority < $old_head_priority) {
$self->loop_reset_time_watcher($priority);
}
# This is the counterpart to _data_ev_refcount_dec(). It's only
# used in one place, so it's not in its own function.
$self->_data_ses_refcount_inc($sid) unless $event_count{$sid}++;
return $new_id if $sid eq $source_session->ID();
$self->_data_ses_refcount_inc($source_session->ID) unless (
$post_count{$source_session->ID}++
);
return $new_id;
}
sub _data_ev_adjust
{
my( $self, $alarm_id, $my_alarm, $time, $delta ) = @_;
# XXX - However, if there has been a clock skew, the priority will
# have changed and we should recalculate priority from time+delta
$kr_queue->adjust_priority( $alarm_id, $my_alarm, $delta );
my $event = (
grep { $_->[1] == $alarm_id }
$kr_queue->peek_items( $my_alarm )
)[0];
return unless $event;
my $payload = $event->[ITEM_PAYLOAD];
$payload->[EV_WALLTIME] = $time if $time;
$payload->[EV_DELTA] += $delta if $delta;
return( ($payload->[EV_WALLTIME] || 0) + ($payload->[EV_DELTA] || 0) );
}
### Remove events sent to or from a specific session.
sub _data_ev_clear_session {
my ($self, $sid) = @_;
# Events sent to the session.
PENDING: {
my $pending_count = $event_count{$sid};
last PENDING unless $pending_count;
foreach (
$kr_queue->remove_items(
sub { $_[0][EV_SESSION]->ID() eq $sid },
$pending_count
)
) {
$self->_data_ev_refcount_dec(
@{$_->[ITEM_PAYLOAD]}[EV_SOURCE, EV_SESSION]
);
$pending_count--;
}
# TODO - fork() can make this go negative on some systems.
last PENDING unless $pending_count;
croak "lingering pending count: $pending_count" if $pending_count;
}
# Events sent by the session.
SENT: {
my $sent_count = $post_count{$sid};
last SENT unless $sent_count;
foreach (
$kr_queue->remove_items(
sub { $_[0][EV_SOURCE]->ID() eq $sid },
$sent_count
)
) {
$self->_data_ev_refcount_dec(
@{$_->[ITEM_PAYLOAD]}[EV_SOURCE, EV_SESSION]
);
$sent_count--;
}
last SENT unless $sent_count;
croak "lingering sent count: $sent_count" if $sent_count;
}
croak "lingering event count" if delete $event_count{$sid};
croak "lingering post count" if delete $post_count{$sid};
}
# TODO Alarm maintenance functions may move out to a separate
# POE::Resource module in the future. Why? Because alarms may
# eventually be managed by something other than the event queue.
# Especially if we incorporate a proper Session scheduler. Be sure to
# move the tests to a corresponding t/res/*.t file.
### Remove a specific alarm by its name. This is in the events
### section because alarms are currently implemented as events with
### future due times.
sub _data_ev_clear_alarm_by_name {
my ($self, $sid, $alarm_name) = @_;
my $my_alarm = sub {
return 0 unless $_[0]->[EV_TYPE] & ET_ALARM;
return 0 unless $_[0]->[EV_SESSION]->ID() eq $sid;
return 0 unless $_[0]->[EV_NAME] eq $alarm_name;
return 1;
};
foreach ($kr_queue->remove_items($my_alarm)) {
$self->_data_ev_refcount_dec(@{$_->[ITEM_PAYLOAD]}[EV_SOURCE, EV_SESSION]);
}
}
### Remove a specific alarm by its ID. This is in the events section
### because alarms are currently implemented as events with future due
### times. TODO It's possible to remove non-alarms; is that wrong?
sub _data_ev_clear_alarm_by_id {
my ($self, $sid, $alarm_id) = @_;
my $my_alarm = sub {
$_[0]->[EV_SESSION]->ID() eq $sid;
};
my ($pri, $id, $event) = $kr_queue->remove_item($alarm_id, $my_alarm);
return unless defined $pri;
if (TRACE_EVENTS) {
_warn(
"<ev> removed event $id ``", $event->[EV_NAME], "'' to ",
$self->_data_alias_loggable($sid), " at $pri"
);
}
$self->_data_ev_refcount_dec( @$event[EV_SOURCE, EV_SESSION] );
my $time = $event->[EV_WALLTIME] + ($event->[EV_DELTA]||0);
return ($time, $event);
}
### Remove all the alarms for a session. Whoot!
sub _data_ev_clear_alarm_by_session {
my ($self, $sid) = @_;
my $my_alarm = sub {
return 0 unless $_[0]->[EV_TYPE] & ET_ALARM;
return 0 unless $_[0]->[EV_SESSION]->ID() eq $sid;
return 1;
};
my @removed;
foreach ($kr_queue->remove_items($my_alarm)) {
my ($pri, $event) = @$_[ITEM_PRIORITY, ITEM_PAYLOAD];
$self->_data_ev_refcount_dec( @$event[EV_SOURCE, EV_SESSION] );
my $time = ($event->[EV_WALLTIME]||0) + ($event->[EV_DELTA]||0);
push @removed, [ $event->[EV_NAME], $time, @{$event->[EV_ARGS]} ];
}
return @removed;
}
### Decrement a post refcount
sub _data_ev_refcount_dec {
my ($self, $source_session, $dest_session) = @_;
my ($source_id, $dest_id) = ($source_session->ID, $dest_session->ID);
if (ASSERT_DATA) {
_trap $dest_session unless exists $event_count{$dest_id};
}
$self->_data_ses_refcount_dec($dest_id) unless --$event_count{$dest_id};
return if $dest_id eq $source_id;
if (ASSERT_DATA) {
_trap $source_session unless exists $post_count{$source_id};
}
$self->_data_ses_refcount_dec($source_id) unless --$post_count{$source_id};
}
### Fetch the number of pending events sent to a session.
sub _data_ev_get_count_to {
my ($self, $sid) = @_;
return $event_count{$sid} || 0;
}
### Fetch the number of pending events sent from a session.
sub _data_ev_get_count_from {
my ($self, $sid) = @_;
return $post_count{$sid} || 0;
}
### Dispatch events that are due for "now" or earlier.
sub _data_ev_dispatch_due {
my $self = shift;
if (TRACE_EVENTS) {
foreach ($kr_queue->peek_items(sub { 1 })) {
my @event = map { defined() ? $_ : "(undef)" } @{$_->[ITEM_PAYLOAD]};
_warn(
"<ev> time($_->[ITEM_PRIORITY]) id($_->[ITEM_ID]) ",
"event(@event)\n"
);
}
}
my $now = monotime();
my $next_time;
while (
defined($next_time = $kr_queue->get_next_priority()) and
$next_time <= $now
) {
my ($priority, $id, $event) = $kr_queue->dequeue_next();
if (TRACE_EVENTS) {
_warn("<ev> dispatching event $id ($event->[EV_NAME])");
}
# TODO - Why can't we reverse these two lines?
# TODO - Reversing them could avoid entering and removing GC marks.
$self->_data_ev_refcount_dec($event->[EV_SOURCE], $event->[EV_SESSION]);
if ($event->[EV_TYPE] & ET_SIGNAL) {
$self->_dispatch_signal_event(@{$event}[EV_SESSION..EV_FROMSTATE], $priority, $id);
}
else {
$self->_dispatch_event(@{$event}[EV_SESSION..EV_FROMSTATE], $priority, $id);
}
# Stop the system if an unhandled exception occurred.
# This wipes out all sessions and associated resources.
next unless $POE::Kernel::kr_exception;
POE::Kernel->stop();
}
# Sweep for dead sessions. The sweep may alter the next queue time.
$self->_data_ses_gc_sweep();
$next_time = $kr_queue->get_next_priority();
# Tell the event loop to wait for the next event, if there is one.
# Otherwise we're going to wait indefinitely for some other event.
if (defined $next_time) {
$self->loop_reset_time_watcher($next_time);
}
else {
$self->loop_pause_time_watcher();
}
}
1;
__END__
=head1 NAME
POE::Resource::Events - internal event manager for POE::Kernel
=head1 SYNOPSIS
There is no public API.
=head1 DESCRIPTION
POE::Resource::Events is a mix-in class for POE::Kernel. It hides the
complexity of managing POE's events from even POE itself. It is used
internally by POE::Kernel, so it has no public interface.
=head1 SEE ALSO
See L<POE::Kernel/Asynchronous Messages (FIFO Events)> for one public
events API.
See L<POE::Kernel/Resources> for public information about POE
resources.
See L<POE::Resource> for general discussion about resources and the
classes that manage them.
=head1 BUGS
None known.
=head1 AUTHORS & COPYRIGHTS
Please see L<POE> for more information about authors and contributors.
=cut
# rocco // vim: ts=2 sw=2 expandtab
# TODO - Edit.
|