Rather than messing around with IO::String or in-memory files and then needing to use substr to try and extract the new bits of the log etc., I think I have an alternative that will achieve your aim.

The basic idea is to tie a filehandle to a Thread::Queue object, which can be shared across threads. You tie a filehandle and then pass this into each of your Telnet threads and they pass it to their respective Net::Telnet objects for logging.

Your main thread can retrieve the thread::Queue handle from the tie and the loop over reading from it and displaying what it gets into the appropriate window(s). It can also, output the lines to the permeanent log file(s) within the same loop.

This 'loop' could also be a Tk event callback.

I hope the following (crude) code will demonstrate the idea.

#! perl -slw use strict; use threads qw[ yield ]; use Thread::Queue; package Tie::Glob::Queue; sub TIEHANDLE { my $class = shift; my $self = new Thread::Queue; return bless \$self, $class; } sub PRINT { my $Q = ${ shift() }; $Q->enqueue( join( $, || '', @_ ) ); } 1; package main; our $TELNETS ||= 10; my $threads : shared = 0; sub telnets{ { lock $threads; $threads++ } my $io = shift; for( 1 .. 5 ) { print $io threads->tid(), " : $_"; select undef, undef, undef, rand 1; } { lock $threads; $threads--; } } my $Q = ${ tie *LOG, 'Tie::Glob::Queue' }; my @threads = map{ threads->create( \&telnets, \*LOG )->detach } 1 .. +$TELNETS; yield while $threads < $TELNETS; while( $threads ) { if( $Q->pending ) { print $Q->dequeue; } else{ yield; } }

The tie package will need filling out (probably by inheriting from Tie::StdHandle) and the telnets() sub is just a placeholder but the basic methodology is there.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algoritm, algorithm on the code side." - tachyon

In reply to Re^5: Problem with using threads with modules. by BrowserUk
in thread Problem with using threads with modules. by tele2mag

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.