Python打破了while循环+异常

时间:2014-11-29 18:39:59

标签: python

我有以下python代码,它旨在运行名为cctfiles的fortran代码。然后我通过abedin拍摄正在运行的进程的快照,并将快照写入名为sample.txt的文件中。然后我读取文件sample.txt,直到正在运行的进程./cctfiles从文件中消失。但是我注意到即使程序cctfiles已经退出,我的python代码也不会从while循环中断。 所以这是我的代码:

#!/usr/bin/env python


import subprocess

scb = subprocess.call



def runprog(name):
        for i in xrange(1,2):
                scb('cp '+name+' '+str(i), shell = 'True')
                scb('sleep 1', shell = 'True')
                scb('(cd '+str(i)+';'+' ./'+name+' &)', shell = 'True')
                print('Job '+str(i)+' has been sent:')
#               scb('cd ../', shell = 'True')

        while True:
                scb('sleep 5', shell = 'True')
                scb('ps -ef | grep abedin > sample.txt', shell = 'True')
                cnt = subprocess.Popen('grep -c ".*" sample.txt',stdout=subprocess.PIPE, shell = 'True')
                (c,err) = cnt.communicate()
                nlines = int(c.strip())
                fl = open('sample.txt', 'r+')
                count = 0
                class BreakIt(Exception): pass
                try:
                        for line in fl:
                                count = count + 1
                                for word in line.strip().split():
#                                       print(word.strip())
                                        if word.strip() != './'+name and count == nlines:
                                                raise BreakIt
                except BreakIt:
                        pass

                else: break

            fl.seek(0)
            fl.truncate()
            fl.close()
    print('----------Finaly Done------------')


runprog('cctfiles')

鉴于我对Python的了解不够,任何帮助都将受到高度赞赏!

提前谢谢!

2 个答案:

答案 0 :(得分:0)

因此,当您的try/except数据块收到BreakIt个例外情况时,它无法执行任何操作。由于BreakIt位于while True循环内,因此它会保持循环。然后,您break处理一个BreakIt的所有异常。听起来你想做相反的事情。

您可能希望将try/except更改为:

while True:
    scb('sleep 5', shell = 'True')
    count = 0
    # [ . . . ]
    class BreakIt(Exception): pass
    try:
        for line in fl:
        # [ . . . ]
    except BreakIt:
        break
    else: 
       # Do stuff with not BreakIt exceptions

另外:我强烈建议您使用内置StopIteration而不是BreakIt。我的意思是......随意创建自己的异常,但在这种特殊情况下,你不需要这个类,(也就是说,在循环中定义类是一种不好的做法)

答案 1 :(得分:0)

这也不是你问题的答案,而且我可能会得到数百个负面因素,这是你未提出问题的答案,»我怎么能等待并行说明的许多程序?«

#!/usr/bin/env python
import os
import subprocess

def runprog(name):
    processes = [subprocess.Popen([os.path.abspath(name)], cwd=str(i)) for i in xrange(1,2)]
    for process in processes:
        process.wait()
    print('----------Finaly Done------------')

runprog('cctfiles')