Inter-process communication, how?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ecir.hana@gmail.com

    Inter-process communication, how?

    Hi,
    let's say I have two scripts: one does some computations and the other
    one is a graphical front end for launching the first one. And both run
    in separate processes (front end runs and that it spawns a subprocess
    with the computation). Now, if the computation has a result I would
    like to display it in the front end. In another words, I would like to
    pass some data from one process to another. How to do that? I'm
    affraid I can't use a pipe since the computation could print out some
    logging (if I understant pipes correctly).
    Thanks!
  • ecir.hana@gmail.com

    #2
    Re: Inter-process communication, how?

    On Dec 16, 2:42 am, Dennis Lee Bieber <wlfr...@ix.net com.comwrote:
    >
    Have you perused and been perplexed by the "Is Python a Scripting
    Language" thread? <G>
    Oh, no!! Script as in "shell script".

    >
    Question: Are you creating both scripts from scratch?
    Yes?
    Yes.


    Then you can define whatever protocol is needed for your usage and
    is available on your OS.
    >
    If it is a one-shot (spawn sub, wait, retrieve results) you could
    generate a temporary file name in the parent, pass that name to the sub
    when invoking it, wait for the sub to complete (giving you a status
    code) and then read the result the sub has written to the file.
    Yes, it's once shot. But how do I pass "that name"?
    From all the arguments of class Popen (http://docs.python.org/lib/
    node529.html) perhaps I could use "env" only. Or am I wrong?
    TCP/IP sounds good but isn't it a bit too heavy?
    And what the other options goes I would prefer a cross platform
    solution, if there is one.

    PS: both with mmpam and temp file you probably meant that I should
    hard code some as-weirdest-filename-as-possible two both programs but
    what if I run the computation several times?

    And thanks for reply!

    >
    Or, you could have parent and sub both mmap the same "file",
    essentially passing data in memory unless it becomes too large and pages
    out to swap disk. You might even be able to do bidirectional and dynamic
    updates (rather than waiting for the sub to exit)... Define, say, an
    epoch count for each process -- these would be the first two words of
    the mmap file
    >
    |p-epoch|s-epoch|n-words of p-data (fixed constant known to both)|n-words of s-data|
    >
    periodically the parent would examine the value of s-epoch, and if it
    has changed, read the s-data.. (both sides write the data first, then
    update the epoch count). When the epoch stays the same and two
    consecutive reads of the data match, you have stable data (so the reads
    should occur more often than updates) and can process the data
    transferred.
    >
    OR, you could have the parent open a TCP/IP socket as a server, and
    pass the socket port number to the sub. The sub would then connect to
    that port and write the data. For bidirectional you could pass the
    parent port, and the sub's first action is to connect and pass a port
    that it will be monitoring.
    >
    On a VMS system, the processes would connect to named "mailboxes"
    and use QIO operations to pass data between them.
    >
    On an Amiga you'd use "message ports" (which operated somewhat
    similar to VMS mailboxes except that mailboxes had an independent
    existence, multiple processes can read or write to them -- message ports
    were readable by the creating process, but could have messages sent from
    anywhere; typically passing the message port [address of a linked list
    of messages] for replies). Or a higher level message port: an ARexx
    port.
    >
    On a Windows NT class system, the win32 extensions allow access to
    Windows Named Pipes... Or maybe the Windows clipboard could be used...
    --
    Wulfraed Dennis Lee Bieber KD6MOG
    wlfr...@ix.netc om.com wulfr...@bestia ria.com

    (Bestiaria Support Staff: web-a...@bestiaria. com)
    HTTP://www.bestiaria.com/

    Comment

    • John Machin

      #3
      Re: Inter-process communication, how?

      On Dec 16, 2:34 pm, ecir.h...@gmail .com wrote:
      If it is a one-shot (spawn sub, wait, retrieve results) you could
      generate a temporary file name in the parent, pass that name to the sub
      when invoking it, wait for the sub to complete (giving you a status
      code) and then read the result the sub has written to the file.
      >
      Yes, it's once shot. But how do I pass "that name"?
      From all the arguments of class Popen (http://docs.python.org/lib/
      node529.html) perhaps I could use "env" only. Or am I wrong?
      Yes. Consider this: If you were to run your calculation script from
      the shell prompt [strongly recommended during testing], how would you
      tell it the name of the file? Now look at the docs again.
      >
      PS: both with mmpam and temp file you probably meant that I should
      hard code some as-weirdest-filename-as-possible two both programs but
      what if I run the computation several times?
      That's mmap, not mmpam. No, Dennis didn't mean that you should hard
      code a filename. Have a look at the tempfile module.

      >
      And thanks for reply!
      >
      >
      >
      Or, you could have parent and sub both mmap the same "file",
      essentially passing data in memory unless it becomes too large and pages
      out to swap disk. You might even be able to do bidirectional and dynamic
      updates (rather than waiting for the sub to exit)... Define, say, an
      epoch count for each process -- these would be the first two words of
      the mmap file
      >
      |p-epoch|s-epoch|n-words of p-data (fixed constant known to both)|n-words of s-data|
      >
      periodically the parent would examine the value of s-epoch, and if it
      has changed, read the s-data.. (both sides write the data first, then
      update the epoch count). When the epoch stays the same and two
      consecutive reads of the data match, you have stable data (so the reads
      should occur more often than updates) and can process the data
      transferred.
      >
      OR, you could have the parent open a TCP/IP socket as a server, and
      pass the socket port number to the sub. The sub would then connect to
      that port and write the data. For bidirectional you could pass the
      parent port, and the sub's first action is to connect and pass a port
      that it will be monitoring.
      >
      On a VMS system, the processes would connect to named "mailboxes"
      and use QIO operations to pass data between them.
      >
      On an Amiga you'd use "message ports" (which operated somewhat
      similar to VMS mailboxes except that mailboxes had an independent
      existence, multiple processes can read or write to them -- message ports
      were readable by the creating process, but could have messages sent from
      anywhere; typically passing the message port [address of a linked list
      of messages] for replies). Or a higher level message port: an ARexx
      port.
      >
      On a Windows NT class system, the win32 extensions allow access to
      Windows Named Pipes... Or maybe the Windows clipboard could be used...
      --
      Wulfraed Dennis Lee Bieber KD6MOG
      wlfr...@ix.netc om.com wulfr...@bestia ria.com

      (Bestiaria Support Staff: web-a...@bestiaria. com)
      HTTP://www.bestiaria.com/

      Comment

      • ecir.hana@gmail.com

        #4
        Re: Inter-process communication, how?

        On Dec 16, 5:24 am, John Machin <sjmac...@lexic on.netwrote:
        >
        Yes. Consider this: If you were to run your calculation script from
        the shell prompt [strongly recommended during testing], how would you
        tell it the name of the file? Now look at the docs again.
        >
        File arguments! Of course, totally forgot about them! Thanks a lot!
        >
        >
        PS: both with mmpam and temp file you probably meant that I should
        hard code some as-weirdest-filename-as-possible two both programs but
        what if I run the computation several times?
        >
        That's mmap, not mmpam. No, Dennis didn't mean that you should hard
        code a filename. Have a look at the tempfile module.
        Now I recall I read I somewhere that network communication is so much
        faster than disk access (especially on the same machine, as steve
        howell suggested) so instead of file names I probably should find out
        which port is open to use.

        Comment

        • ecir.hana@gmail.com

          #5
          Re: Inter-process communication, how?

          On Dec 16, 6:38 am, Dennis Lee Bieber <wlfr...@ix.net com.comwrote:
          >
          >
          Read the details for subprocess.Pope n() again...
          >
          """
          /args/ should be a string, or a sequence of program arguments. The
          program to execute is normally the first item in the args sequence or
          string, but can be explicitly set by using the executable argument.
          """
          >
          IOWs, passing it what you would enter on a command line
          >
          "subscript. py tempfilename"
          ["subscript. py", "tempfilena me"]
          >
          should be sufficient.
          >
          >
          There is a module that can generate temporary file names, though for
          this usage you could even do something to obtain the parent program
          process ID along with a timestamp and create a file name from all that.
          What are the odds that your "several times" would have the same clock
          time?
          >
          Quite small, I guess. However, perhaps I should better consider using
          sockets.

          Thanks!

          ps: I really like how you format the paragraphs! :)

          Comment

          • ecir.hana@gmail.com

            #6
            Re: Inter-process communication, how?

            Just for the record:



            "Of the various forms of IPC (Inter Process Communication), sockets
            are by far the most popular. On any given platform, there are likely
            to be other forms of IPC that are faster, but for cross-platform
            communication, sockets are about the only game in town."

            Comment

            • Nikita the Spider

              #7
              Re: Inter-process communication, how?

              In article
              <d985279d-0605-4f60-8b08-977db7070b6d@e2 5g2000prg.googl egroups.com>,
              ecir.hana@gmail .com wrote:
              Hi,
              let's say I have two scripts: one does some computations and the other
              one is a graphical front end for launching the first one. And both run
              in separate processes (front end runs and that it spawns a subprocess
              with the computation). Now, if the computation has a result I would
              like to display it in the front end. In another words, I would like to
              pass some data from one process to another. How to do that? I'm
              affraid I can't use a pipe since the computation could print out some
              logging (if I understant pipes correctly).
              Others have given you good suggestions; there's also this option which
              may or may not be an appropriate tool for what you want to do:


              --
              Philip

              Whole-site HTML validation, link checking and more

              Comment

              Working...