python while循环等待条件更改或超时

时间:2012-09-26 08:37:55

标签: python timeout while-loop

我想在python中构造一个while循环,等待某些条件(函数foo)进行更改,或者在指定时间后给出超时。这是我如何编码

def wait_change():
  import time
  timeout = 10 # time out of 10 seconds for example

  # set initial time and initial variables
  start_time = time.time()
  current_time = 0
  start_state = foo()
  current_state = start_state

  while current_time<timeout and start_state==current_state:
    current_time = time.time()-start_time
    current_state = foo()

 if current_time<timeout:
   return None
 else:
   return current_state

此功能运行良好,但我不确定这是否是最佳方法。重要的是我想检查一些状态并返回它,并在超时的情况下通知调用函数(这里返回None)。 这是最好的实现,还是有更多的pythonic方法来处理这个?特别是我担心

  • 要对函数foo
  • 进行两次调用
  • 如果返回值合适(即返回值或None
  • 如果使用signalthreading可能会更有用,从而产生更好的代码

谢谢,   亚历

0 个答案:

没有答案