llsubprocess.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """
  2. @file llsubprocess.py
  3. @author Phoenix
  4. @date 2008-01-18
  5. @brief The simplest possible wrapper for a common sub-process paradigm.
  6. $LicenseInfo:firstyear=2007&license=mit$
  7. Copyright (c) 2007-2010, Linden Research, Inc.
  8. Permission is hereby granted, free of charge, to any person obtaining a copy
  9. of this software and associated documentation files (the "Software"), to deal
  10. in the Software without restriction, including without limitation the rights
  11. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. copies of the Software, and to permit persons to whom the Software is
  13. furnished to do so, subject to the following conditions:
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. THE SOFTWARE.
  23. $/LicenseInfo$
  24. """
  25. import os
  26. import popen2
  27. import time
  28. import select
  29. class Timeout(RuntimeError):
  30.     "Exception raised when a subprocess times out."
  31.     pass
  32. def run(command, args=None, data=None, timeout=None):
  33.     """
  34. @brief Run command with arguments
  35. This is it. This is the function I want to run all the time when doing
  36. subprocces, but end up copying the code everywhere. none of the
  37. standard commands are secure and provide a way to specify input, get
  38. all the output, and get the result.
  39. @param command A string specifying a process to launch.
  40. @param args Arguments to be passed to command. Must be list, tuple or None.
  41. @param data input to feed to the command.
  42. @param timeout Maximum number of many seconds to run.
  43. @return Returns (result, stdout, stderr) from process.
  44. """
  45.     cmd = [command]
  46.     if args:
  47.         cmd.extend([str(arg) for arg in args])
  48.     #print  "cmd: ","' '".join(cmd)
  49.     child = popen2.Popen3(cmd, True)
  50.     #print child.pid
  51.     out = []
  52.     err = []
  53.     result = -1
  54.     time_left = timeout
  55.     tochild = [child.tochild.fileno()]
  56.     while True:
  57.         time_start = time.time()
  58.         #print "time:",time_left
  59.         p_in, p_out, p_err = select.select(
  60.             [child.fromchild.fileno(), child.childerr.fileno()],
  61.             tochild,
  62.             [],
  63.             time_left)
  64.         if p_in:
  65.             new_line = os.read(child.fromchild.fileno(), 32 * 1024)
  66.             if new_line:
  67.                 #print "line:",new_line
  68.                 out.append(new_line)
  69.             new_line = os.read(child.childerr.fileno(), 32 * 1024)
  70.             if new_line:
  71.                 #print "error:", new_line
  72.                 err.append(new_line)
  73.         if p_out:
  74.             if data:
  75.                 #print "p_out"
  76.                 bytes = os.write(child.tochild.fileno(), data)
  77.                 data = data[bytes:]
  78.                 if len(data) == 0:
  79.                     data = None
  80.                     tochild = []
  81.                     child.tochild.close()
  82.         result = child.poll()
  83.         if result != -1:
  84.             # At this point, the child process has exited and result
  85.             # is the return value from the process. Between the time
  86.             # we called select() and poll() the process may have
  87.             # exited so read all the data left on the child process
  88.             # stdout and stderr.
  89.             last = child.fromchild.read()
  90.             if last:
  91.                 out.append(last)
  92.             last = child.childerr.read()
  93.             if last:
  94.                 err.append(last)
  95.             child.tochild.close()
  96.             child.fromchild.close()
  97.             child.childerr.close()
  98.             break
  99.         if time_left is not None:
  100.             time_left -= (time.time() - time_start)
  101.             if time_left < 0:
  102.                 raise Timeout
  103.     #print "result:",result
  104.     out = ''.join(out)
  105.     #print "stdout:", out
  106.     err = ''.join(err)
  107.     #print "stderr:", err
  108.     return result, out, err