Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^5: threads with shared variables across multiple instances of a module

by BrowserUk (Patriarch)
on Mar 26, 2010 at 16:19 UTC ( [id://831187]=note: print w/replies, xml ) Need Help??


in reply to Re^4: threads with shared variables across multiple instances of a module
in thread threads with shared variables across multiple instances of a module

This  *client{IO}; is invalid syntax when $client is a lexical.

It would have to be *{ $client }{IO}.

But that still won't help you because of an (unnecessary) restriction that doesn't allow you to store globs, (or references to globs) into shared scalars.

There are two ways to share globs (filehandles sockets etc.) between threads:

  1. Share the file number between threads and dup() the associated filehandle into existance in teh target thread(s):
    my %clients :shared; while( my $client = $server->accept; $clients{ client } = fileno( $client ); } ... ## within the threads my $client; my $fileno = $clients{ client }; open $client, "+<&$fileno" or die ... ## dup() the the glob from the f +ileno ## use $client
  2. Allow the thread access to the client handle via cloned closure:
    while( my $client = $server->accept ) { async{ while( my $in = <$client> ) { print $client $in; ### simple echo server } }->detach; }

I've never understood this restriction. The fact that a glob can be successfully shared via the latter method suggests strongly that the restriction both artifical (they just decided to reject glob(ref) assignments to shared scalars--and the code supports this); and unnecessary.

But those that should know the answer to why this restriction was established and persists, have chosen not to answer that question.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://831187]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-25 02:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found