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.16 by root, Thu Aug 30 02:58:17 2001 UTC vs.
Revision 1.46 by root, Tue Aug 30 21:32:17 2005 UTC

31 31
32=cut 32=cut
33 33
34package Coro::Semaphore; 34package Coro::Semaphore;
35 35
36BEGIN { eval { require warnings } && warnings->unimport ("uninitialized") }
37
36use Coro (); 38use Coro ();
37 39
38$VERSION = 0.45; 40$VERSION = 1.31;
39 41
40=item new [inital count] 42=item new [inital count]
41 43
42Creates a new sempahore object with the given initial lock count. The 44Creates a new sempahore object with the given initial lock count. The
43default lock count is 1, which means it is unlocked by default. Zero (or 45default lock count is 1, which means it is unlocked by default. Zero (or
53=item $sem->down 55=item $sem->down
54 56
55Decrement the counter, therefore "locking" the semaphore. This method 57Decrement the counter, therefore "locking" the semaphore. This method
56waits until the semaphore is available if the counter is zero. 58waits until the semaphore is available if the counter is zero.
57 59
60=item $status = $sem->timed_down($timeout)
61
62Like C<down>, but returns false if semaphore couldn't be acquired within
63$timeout seconds, otherwise true.
64
58=cut 65=cut
59 66
60sub down { 67sub down {
61 my $self = shift;
62 while ($self->[0] <= 0) { 68 while ($_[0][0] <= 0) {
63 push @{$self->[1]}, $Coro::current; 69 push @{$_[0][1]}, $Coro::current;
64 Coro::schedule; 70 Coro::schedule;
65 } 71 }
66 --$self->[0]; 72 --$_[0][0];
73}
74
75sub timed_down {
76 require Coro::Timer;
77 my $timeout = Coro::Timer::timeout($_[1]);
78
79 while ($_[0][0] <= 0) {
80 push @{$_[0][1]}, $Coro::current;
81 Coro::schedule;
82 if ($timeout) {
83 # ugly as hell. slow, too, btw!
84 for (0..$#{$_[0][1]}) {
85 if ($_[0][1][$_] == $Coro::current) {
86 splice @{$_[0][1]}, $_, 1;
87 return;
88 }
89 }
90 die;
91 }
92 }
93
94 --$_[0][0];
95 return 1;
67} 96}
68 97
69=item $sem->up 98=item $sem->up
70 99
71Unlock the semaphore again. 100Unlock the semaphore again.
72 101
73=cut 102=cut
74 103
75sub up { 104sub up {
76 my $self = shift;
77 if (++$self->[0] > 0) { 105 if (++$_[0][0] > 0) {
78 (shift @{$self->[1]})->ready if @{$self->[1]}; 106 (shift @{$_[0][1]})->ready if @{$_[0][1]};
79 } 107 }
80} 108}
81 109
82=item $sem->try 110=item $sem->try
83 111
85otherwise return false and leave the semaphore unchanged. 113otherwise return false and leave the semaphore unchanged.
86 114
87=cut 115=cut
88 116
89sub try { 117sub try {
90 my $self = shift;
91 if ($self->[0] > 0) { 118 if ($_[0][0] > 0) {
92 --$self->[0]; 119 --$_[0][0];
93 return 1; 120 return 1;
94 } else { 121 } else {
95 return 0; 122 return 0;
96 } 123 }
97} 124}
110=item $guard = $sem->guard 137=item $guard = $sem->guard
111 138
112This method calls C<down> and then creates a guard object. When the guard 139This method calls C<down> and then creates a guard object. When the guard
113object is destroyed it automatically calls C<up>. 140object is destroyed it automatically calls C<up>.
114 141
142=item $guard = $sem->timed_guard($timeout)
143
144Like C<guard>, but returns undef if semaphore couldn't be acquired within
145$timeout seconds, otherwise the guard object.
146
115=cut 147=cut
116 148
117sub guard { 149sub guard {
118 &down; 150 &down;
119 # double indirection because bless works on the referenced 151 # double indirection because bless works on the referenced
120 # object, not (only) on the reference itself. 152 # object, not (only) on the reference itself.
121 bless \\$_[0], Coro::Semaphore::Guard::; 153 bless \\$_[0], Coro::Semaphore::guard::;
122} 154}
123 155
156sub timed_guard {
157 &timed_down
158 ? bless \\$_[0], Coro::Semaphore::guard::
159 : ();
160}
161
124sub Coro::Semaphore::Guard::DESTROY { 162sub Coro::Semaphore::guard::DESTROY {
125 &up(${${$_[0]}}); 163 &up(${${$_[0]}});
126} 164}
127 165
1281; 1661;
129 167
130=back 168=back
131 169
132=head1 AUTHOR 170=head1 AUTHOR
133 171
134 Marc Lehmann <pcg@goof.com> 172 Marc Lehmann <schmorp@schmorp.de>
135 http://www.goof.com/pcg/marc/ 173 http://home.schmorp.de/
136 174
137=cut 175=cut
138 176

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines