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

Comparing Coro/Coro.pm (file contents):
Revision 1.297 by root, Thu May 12 23:55:39 2011 UTC vs.
Revision 1.337 by root, Sun Oct 4 13:10:22 2015 UTC

16 cede; # yield to coro 16 cede; # yield to coro
17 print "3\n"; 17 print "3\n";
18 cede; # and again 18 cede; # and again
19 19
20 # use locking 20 # use locking
21 use Coro::Semaphore;
22 my $lock = new Coro::Semaphore; 21 my $lock = new Coro::Semaphore;
23 my $locked; 22 my $locked;
24 23
25 $lock->down; 24 $lock->down;
26 $locked = 1; 25 $locked = 1;
196 195
197 async { 196 async {
198 Coro::terminate "return value 1", "return value 2"; 197 Coro::terminate "return value 1", "return value 2";
199 }; 198 };
200 199
201And yet another way is to C<< ->cancel >> (or C<< ->safe_cancel >>) the 200Yet another way is to C<< ->cancel >> (or C<< ->safe_cancel >>) the coro
202coro thread from another thread: 201thread from another thread:
203 202
204 my $coro = async { 203 my $coro = async {
205 exit 1; 204 exit 1;
206 }; 205 };
207 206
219So, cancelling a thread that runs in an XS event loop might not be the 218So, cancelling a thread that runs in an XS event loop might not be the
220best idea, but any other combination that deals with perl only (cancelling 219best idea, but any other combination that deals with perl only (cancelling
221when a thread is in a C<tie> method or an C<AUTOLOAD> for example) is 220when a thread is in a C<tie> method or an C<AUTOLOAD> for example) is
222safe. 221safe.
223 222
224Lastly, a coro thread object that isn't referenced is C<< ->cancel >>'ed 223Last not least, a coro thread object that isn't referenced is C<<
225automatically - just like other objects in Perl. This is not such a common 224->cancel >>'ed automatically - just like other objects in Perl. This
226case, however - a running thread is referencedy b C<$Coro::current>, a 225is not such a common case, however - a running thread is referencedy by
227thread ready to run is referenced by the ready queue, a thread waiting 226C<$Coro::current>, a thread ready to run is referenced by the ready queue,
228on a lock or semaphore is referenced by being in some wait list and so 227a thread waiting on a lock or semaphore is referenced by being in some
229on. But a thread that isn't in any of those queues gets cancelled: 228wait list and so on. But a thread that isn't in any of those queues gets
229cancelled:
230 230
231 async { 231 async {
232 schedule; # cede to other coros, don't go into the ready queue 232 schedule; # cede to other coros, don't go into the ready queue
233 }; 233 };
234 234
235 cede; 235 cede;
236 # now the async above is destroyed, as it is not referenced by anything. 236 # now the async above is destroyed, as it is not referenced by anything.
237
238A slightly embellished example might make it clearer:
239
240 async {
241 my $guard = Guard::guard { print "destroyed\n" };
242 schedule while 1;
243 };
244
245 cede;
246
247Superficially one might not expect any output - since the C<async>
248implements an endless loop, the C<$guard> will not be cleaned up. However,
249since the thread object returned by C<async> is not stored anywhere, the
250thread is initially referenced because it is in the ready queue, when it
251runs it is referenced by C<$Coro::current>, but when it calls C<schedule>,
252it gets C<cancel>ed causing the guard object to be destroyed (see the next
253section), and printing it's message.
254
255If this seems a bit drastic, remember that this only happens when nothing
256references the thread anymore, which means there is no way to further
257execute it, ever. The only options at this point are leaking the thread,
258or cleaning it up, which brings us to...
237 259
238=item 5. Cleanup 260=item 5. Cleanup
239 261
240Threads will allocate various resources. Most but not all will be returned 262Threads will allocate various resources. Most but not all will be returned
241when a thread terminates, during clean-up. 263when a thread terminates, during clean-up.
260 282
261 my $sem = new Coro::Semaphore; 283 my $sem = new Coro::Semaphore;
262 284
263 async { 285 async {
264 my $lock_guard = $sem->guard; 286 my $lock_guard = $sem->guard;
265 # if we reutrn, or die or get cancelled, here, 287 # if we return, or die or get cancelled, here,
266 # then the semaphore will be "up"ed. 288 # then the semaphore will be "up"ed.
267 }; 289 };
268 290
269The C<Guard::guard> function comes in handy for any custom cleanup you 291The C<Guard::guard> function comes in handy for any custom cleanup you
270might want to do (but you cannot switch to other coroutines form those 292might want to do (but you cannot switch to other coroutines from those
271code blocks): 293code blocks):
272 294
273 async { 295 async {
274 my $window = new Gtk2::Window "toplevel"; 296 my $window = new Gtk2::Window "toplevel";
275 # The window will not be cleaned up automatically, even when $window 297 # The window will not be cleaned up automatically, even when $window
292=item 6. Viva La Zombie Muerte 314=item 6. Viva La Zombie Muerte
293 315
294Even after a thread has terminated and cleaned up its resources, the Coro 316Even after a thread has terminated and cleaned up its resources, the Coro
295object still is there and stores the return values of the thread. 317object still is there and stores the return values of the thread.
296 318
297The means the Coro object gets freed automatically when the thread has 319When there are no other references, it will simply be cleaned up and
298terminated and cleaned up and there arenot other references. 320freed.
299 321
300If there are, the Coro object will stay around, and you can call C<< 322If there areany references, the Coro object will stay around, and you
301->join >> as many times as you wish to retrieve the result values: 323can call C<< ->join >> as many times as you wish to retrieve the result
324values:
302 325
303 async { 326 async {
304 print "hi\n"; 327 print "hi\n";
305 1 328 1
306 }; 329 };
343 366
344our $idle; # idle handler 367our $idle; # idle handler
345our $main; # main coro 368our $main; # main coro
346our $current; # current coro 369our $current; # current coro
347 370
348our $VERSION = 5.372; 371our $VERSION = 6.48;
349 372
350our @EXPORT = qw(async async_pool cede schedule terminate current unblock_sub rouse_cb rouse_wait); 373our @EXPORT = qw(async async_pool cede schedule terminate current unblock_sub rouse_cb rouse_wait);
351our %EXPORT_TAGS = ( 374our %EXPORT_TAGS = (
352 prio => [qw(PRIO_MAX PRIO_HIGH PRIO_NORMAL PRIO_LOW PRIO_IDLE PRIO_MIN)], 375 prio => [qw(PRIO_MAX PRIO_HIGH PRIO_NORMAL PRIO_LOW PRIO_IDLE PRIO_MIN)],
353); 376);
358=over 4 381=over 4
359 382
360=item $Coro::main 383=item $Coro::main
361 384
362This variable stores the Coro object that represents the main 385This variable stores the Coro object that represents the main
363program. While you cna C<ready> it and do most other things you can do to 386program. While you can C<ready> it and do most other things you can do to
364coro, it is mainly useful to compare again C<$Coro::current>, to see 387coro, it is mainly useful to compare again C<$Coro::current>, to see
365whether you are running in the main program or not. 388whether you are running in the main program or not.
366 389
367=cut 390=cut
368 391
629 Coro::on_enter { 652 Coro::on_enter {
630 # on entering the thread, we set an VTALRM handler to cede 653 # on entering the thread, we set an VTALRM handler to cede
631 $SIG{VTALRM} = sub { cede }; 654 $SIG{VTALRM} = sub { cede };
632 # and then start the interval timer 655 # and then start the interval timer
633 Time::HiRes::setitimer &Time::HiRes::ITIMER_VIRTUAL, 0.01, 0.01; 656 Time::HiRes::setitimer &Time::HiRes::ITIMER_VIRTUAL, 0.01, 0.01;
634 }; 657 };
635 Coro::on_leave { 658 Coro::on_leave {
636 # on leaving the thread, we stop the interval timer again 659 # on leaving the thread, we stop the interval timer again
637 Time::HiRes::setitimer &Time::HiRes::ITIMER_VIRTUAL, 0, 0; 660 Time::HiRes::setitimer &Time::HiRes::ITIMER_VIRTUAL, 0, 0;
638 }; 661 };
639 662
640 &{+shift}; 663 &{+shift};
641 } 664 }
642 665
643 # use like this: 666 # use like this:
644 timeslice { 667 timeslice {
645 # The following is an endless loop that would normally 668 # The following is an endless loop that would normally
646 # monopolise the process. Since it runs in a timesliced 669 # monopolise the process. Since it runs in a timesliced
647 # environment, it will regularly cede to other threads. 670 # environment, it will regularly cede to other threads.
648 while () { } 671 while () { }
649 }; 672 };
650 673
651 674
652=item killall 675=item killall
653 676
654Kills/terminates/cancels all coros except the currently running one. 677Kills/terminates/cancels all coros except the currently running one.
767current Coro. 790current Coro.
768 791
769This is a rather brutal way to free a coro, with some limitations - if 792This is a rather brutal way to free a coro, with some limitations - if
770the thread is inside a C callback that doesn't expect to be canceled, 793the thread is inside a C callback that doesn't expect to be canceled,
771bad things can happen, or if the cancelled thread insists on running 794bad things can happen, or if the cancelled thread insists on running
772complicated cleanup handlers that rely on it'S thread context, things will 795complicated cleanup handlers that rely on its thread context, things will
773not work. 796not work.
774 797
775Any cleanup code being run (e.g. from C<guard> blocks) will be run without 798Any cleanup code being run (e.g. from C<guard> blocks, destructors and so
776a thread context, and is not allowed to switch to other threads. On the 799on) will be run without a thread context, and is not allowed to switch
800to other threads. A common mistake is to call C<< ->cancel >> from a
801destructor called by die'ing inside the thread to be cancelled for
802example.
803
777plus side, C<< ->cancel >> will always clean up the thread, no matter 804On the plus side, C<< ->cancel >> will always clean up the thread, no
778what. If your cleanup code is complex or you want to avoid cancelling a 805matter what. If your cleanup code is complex or you want to avoid
779C-thread that doesn't know how to clean up itself, it can be better to C<< 806cancelling a C-thread that doesn't know how to clean up itself, it can be
780->throw >> an exception, or use C<< ->safe_cancel >>. 807better to C<< ->throw >> an exception, or use C<< ->safe_cancel >>.
781 808
782The arguments to C<< ->cancel >> are not copied, but instead will 809The arguments to C<< ->cancel >> are not copied, but instead will
783be referenced directly (e.g. if you pass C<$var> and after the call 810be referenced directly (e.g. if you pass C<$var> and after the call
784change that variable, then you might change the return values passed to 811change that variable, then you might change the return values passed to
785e.g. C<join>, so don't do that). 812e.g. C<join>, so don't do that).
791 818
792=item $coro->safe_cancel ($arg...) 819=item $coro->safe_cancel ($arg...)
793 820
794Works mostly like C<< ->cancel >>, but is inherently "safer", and 821Works mostly like C<< ->cancel >>, but is inherently "safer", and
795consequently, can fail with an exception in cases the thread is not in a 822consequently, can fail with an exception in cases the thread is not in a
796cancellable state. 823cancellable state. Essentially, C<< ->safe_cancel >> is a C<< ->cancel >>
824with extra checks before canceling.
797 825
798This method works a bit like throwing an exception that cannot be caught 826It works a bit like throwing an exception that cannot be caught -
799- specifically, it will clean up the thread from within itself, so 827specifically, it will clean up the thread from within itself, so all
800all cleanup handlers (e.g. C<guard> blocks) are run with full thread 828cleanup handlers (e.g. C<guard> blocks) are run with full thread
801context and can block if they wish. The downside is that there is no 829context and can block if they wish. The downside is that there is no
802guarantee that the thread can be cancelled when you call this method, and 830guarantee that the thread can be cancelled when you call this method, and
803therefore, it might fail. It is also considerably slower than C<cancel> or 831therefore, it might fail. It is also considerably slower than C<cancel> or
804C<terminate>. 832C<terminate>.
805 833
891that is, after it's resources have been freed but before it is joined. The 919that is, after it's resources have been freed but before it is joined. The
892callback gets passed the terminate/cancel arguments, if any, and I<must 920callback gets passed the terminate/cancel arguments, if any, and I<must
893not> die, under any circumstances. 921not> die, under any circumstances.
894 922
895There can be any number of C<on_destroy> callbacks per coro, and there is 923There can be any number of C<on_destroy> callbacks per coro, and there is
896no way currently to remove a callback once added. 924currently no way to remove a callback once added.
897 925
898=item $oldprio = $coro->prio ($newprio) 926=item $oldprio = $coro->prio ($newprio)
899 927
900Sets (or gets, if the argument is missing) the priority of the 928Sets (or gets, if the argument is missing) the priority of the
901coro thread. Higher priority coro get run before lower priority 929coro thread. Higher priority coro get run before lower priority
928coro thread. This is just a free-form string you can associate with a 956coro thread. This is just a free-form string you can associate with a
929coro. 957coro.
930 958
931This method simply sets the C<< $coro->{desc} >> member to the given 959This method simply sets the C<< $coro->{desc} >> member to the given
932string. You can modify this member directly if you wish, and in fact, this 960string. You can modify this member directly if you wish, and in fact, this
933is often preferred to indicate major processing states that cna then be 961is often preferred to indicate major processing states that can then be
934seen for example in a L<Coro::Debug> session: 962seen for example in a L<Coro::Debug> session:
935 963
936 sub my_long_function { 964 sub my_long_function {
937 local $Coro::current->{desc} = "now in my_long_function"; 965 local $Coro::current->{desc} = "now in my_long_function";
938 ... 966 ...
993otherwise you might suffer from crashes or worse. The only event library 1021otherwise you might suffer from crashes or worse. The only event library
994currently known that is safe to use without C<unblock_sub> is L<EV> (but 1022currently known that is safe to use without C<unblock_sub> is L<EV> (but
995you might still run into deadlocks if all event loops are blocked). 1023you might still run into deadlocks if all event loops are blocked).
996 1024
997Coro will try to catch you when you block in the event loop 1025Coro will try to catch you when you block in the event loop
998("FATAL:$Coro::IDLE blocked itself"), but this is just best effort and 1026("FATAL: $Coro::idle blocked itself"), but this is just best effort and
999only works when you do not run your own event loop. 1027only works when you do not run your own event loop.
1000 1028
1001This function allows your callbacks to block by executing them in another 1029This function allows your callbacks to block by executing them in another
1002coro where it is safe to block. One example where blocking is handy 1030coro where it is safe to block. One example where blocking is handy
1003is when you use the L<Coro::AIO|Coro::AIO> functions to save results to 1031is when you use the L<Coro::AIO|Coro::AIO> functions to save results to
1107But from within a coro, you often just want to write this: 1135But from within a coro, you often just want to write this:
1108 1136
1109 my $status = wait_for_child $pid; 1137 my $status = wait_for_child $pid;
1110 1138
1111Coro offers two functions specifically designed to make this easy, 1139Coro offers two functions specifically designed to make this easy,
1112C<Coro::rouse_cb> and C<Coro::rouse_wait>. 1140C<rouse_cb> and C<rouse_wait>.
1113 1141
1114The first function, C<rouse_cb>, generates and returns a callback that, 1142The first function, C<rouse_cb>, generates and returns a callback that,
1115when invoked, will save its arguments and notify the coro that 1143when invoked, will save its arguments and notify the coro that
1116created the callback. 1144created the callback.
1117 1145
1123function mentioned above: 1151function mentioned above:
1124 1152
1125 sub wait_for_child($) { 1153 sub wait_for_child($) {
1126 my ($pid) = @_; 1154 my ($pid) = @_;
1127 1155
1128 my $watcher = AnyEvent->child (pid => $pid, cb => Coro::rouse_cb); 1156 my $watcher = AnyEvent->child (pid => $pid, cb => rouse_cb);
1129 1157
1130 my ($rpid, $rstatus) = Coro::rouse_wait; 1158 my ($rpid, $rstatus) = rouse_wait;
1131 $rstatus 1159 $rstatus
1132 } 1160 }
1133 1161
1134In the case where C<rouse_cb> and C<rouse_wait> are not flexible enough, 1162In the case where C<rouse_cb> and C<rouse_wait> are not flexible enough,
1135you can roll your own, using C<schedule>: 1163you can roll your own, using C<schedule> and C<ready>:
1136 1164
1137 sub wait_for_child($) { 1165 sub wait_for_child($) {
1138 my ($pid) = @_; 1166 my ($pid) = @_;
1139 1167
1140 # store the current coro in $current, 1168 # store the current coro in $current,
1143 my ($done, $rstatus); 1171 my ($done, $rstatus);
1144 1172
1145 # pass a closure to ->child 1173 # pass a closure to ->child
1146 my $watcher = AnyEvent->child (pid => $pid, cb => sub { 1174 my $watcher = AnyEvent->child (pid => $pid, cb => sub {
1147 $rstatus = $_[1]; # remember rstatus 1175 $rstatus = $_[1]; # remember rstatus
1148 $done = 1; # mark $rstatus as valud 1176 $done = 1; # mark $rstatus as valid
1177 $current->ready; # wake up the waiting thread
1149 }); 1178 });
1150 1179
1151 # wait until the closure has been called 1180 # wait until the closure has been called
1152 schedule while !$done; 1181 schedule while !$done;
1153 1182
1272 1301
1273XS API: L<Coro::MakeMaker>. 1302XS API: L<Coro::MakeMaker>.
1274 1303
1275Low level Configuration, Thread Environment, Continuations: L<Coro::State>. 1304Low level Configuration, Thread Environment, Continuations: L<Coro::State>.
1276 1305
1277=head1 AUTHOR 1306=head1 AUTHOR/SUPPORT/CONTACT
1278 1307
1279 Marc Lehmann <schmorp@schmorp.de> 1308 Marc A. Lehmann <schmorp@schmorp.de>
1280 http://home.schmorp.de/ 1309 http://software.schmorp.de/pkg/Coro.html
1281 1310
1282=cut 1311=cut
1283 1312

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines