ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AnyEvent/Impl/Glib.pm
(Generate patch)

Comparing AnyEvent/lib/AnyEvent/Impl/Glib.pm (file contents):
Revision 1.18 by root, Tue Jul 8 19:33:40 2008 UTC vs.
Revision 1.23 by root, Mon Jun 22 11:17:03 2009 UTC

14This module provides transparent support for AnyEvent. You don't have to 14This module provides transparent support for AnyEvent. You don't have to
15do anything to make Glib work with AnyEvent except by loading Glib before 15do anything to make Glib work with AnyEvent except by loading Glib before
16creating the first AnyEvent watcher. 16creating the first AnyEvent watcher.
17 17
18Glib is probably the most inefficient event loop that has ever seen the 18Glib is probably the most inefficient event loop that has ever seen the
19light of the world: Glib not only scans all its watchers (really, ALL 19light of the world: Glib not only scans all its watchers (really, ALL of
20of them, whether I/O-related, timer-related or not) during each loop 20them, whether I/O-related, timer-related or what not) during each loop
21iteration, it also does so multiple times and rebuilds the poll list for 21iteration, it also does so multiple times and rebuilds the poll list for
22the kernel each time again, dynamically even. 22the kernel each time again, dynamically even.
23
24On the positive side, and most importantly, Glib generally works
25correctly, no quarrels there.
23 26
24If you create many watchers (as in: more than two), you might consider one 27If you create many watchers (as in: more than two), you might consider one
25of the L<Glib::EV>, L<EV::Glib> or L<Glib::Event> modules that map Glib to 28of the L<Glib::EV>, L<EV::Glib> or L<Glib::Event> modules that map Glib to
26other, more efficient, event loops. 29other, more efficient, event loops.
27 30
28This module uses the default Glib main context for all it's watchers. 31This module uses the default Glib main context for all its watchers.
29 32
30=cut 33=cut
31 34
32package AnyEvent::Impl::Glib; 35package AnyEvent::Impl::Glib;
33 36
34no warnings; 37no warnings;
35use strict; 38use strict;
36 39
37use Glib (); 40use Glib ();
38 41
39our $maincontext = Glib::MainContext->default; 42our $mainloop = Glib::MainContext->default;
40 43
41sub io { 44sub io {
42 my ($class, %arg) = @_; 45 my ($class, %arg) = @_;
43 46
44 my $fh = $arg{fh};
45 my $cb = $arg{cb}; 47 my $cb = $arg{cb};
46 48
47 my @cond; 49 my @cond;
48 # some glibs need hup, others error with it, YMMV 50 # some glibs need hup, others error with it, YMMV
49 push @cond, "in", "hup" if $arg{poll} eq "r"; 51 push @cond, "in", "hup" if $arg{poll} eq "r";
50 push @cond, "out", "hup" if $arg{poll} eq "w"; 52 push @cond, "out", "hup" if $arg{poll} eq "w";
51 53
52 my $source = add_watch Glib::IO fileno $arg{fh}, \@cond, sub { 54 my $source = add_watch Glib::IO fileno $arg{fh}, \@cond, sub { &$cb; 1 };
53 &$cb;
54 $fh; # mention it here to keep it from being destroyed
55 1
56 };
57
58 bless \\$source, $class 55 bless \\$source, $class
59} 56}
60 57
61sub timer { 58sub timer {
62 my ($class, %arg) = @_; 59 my ($class, %arg) = @_;
74 : sub { &$cb; 0 }; 71 : sub { &$cb; 0 };
75 72
76 bless \\$source, $class 73 bless \\$source, $class
77} 74}
78 75
76sub idle {
77 my ($class, %arg) = @_;
78
79 my $cb = $arg{cb};
80 my $source = add Glib::Idle sub { &$cb; 1 };
81 bless \\$source, $class
82}
83
79sub DESTROY { 84sub DESTROY {
80 remove Glib::Source $${$_[0]}; 85 remove Glib::Source $${$_[0]};
81} 86}
82 87
83sub one_event { 88sub one_event {
84 $maincontext->iteration (1); 89 $mainloop->iteration (1);
90}
91
92sub loop {
93 $mainloop->iteration (1) while 1; # hackish, but w ehave no mainloop
85} 94}
86 95
871; 961;
88 97
89=head1 SEE ALSO 98=head1 SEE ALSO

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines