Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^4: Executing functions from another process

by gri6507 (Deacon)
on Jan 23, 2014 at 19:54 UTC ( [id://1071808]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Executing functions from another process
in thread Executing functions from another process

Ok. I've tried it and it works great, but with one key problem. It appears that when JSON encodes the parameters, it does so "by value". In other words, if my function call is supposed to take an argument by reference to a scalar, with the intent of modifying it, this method does not work.
  • Comment on Re^4: Executing functions from another process

Replies are listed 'Best First'.
Re^5: Executing functions from another process
by Corion (Patriarch) on Jan 24, 2014 at 07:29 UTC

    Now is a good time to review perlipc.

    The only way to modify values within a Perl process is to do it within that one Perl process. Either you use threads, or you set up an API to do that modification for you.

    There are other approaches, like shared memory or debuggers, but until you've understood the limitations of IPC, it doesn't make sense to bring out the heavy guns.

Re^5: Executing functions from another process
by Anonymous Monk on Jan 23, 2014 at 23:09 UTC
    inter process communication works by bytes -- values -- you cannot pass references between processes -- you have to serialize them to bytes

      That's exactly the point I was glossing over when I recommended a dispatch table at the receiving end, and a JSON producer at the sending end..

      The OP doesn't have to use JSON, but it's convenient, and well understood. The point is that the OP cannot simply pass references around, he has to pass plain old data. So a JSON packet that looks something like this:

      '{"action":"tupitar","params":["this","that","other"]}'

      ...would be easy to interpret at the receiving end. And the dispatch table avoids the mess of going directly to symbolic subrefs.

      Things get ugly if he's got to send huge amounts of data to the subroutines. But even there, an additional layer of indirection can help; instead of sending data as a parameter, send a link to the data; a filename, a row ID from a database, or whatever. But sending a Perl reference is an indirection that will lose its magic as it gets passed around. ...just like you wouldn't pass a C pointer to local data from one process to another.


      Dave

        The subroutines that I am trying to call from one process to the other do indeed pass a bunch of data, some of which is by reference. I understand that this can't be done due to the memory space separation of the two processes. I also understand that I would need to
        1. serialize the parameters on the caller side, flattening out any references
        2. deserialize the parameters on the receiving side into the same prototype
        3. actual function executes with the deserialized parameters, potentially modifying the by reference parameters
        4. then serialize the modified parameters again to capture the modified values
        5. deserialize the parameters on the original caller side to update the parameter values
        I've put together a very simple example of the first 3 steps where I use Data::Dump for my (de)serialization. However, I am running into an issue.
        use warnings; use strict; use Data::Dump qw(dump); my $a = "one"; my $b = "two"; my $c = \$b; my @d = ($a, $b, $c); my $str = dump(@d); # ("one", "two", \"two") my @newD = eval $str; $newD[0] = "A"; $newD[1] = "B"; ${$newD[2]} = "C";
        The problem happens on the last line which errors out with Modification of a read-only value. Why is this the case?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-19 01:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found