2
# Copyright (C) 2005-2006 MySQL AB
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; version 2 of the License.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
# This is a library file used by the Perl version of mysql-test-run,
18
# and is part of the translation of the Bourne shell script with the
24
sub mtr_init_timers ();
25
sub mtr_timer_start($$$);
26
sub mtr_timer_stop($$);
27
sub mtr_timer_stop_all($);
30
##############################################################################
32
# Initiate the structure shared by all timers
34
##############################################################################
36
sub mtr_init_timers () {
37
my $timers = { timers => {}, pids => {}};
42
##############################################################################
44
# Start, stop and poll a timer
46
# As alarm() isn't portable to Windows, we use separate processes to
49
##############################################################################
51
sub mtr_timer_start($$$) {
52
my ($timers,$name,$duration)= @_;
54
if ( exists $timers->{'timers'}->{$name} )
56
# We have an old running timer, kill it
57
mtr_warning("There is an old timer running");
58
mtr_timer_stop($timers,$name);
65
if ( ! defined $tpid )
67
if ( $! == $!{EAGAIN} ) # See "perldoc Errno"
69
mtr_warning("Got EAGAIN from fork(), sleep 1 second and redo");
75
mtr_error("can't fork timer, error: $!");
81
# Parent, record the information
82
mtr_verbose("Starting timer for '$name',",
83
"duration: $duration, pid: $tpid");
84
$timers->{'timers'}->{$name}->{'pid'}= $tpid;
85
$timers->{'timers'}->{$name}->{'duration'}= $duration;
86
$timers->{'pids'}->{$tpid}= $name;
90
# Child, install signal handlers and sleep for "duration"
92
# Don't do the ^C cleanup in the timeout child processes!
93
# There is actually a race here, if we get ^C after fork(), but before
94
# clearing the signal handler.
98
mtr_verbose("timer $$ woke up, exiting!");
102
$0= "mtr_timer(timers,$name,$duration)";
104
mtr_verbose("timer $$ expired after $duration seconds");
111
sub mtr_timer_stop ($$) {
112
my ($timers,$name)= @_;
114
if ( exists $timers->{'timers'}->{$name} )
116
my $tpid= $timers->{'timers'}->{$name}->{'pid'};
117
mtr_verbose("Stopping timer for '$name' with pid $tpid");
119
# FIXME as Cygwin reuses pids fast, maybe check that is
120
# the expected process somehow?!
123
# As the timers are so simple programs, we trust them to terminate,
124
# and use blocking wait for it. We wait just to avoid a zombie.
127
delete $timers->{'timers'}->{$name}; # Remove the timer information
128
delete $timers->{'pids'}->{$tpid}; # and PID reference
133
mtr_error("Asked to stop timer '$name' not started");
137
sub mtr_timer_stop_all ($) {
140
foreach my $name ( keys %{$timers->{'timers'}} )
142
mtr_timer_stop($timers, $name);
148
sub mtr_timer_timeout ($$) {
149
my ($timers,$pid)= @_;
151
return "" unless exists $timers->{'pids'}->{$pid};
153
# Got a timeout(the process with $pid is recorded as being a timer)
154
# return the name of the timer
155
return $timers->{'pids'}->{$pid};