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.6 by root, Tue Jul 17 15:42:28 2001 UTC vs.
Revision 1.80 by root, Sat Nov 15 06:26:52 2008 UTC

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
36no warnings;
37
25use Coro (); 38use Coro ();
26 39
27$VERSION = 0.07; 40$VERSION = 5.0;
28 41
29=item new [inital count, default zero] 42=item new [inital count]
30 43
31Creates a new sempahore object with the given initial lock count. The 44Creates a new sempahore object with the given initial lock count. The
32default lock count is 1, which means it is unlocked by default. 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.
33 48
34=cut 49=item $sem->count
35 50
36sub new { 51Returns the current semaphore count.
37 bless [defined $_[1] ? $_[1] : 1], $_[0]; 52
38} 53=item $sem->adjust ($diff)
54
55Atomically adds the amount given to the current semaphore count. If the
56count becomes positive, wakes up any waiters. Does not block if the count
57becomes negative, however.
39 58
40=item $sem->down 59=item $sem->down
41 60
42Decrement the counter, therefore "locking" the semaphore. This method 61Decrement the counter, therefore "locking" the semaphore. This method
43waits until the semaphore is available if the counter is zero. 62waits until the semaphore is available if the counter is zero.
44 63
45=cut 64=cut
46 65
47sub down { 66#=item $status = $sem->timed_down ($timeout)
48 my $self = shift; 67#
68#Like C<down>, but returns false if semaphore couldn't be acquired within
69#$timeout seconds, otherwise true.
70
71#sub timed_down {
72# require Coro::Timer;
73# my $timeout = Coro::Timer::timeout ($_[1]);
74#
49 while ($self->[0] <= 0) { 75# while ($_[0][0] <= 0) {
50 push @{$self->[1]}, $Coro::current; 76# push @{$_[0][1]}, $Coro::current;
51 Coro::schedule; 77# &Coro::schedule;
78# if ($timeout) {
79# # ugly as hell. slow, too, btw!
80# for (0..$#{$_[0][1]}) {
81# if ($_[0][1][$_] == $Coro::current) {
82# splice @{$_[0][1]}, $_, 1;
83# return;
84# }
85# }
86# die;
87# }
52 } 88# }
53 --$self->[0]; 89#
54} 90# --$_[0][0];
91# return 1;
92#}
55 93
56=item $sem->up 94=item $sem->up
57 95
58Unlock the semaphore again. 96Unlock the semaphore again.
59
60=cut
61
62sub up {
63 my $self = shift;
64 if (++$self->[0] > 0) {
65 (shift @{$self->[1]})->ready if @{$self->[1]};
66 }
67}
68 97
69=item $sem->try 98=item $sem->try
70 99
71Try to C<down> the semaphore. Returns true when this was possible, 100Try to C<down> the semaphore. Returns true when this was possible,
72otherwise return false and leave the semaphore unchanged. 101otherwise return false and leave the semaphore unchanged.
73 102
103=item $sem->waiters
104
105In scalar context, returns the number of coroutines waiting for this
106semaphore.
107
108=item $guard = $sem->guard
109
110This method calls C<down> and then creates a guard object. When the guard
111object is destroyed it automatically calls C<up>.
112
74=cut 113=cut
75 114
76sub try { 115sub guard {
77 my $self = shift; 116 &down;
78 if ($self->[0] > 0) { 117 # double indirection because bless works on the referenced
79 --$self->[0]; 118 # object, not (only) on the reference itself.
80 return 1; 119 bless \\$_[0], Coro::Semaphore::guard::;
81 } else {
82 return 0;
83 }
84} 120}
85 121
861; 122#=item $guard = $sem->timed_guard ($timeout)
123#
124#Like C<guard>, but returns undef if semaphore couldn't be acquired within
125#$timeout seconds, otherwise the guard object.
126
127#sub timed_guard {
128# &timed_down
129# ? bless \\$_[0], Coro::Semaphore::guard::
130# : ();
131#}
132
133sub Coro::Semaphore::guard::DESTROY {
134 &up(${${$_[0]}});
135}
87 136
88=back 137=back
89 138
90=head1 AUTHOR 139=head1 AUTHOR
91 140
92 Marc Lehmann <pcg@goof.com> 141 Marc Lehmann <schmorp@schmorp.de>
93 http://www.goof.com/pcg/marc/ 142 http://home.schmorp.de/
94 143
95=cut 144=cut
96 145
1461
147

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines