脚本/子进程按时间顺序输出

时间:2015-08-20 21:31:39

标签: python python-2.7 subprocess popen

我正在处理一个以两种方式生成图像的python脚本:首先创建基础图像,然后创建新的图像以与原始图像进行比较,如果两者之间存在差异则输出。主脚本调用第二个脚本,进行实际比较。

我遇到的问题是两个脚本的输出不按顺序排列。例如,这是运行比较的输出:

DIFFERENTIAL RUNNING NOW 16:52:02.062000
*** image05.jpg MATCHES ***
MARKER ONE: Differential happened yet? 16:51:51.821000
MARKER TWO: Where's the Diff? 16:51:51.824000
==== Test\Dir ====
Copy Input
Start Comparison
Doing Comparison

我想要的格式更像是这样:

MARKER ONE: Differential happened yet? 16:51:51.821000
MARKER TWO: Where's the Diff? 16:51:51.824000
==== Test\Dir ====
Copy Input
Start Comparison
Doing Comparison
DIFFERENTIAL RUNNING NOW 16:52:02.062000
*** image05.jpg MATCHES ***

所以我得到了我需要的输出,但是查看时间戳,它们会出现故障(为了正确组织,结果需要在"做比较"部分)

代码流程如此(通常):

# Imports, arguments
.
.
MARKER ONE
.
.
==== Test\Dir ====
.
.
if creating:
    # create the images here
    # 3 Subprocess are called here, but have no output (that I care about)
    # Images are copied to their home directory
    print "Copy Input"
else: (comparison)
    print "Start Comparison"
    # create new images to be compared
    # Repeat same 3 subprocesses
    print "Doing Comparison"
    # Comparison Subprocess

这一点是第二个python脚本启动的地方,它比较了两个图像之间的像素(主目录中的像素和同名临时目录中的像素)并报告了多少像素不同,将它们存储在.txt文件中,然后打印到控制台:

if os.path.isfile(tempImg):
        try:
            ouput = Popen(command, shell=True)
            stdout, stderr = output.communicate()
             if stdout is not None:
                 print stdout
             if stderr is not None:
                 print "Error occurred during execution:"
                 print stderr
        except OSError as e:
            print "Execution failed: " + e
        with open(output) as r:
            result = r.read()
        if result == '0':
            print "*** {} MATCHES ***".format(Base)
        else:
            message = "*** {0} DOES NOT MATCH: {1} pixels differ***".format(Base, result)
            print message
            out = open("{}\img_errs.txt".format(temp), "a")
            out.write(message + "\n")
    else:
        message = "*** {} DOES NOT EXIST ***".format(tempImg)
        print message
        out = open("{}\img_errs.txt".format(temp), "a")
        out.write(message + "\n")

父脚本中的子进程由一个函数完成,该函数采用此处所示的相同try / except格式。我尝试使用subprocess.call()代替Popen / .communicate()部分,以及Popen.wait()。 stdout没有任何内容,这个输出只是print语句,但它们似乎优先于父脚本并首先打印,即使父行首先出现,如时间戳所示。

有什么办法可以在子进程之前显示父脚本的打印语句?这一切都是在Eclipse Mars中使用Python 2.7完成的。

1 个答案:

答案 0 :(得分:1)

评论中回答了这个问题,但我想把它放在这里更容易看到。第一部分的信用来自CasualDemon的评论(这是我最终使用的评论):

在此处添加flush()行:

else: (comparison)
    print "Start Comparison"
    # create new images to be compared
    # Repeat same 3 subprocesses
    print "Doing Comparison"
    sys.stdout.flush()   <-- new
    # Comparison Subprocess

给了我所需的打印顺序(按时间顺序)。

第二部分归功于J.F. Sebastian的答案,该答案也有效。我通过外部工具配置运行脚本,所以-u需要进入。

旧(在论点下):

script.py ${folder_prompt}

新:

-u script.py ${folder_prompt}