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

Comparing Coro/eg/event (file contents):
Revision 1.1 by root, Sun Jul 15 02:36:54 2001 UTC vs.
Revision 1.12 by root, Sat Apr 14 15:12:30 2007 UTC

1#!/usr/bin/perl 1#!/usr/bin/perl
2 2
3# this crap is an asynchronous finger client. it's rather idiotic ;)
4
3use Coro; 5use Coro;
6use Coro::Socket;
4use Coro::Event; 7use Coro::Event;
8use AnyEvent;
5 9
6sub keyboard : Coro { 10my $quit = AnyEvent->condvar;
7 my $w = Coro::Event->io(fd => *STDIN, poll => 'r'); 11
8 while() { 12# this gets started everytime a user enters a finger command
9 print "cmd> "; 13sub finger {
10 my $ev = $w->next; my $cmd = <STDIN>; 14 my $user = shift;
11 print "data> "; 15 my $host = shift;
12 my $ev = $w->next; my $data = <STDIN>; 16
13 } 17 my $fh = new Coro::Socket PeerHost => $host, PeerPort => "finger"
18 or die "$user\@$host: $!";
19
20 print $fh "$user\n";
21
22 print "$user\@$host: $_" while <$fh>;
23 print "$user\@$host: done\n";
14} 24}
15 25
26# display the time or garble the display, YMMV.
27sub timer : Coro {
28 my $w = Coro::Event->timer (interval => 0.001, hard => 1);
29 use Time::HiRes qw(time);
30 while () {
31 $w->next;
32 print "\e7\e[C\e[C\e[C\e[C\e[C\e[C\e[C\e[C <time ", time, "> \e8";
33 };
34}
35
36my $stdin = new_from_fh Coro::Handle \*STDIN;
37
38$SIG{PIPE} = 'IGNORE';
39
40$| = 1;
41while() {
42 print "cmd (finger|quit)> "; my $cmd = <$stdin>; chomp $cmd;
43 if ($cmd eq "finger") {
44 print "user> "; my $user = <$stdin>; chomp $user;
45 print "host> "; my $host = <$stdin>; chomp $host;
46 async { finger $user, $host };
47 } elsif ($cmd eq "quit") {
48 $quit->send;
49 } else {
50 print "unknown command '$cmd', either 'finger' or 'quit'\n";
51 }
52}
53

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines