Tagged Questions

7
votes
1answer
57 views

Writing a modular aggregator and normalizer in Perl

I've just entered into an environment where I am much more free to choose whatever approach I want for a project (meaning full access to the CPAN and no module-approval-by-committee), but I'm a little ...
6
votes
5answers
530 views

Where can I find books or tutorials for Perl's POE?

Could someone provide a link to a book on POE (Perl object environment) if there any book like this? Or could someone provide a good tutorial about POE in addtion to the tutorials that found under ...
4
votes
2answers
178 views

Where can I read a clear explanation of POE (Perl Object Environment)?

I am searching for about a week for a good and clear tutorial for POE that is relevant to 2010 and didn't find one. I found some tutorials in the Stack Overflow question Where can I find books or ...
2
votes
1answer
84 views

monitoring an exe applicaion launching

I need to monitor an console exe application which don't have any stdin from the user it only print some info to the screen i used a POE:Wheel for this task Below are my code: use POE qw( ...
2
votes
3answers
1k views

What's the right way to kill child processes in perl before exiting?

I'm running an IRC Bot (Bot::BasicBot) which has two child processes running File::Tail but when exiting, they don't terminate. So I'm killling them using Proc::ProcessTable like this before exiting: ...
2
votes
2answers
842 views

How do I correctly shutdown a Bot::BasicBot bot (based on POE::Component::IRC)?

This is a sample script. When I hit Ctrl+C, the bot quits IRC but it reconnects back after some time. How do I shut down the bot correctly? #!/usr/bin/perl package main; my $bot = Perlbot->new ...
2
votes
1answer
84 views

How can I identify Windows PnP events with Perl's POE?

Is there a POE module that identifies PnP events in Windows? If yes, could someone provide idea code snippet?
2
votes
1answer
141 views

How do I put an array on the POE heap and push or pop data?

How do I put an array on the POE heap, and push/pop data to/from it? I'm trying to put the following array on the heap: @commands = ( ["quit",\&Harlie::Commands::do_quit,10], ...
2
votes
2answers
273 views

Is there a Perl POE module for monitoring a database table for changes?

Is there any Wheel /POCO /Option to do this in Perl using the POE module: I want to monitor a DB table for changed records (deleting /insert/ update) and react accordingly to those changes. If yes ...
2
votes
1answer
264 views

How to undersand the POE-Tk use of destroy?

Here is some test code to illustrate my problem; use Tk; use POE qw( Loop::TkActiveState ); use Tk::Toplevel; POE::Session->create( inline_states => { _start => \&ui_start ,top1 => ...
1
vote
1answer
90 views

Are multiple simultaneous Perl POE providers permitted?

I'm using POE to build a system that bridges several protocols (HTTP, IRC, XMPP), and I'd like to use POE to drive a single event loop that handles these protocols. Can I do this safely, and if so, ...
1
vote
2answers
116 views

Perl POE::Wheel::FollowTail running in a thread not modifying global variables

In this program POE::Wheel::FollowTail works well for following the tail of a file, it is also running in a separate thread to simply monitor the progress of a compile job. Inside the InputEvent ...
1
vote
0answers
64 views

perl POE::Component::Pool

The code below prints the result of the SQL query, but why won't it insert the record? #!/cbilldata/media/perl/bin/perl use Data::Dumper; use POE; use POE qw( Component::Pool::DBI ); my $user_name = ...
1
vote
0answers
80 views

What are (dis)advantages running POE (Perl object environment) under Windows?

I need to build a production critical system for networking using the POE module under Windows system. As I see from some source in the Internet that POE is not behaved well under Windows, could ...
1
vote
5answers
135 views

What can I do to find out what's causing my program to consume lots of memory over time?

I have an application using POE which has about 10 sessions doing various tasks. Over time, the app starts consuming more and more RAM and this usage doesn't go down even though the app is idle 80% of ...
1
vote
2answers
398 views

How do I check if a user is authenticated with NickServ using POE::Component::IRC::State in Perl?

I'm trying to test whether a user is registered on FreeNode. nick_info() doesn't seem to return information about this, so I want to use $irc->yield(whois => $nick); and then grab the irc_whois ...
1
vote
4answers
267 views

How do I find the current value of a processes STDOUT in Perl?

I have a POE Perl program forking children. The children it is forking do logging and interactive telnets into remote devices. POE uses STDOUT to return output back up to the parent process but for ...
1
vote
1answer
81 views

Understanding name spaces in POE-Tk

I posted "How to undersand the POE-Tk use of destroy?" in an attempt to reduce the bug in my production code to a test case. But it seems that the solution to the test case is not working in the ...
0
votes
1answer
27 views

POE-Component-IRC crashes under Windows 7 64-bit

I'm trying to run the Perl module POE-Component-IRC using Perl v5.12.13 with ActiveState under Windows 7 64-bit and each time it is run it crashes Windows. I'm pretty sure it's something to do with ...
0
votes
1answer
46 views

Perl POE DirWatcher

Can someone tell me if POE::Component::DirWatch works with an ftp directory .show me how you would watch a directory over ftp
0
votes
1answer
35 views

How do I set up my POE::Filter to receive the entire chunk of data returned from the server?

I tried the following my $filter = POE::Filter::Line->new(OutputLiteral => ''); my $wheel = POE::Wheel::ReadWrite->new( Handle => $socket, Filter => $filter, ...
0
votes
0answers
51 views

Max retries using perl POE::Component::pool::DBI

How can i tell my code below to keep on trying to connect to the database until there is a connection, the max_retries does not seem to be working POE::Session->create( inline_states => { ...
0
votes
1answer
57 views

Why are these POE threads results not showing when I print them?

The code below should print ten results but instead it prints ten "test-ite". Why is it not showing the results it got from the database? use Data::Dumper; use POE; use POE qw( Component::Pool::DBI ...
0
votes
1answer
298 views

Daemon network process (perl) under Redhat RHEL5 is denying network connection

I wrote a program that is using the Perl POE Framework to realize a json webservice. So far so good. I have no problems running that application under debian systems. But when i run my application ...
0
votes
0answers
57 views

(Perl) Poe dnsbl client keeps spinning even though there is no work

use strict; use POE qw(Component::Client::DNSBL); my $dnsbl = POE::Component::Client::DNSBL->spawn(); POE::Session->create( package_states => [ 'main' => [qw(_start _stop _response)], ...
0
votes
2answers
171 views

POE complains that POE::Kernel's run method was never called when I fork

This is my code: if ($DAEMON) { my $pid = fork(); if (not defined $pid) { print "Unable to start daemon.\n"; ...
0
votes
1answer
39 views

How do I get the responses from POE::Component::Client::HTTP?

My component POE::Component::Client::HTTP->spawn( Agent => "MyScript/1.0", Alias => 'browser', Timeout => 60, FollowRedirects => 3, ); ...
0
votes
1answer
254 views

How does variable scoping work in a POE session?

Can anyone explain how variable scoping works within a POE session? What is the proper way to pass state within the session, without impacting other sessions? Thanks Josh