ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/Semaphore.pm
(Generate patch)

Comparing Coro/Coro/Semaphore.pm (file contents):
Revision 1.1 by root, Tue Jul 3 03:48:36 2001 UTC vs.
Revision 1.73 by root, Thu Oct 30 09:57:01 2008 UTC

4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use Coro::Semaphore; 7 use Coro::Semaphore;
8 8
9 $sig = new Coro::Semaphore [init]; 9 $sig = new Coro::Semaphore [initial value];
10 10
11 $sig->down; # wait for signal 11 $sig->down; # wait for signal
12 12
13 # ... some other "thread" 13 # ... some other "thread"
14 14
15 $sig->up; 15 $sig->up;
16 16
17=head1 DESCRIPTION 17=head1 DESCRIPTION
18 18
19This module implements counting semaphores. You can initialize a mutex
20with any level of parallel users, that is, you can intialize a sempahore
21that can be C<down>ed more than once until it blocks. There is no owner
22associated with semaphores, so one coroutine can C<down> it while another
23can C<up> it.
24
25Counting semaphores are typically used to coordinate access to
26resources, with the semaphore count initialized to the number of free
27resources. Coroutines then increment the count when resources are added
28and decrement the count when resources are removed.
29
19=over 4 30=over 4
20 31
21=cut 32=cut
22 33
23package Coro::Semaphore; 34package Coro::Semaphore;
24 35
25use Coro::Process (); 36no warnings;
26 37
38use Coro ();
39
27$VERSION = 0.01; 40$VERSION = 4.802;
41
42=item new [inital count]
43
44Creates a new sempahore object with the given initial lock count. The
45default lock count is 1, which means it is unlocked by default. Zero (or
46negative values) are also allowed, in which case the semaphore is locked
47by default.
48
49=cut
28 50
29sub new { 51sub new {
30 bless [$_[1]], $_[0]; 52 bless [defined $_[1] ? $_[1] : 1], $_[0];
31} 53}
54
55=item $sem->count
56
57Returns the current semaphore count.
58
59=cut
60
61sub count {
62 $_[0][0]
63}
64
65=item $sem->adjust ($diff)
66
67Atomically adds the amount given to the current semaphore count. If the
68count becomes positive, wakes up any waiters. Does not block if the count
69becomes negative, however.
70
71=cut
72
73sub adjust {
74 # basically a weird copy of up
75 if (($_[0][0] += $_[1]) > 0) {
76 (shift @{$_[0][1]})->ready if @{$_[0][1]};
77 }
78}
79
80=item $sem->down
81
82Decrement the counter, therefore "locking" the semaphore. This method
83waits until the semaphore is available if the counter is zero.
84
85=item $status = $sem->timed_down ($timeout)
86
87Like C<down>, but returns false if semaphore couldn't be acquired within
88$timeout seconds, otherwise true.
89
90=cut
32 91
33sub down { 92sub down {
34 my $self = shift;
35 while ($self->[0] <= 0) { 93 while ($_[0][0] <= 0) {
36 push @{$self->[1]}, $Coro::current; 94 push @{$_[0][1]}, $Coro::current;
37 Coro::Process::schedule; 95 &Coro::schedule;
38 } 96 }
39 --$self->[0]; 97 --$_[0][0];
40} 98}
99
100sub timed_down {
101 require Coro::Timer;
102 my $timeout = Coro::Timer::timeout ($_[1]);
103
104 while ($_[0][0] <= 0) {
105 push @{$_[0][1]}, $Coro::current;
106 &Coro::schedule;
107 if ($timeout) {
108 # ugly as hell. slow, too, btw!
109 for (0..$#{$_[0][1]}) {
110 if ($_[0][1][$_] == $Coro::current) {
111 splice @{$_[0][1]}, $_, 1;
112 return;
113 }
114 }
115 die;
116 }
117 }
118
119 --$_[0][0];
120 return 1;
121}
122
123=item $sem->up
124
125Unlock the semaphore again.
126
127=cut
41 128
42sub up { 129sub up {
43 my $self = shift; 130 if (++$_[0][0] > 0) {
44 if (++@{$self->[1]} == 0) {
45 (shift @{$self->[1]})->ready if @{$self->[1]}; 131 (shift @{$_[0][1]})->ready if @{$_[0][1]};
46 } 132 }
47} 133}
134
135=item $sem->try
136
137Try to C<down> the semaphore. Returns true when this was possible,
138otherwise return false and leave the semaphore unchanged.
139
140=cut
48 141
49sub try { 142sub try {
50 my $self = shift;
51 if ($self->[0] > 0) { 143 if ($_[0][0] > 0) {
52 --$self->[0]; 144 --$_[0][0];
53 return 1; 145 return 1;
54 } else { 146 } else {
55 return 0; 147 return 0;
56 } 148 }
57} 149}
58 150
591; 151=item $sem->waiters
152
153In scalar context, returns the number of coroutines waiting for this
154semaphore.
155
156=cut
157
158sub waiters {
159 @{$_[0][1]};
160}
161
162=item $guard = $sem->guard
163
164This method calls C<down> and then creates a guard object. When the guard
165object is destroyed it automatically calls C<up>.
166
167=item $guard = $sem->timed_guard ($timeout)
168
169Like C<guard>, but returns undef if semaphore couldn't be acquired within
170$timeout seconds, otherwise the guard object.
171
172=cut
173
174sub guard {
175 &down;
176 # double indirection because bless works on the referenced
177 # object, not (only) on the reference itself.
178 bless \\$_[0], Coro::Semaphore::guard::;
179}
180
181sub timed_guard {
182 &timed_down
183 ? bless \\$_[0], Coro::Semaphore::guard::
184 : ();
185}
186
187sub Coro::Semaphore::guard::DESTROY {
188 &up(${${$_[0]}});
189}
60 190
61=back 191=back
62 192
63=head1 AUTHOR 193=head1 AUTHOR
64 194
65 Marc Lehmann <pcg@goof.com> 195 Marc Lehmann <schmorp@schmorp.de>
66 http://www.goof.com/pcg/marc/ 196 http://home.schmorp.de/
67 197
68=cut 198=cut
69 199
2001
201

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines