spawn syntax + os.P_WAIT mode behavior + spawn stdout redirection

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Derek Basch

    #1

    spawn syntax + os.P_WAIT mode behavior + spawn stdout redirection

    Hello,

    *First question*

    If the syntax of spawnl is:

    spawnl(mode, path, ...)

    Why does everyone write it like:

    os.spawnlp(os.P _WAIT, 'cp', 'cp', 'index.html', '/dev/null')

    or:

    os.spawnl(os.P_ WAIT, "/var/www/db/smm/smm_train", "smm_train" ,
    "SMMTrainInput. xml")

    How is the first 'cp' a path to a file? why does the desired executable have to
    be named again as the first parameter?

    *Second question*

    I have a script test.py which calls another script sleep.py using a spawn.

    --------------------------------------------------------------
    #test.py
    import os

    os.spawnv(os.P_ WAIT, "/var/www/db/cgi-bin/sleep.py", ["python", "sleep.py"])
    #pid = os.spawnl(os.P_ WAIT, 'sh', 'sh', '-cv', 'sleep 10; echo fark >
    /tmp/test.out')
    --------------------------------------------------------------

    --------------------------------------------------------------
    #sleep.py
    import time

    time.sleep(10)
    --------------------------------------------------------------

    I would expect that the test.py script should take 10sec to return. However it
    returns immediatly. Perhaps I am calling the sleep.py script incorrectly?
    Shouldn't it take 10sec to execute since the spawn mode argument is os.P_WAIT?

    *Third question*

    If I uncomment the second spawn call in test.py I do not get any output to
    /tmp/test.out and it also returns immediatly. Can anyone tell me why?

    Thank You Mighty Python Guru's,
    Derek Basch



    _______________ _______________ ____
    Do you Yahoo!?
    Yahoo! Mail - now with 250MB free storage. Learn more.

  • Peter Hansen

    #2
    Re: spawn syntax + os.P_WAIT mode behavior + spawn stdout redirection

    Derek Basch wrote:[color=blue]
    > If the syntax of spawnl is:
    >
    > spawnl(mode, path, ...)
    >
    > Why does everyone write it like:
    >
    > os.spawnlp(os.P _WAIT, 'cp', 'cp', 'index.html', '/dev/null')
    >
    > or:
    >
    > os.spawnl(os.P_ WAIT, "/var/www/db/smm/smm_train", "smm_train" ,
    > "SMMTrainInput. xml")
    >
    > How is the first 'cp' a path to a file? why does the desired executable have to
    > be named again as the first parameter?[/color]

    Marginally educated guessing:

    1. "cp" is a shell command, so no path is required or possible.

    2. The repetition of the executable name is so that argv[0] can
    have the expected contents: the name of the executable.

    -Peter

    Comment

    • Donn Cave

      #3
      Re: spawn syntax + os.P_WAIT mode behavior + spawn stdout redirection

      Quoth Derek Basch <dbasch@yahoo.c om>:

      | *First question*
      |
      | If the syntax of spawnl is:
      |
      | spawnl(mode, path, ...)
      |
      | Why does everyone write it like:
      |
      | os.spawnlp(os.P _WAIT, 'cp', 'cp', 'index.html', '/dev/null')
      |
      | or:
      |
      | os.spawnl(os.P_ WAIT, "/var/www/db/smm/smm_train", "smm_train" ,
      | "SMMTrainInput. xml")
      |
      | How is the first 'cp' a path to a file?

      As you may have guessed, 'cp' doesn't have to be a path because the
      spawnlp() variant finds that file among a list of directories in PATH.

      | why does the desired executable have to be named again as the first parameter?

      Because you're supplying the "argv" argument list, which for normal
      programs (i.e., not written in Python) includes argv[0] as specified
      by the invoker. This would be more obvious if you consider the spawnv()
      function, where these arguments are supplied as a list. You can look
      at the implementation in os.py for more insight into how all this works,
      particularly see the execve(2) function that is at the bottom of all this.

      I was recently quite cheesed to find that the Haskell "executeFil e"
      function supplies its own argv[0], depriving the caller of the occasionally
      useful opportunity to set this value. Python system interface functions
      are generally pretty good about not watering down functionality.

      | *Second question*
      |
      | I have a script test.py which calls another script sleep.py using a spawn.
      |
      | --------------------------------------------------------------
      | #test.py
      | import os
      |
      | os.spawnv(os.P_ WAIT, "/var/www/db/cgi-bin/sleep.py", ["python", "sleep.py"])
      | #pid = os.spawnl(os.P_ WAIT, 'sh', 'sh', '-cv', 'sleep 10; echo fark >
      | /tmp/test.out')
      | --------------------------------------------------------------
      |
      | --------------------------------------------------------------
      | #sleep.py
      | import time
      |
      | time.sleep(10)
      | --------------------------------------------------------------
      |
      | I would expect that the test.py script should take 10sec to return. However it
      | returns immediatly. Perhaps I am calling the sleep.py script incorrectly?
      | Shouldn't it take 10sec to execute since the spawn mode argument is os.P_WAIT?

      Might want to verify that it's really executing. I suspect it isn't,
      since your parameters are wrong (the file to invoke is python, not
      sleep.py.) If you're writing anything important, you need to do what
      you can to verify that the commands you're executing are actually
      successful.

      | *Third question*
      |
      | If I uncomment the second spawn call in test.py I do not get any output to
      | /tmp/test.out and it also returns immediatly. Can anyone tell me why?

      Might be a problem finding 'sh', since in this case you call spawnl(),
      not spawnlp(). Just a guess. Also you ought to know that the return
      from os.spawnl(os.P_ WAIT, ...) will not be a pid, rather a status that
      carries a little (very little) information about the problem.

      Donn Cave, donn@drizzle.co m

      Comment

      Working...