]> ruin.nu Git - NDIRC.git/blobdiff - CommonStates.pm
Basic conversion to POE::Component::IRC
[NDIRC.git] / CommonStates.pm
diff --git a/CommonStates.pm b/CommonStates.pm
new file mode 100644 (file)
index 0000000..655bbba
--- /dev/null
@@ -0,0 +1,123 @@
+#**************************************************************************
+#   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
+#                                                                         *
+#   This program is free software; you can redistribute it and/or modify  *
+#   it under the terms of the GNU General Public License as published by  *
+#   the Free Software Foundation; either version 2 of the License, or     *
+#   (at your option) any later version.                                   *
+#                                                                         *
+#   This program is distributed in the hope that it will be useful,       *
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+#   GNU General Public License for more details.                          *
+#                                                                         *
+#   You should have received a copy of the GNU General Public License     *
+#   along with this program; if not, write to the                         *
+#   Free Software Foundation, Inc.,                                       *
+#   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
+#**************************************************************************/
+package NDIRC::CommonStates;
+
+use strict;
+use warnings;
+use feature ':5.10';
+
+use POE::Session;
+
+# We registered for all events, this will produce some debug info.
+sub _default {
+       my ($event, $args) = @_[ARG0 .. $#_];
+       my @output = ( "$event: " );
+
+       for my $arg (@$args) {
+               if ( ref $arg eq 'ARRAY' ) {
+                       push( @output, '[' . join(', ', @$arg ) . ']' );
+               }
+               else {
+                       push ( @output, "'$arg'" );
+               }
+       }
+       print join ' ', @output, "\n";
+       return 0;
+}
+
+sub _start {
+       my ($kernel,$heap,$session) = @_[KERNEL,HEAP,SESSION];
+
+       # retrieve our component's object from the heap where we stashed it
+       my $irc = $heap->{irc};
+       $kernel->sig( DIE => 'sig_DIE' );
+       $kernel->sig( USR1 => 'sig_usr1' );
+       $kernel->sig( USR2 => 'sig_usr2' );
+       $kernel->sig( INT => 'signal_handler' );
+
+       $heap->{connector} = POE::Component::IRC::Plugin::Connector->new();
+       $irc->plugin_add( 'Connector' => $heap->{connector} );
+
+       $kernel->signal($session => 'USR2');
+
+       $irc->yield( register => 'all' );
+       $irc->yield( connect => { } );
+
+       $kernel->delay( refresh => 60 );
+       return;
+}
+
+sub sig_DIE {
+       my( $kernel,$sig, $ex ) = @_[ KERNEL,ARG0, ARG1 ];
+       say "DIED!!!!!!!!!!!!!!";
+       # $sig is 'DIE'
+       # $ex is the exception hash
+       warn "$$: error in event: $ex->{error_str}";
+       $kernel->sig_handled();
+
+       # Send the signal to session that sent the original event.
+       #if( $ex->{source_session} ne $_[SESSION] ) {
+       #$kernel->signal( $ex->{source_session}, 'DIE', $sig, $ex );
+       #}
+}
+
+sub signal_handler {
+       my ($kernel, $signal_name, $heap) = @_[KERNEL, ARG0, HEAP];
+       print "First session caught SIG$signal_name\n";
+
+       $heap->{irc}->yield(privmsg => '#testarlite', "SIGNAL $signal_name!");
+
+       given($signal_name){
+               when ('INT') {
+                       $heap->{irc}->yield(quit => 'Bye!');
+                       $kernel->sig_handled();
+               }
+       }
+       #$kernel->sig_handled();
+}
+
+sub irc_disconnected {
+       my ($sender,$heap) = @_[SENDER,HEAP];
+
+       exit;
+}
+
+sub irc_001 {
+       my ($sender,$heap) = @_[SENDER,HEAP];
+
+       # Since this is an irc_* event, we can get the component's object by
+       # accessing the heap of the sender. Then we register and connect to the
+       # specified server.
+       my $irc = $sender->get_heap();
+
+       print "Connected to ", $irc->server_name(), "\n";
+
+       # we join our channels
+       $irc->yield( join => $_ ) for grep /^#/, keys %{$heap->{disp}->channels};
+       return;
+}
+
+sub irc_invite {
+       my ($sender, $heap, $who, $channel) = @_[SENDER, HEAP, ARG0 .. ARG1];
+       my $irc = $sender->get_heap();
+
+       $irc->yield( join => $_ ) for grep /^$channel$/i, keys %{$heap->{disp}->channels}
+}
+
+1;