python: Windows эквивалент SIGALRM

у меня есть этот декоратор:

def timed_out(timeout):
    def decorate(f):
        if not hasattr(signal, "SIGALRM"):
            return f

        def handler(signum, frame):
            raise TimedOutExc()

        @functools.wraps(f)
        def new_f(*args, **kwargs):
            old = signal.signal(signal.SIGALRM, handler)
            signal.alarm(timeout)
            try:
                result = f(*args, **kwargs)
            finally:
                signal.signal(signal.SIGALRM, old)
            signal.alarm(0)
            return result

        new_f.func_name = f.func_name
        return new_f

    return decorate

код делает что-либо только в linux, хотя, как и в windows, нет SIGALRM. Каким будет самый простой способ заставить этот код работать и в Windows?

2 ответов


это не очень красиво, но мне пришлось сделать что-то подобное кросс-платформенным способом, и я придумал использовать отдельный поток. Сигнальные системы не работали на всех платформах надежно.

использование этого класса может быть завернуто в декоратор или сделано в with контекст обработчика.

YMMV.

#!/usr/bin/env python2.7
import time, threading

class Ticker(threading.Thread):
  """A very simple thread that merely blocks for :attr:`interval` and sets a
  :class:`threading.Event` when the :attr:`interval` has elapsed. It then waits
  for the caller to unset this event before looping again.

  Example use::

    t = Ticker(1.0) # make a ticker
    t.start() # start the ticker in a new thread
    try:
      while t.evt.wait(): # hang out til the time has elapsed
        t.evt.clear() # tell the ticker to loop again
        print time.time(), "FIRING!"
    except:
      t.stop() # tell the thread to stop
      t.join() # wait til the thread actually dies

  """
  # SIGALRM based timing proved to be unreliable on various python installs,
  # so we use a simple thread that blocks on sleep and sets a threading.Event
  # when the timer expires, it does this forever.
  def __init__(self, interval):
    super(Ticker, self).__init__()
    self.interval = interval
    self.evt = threading.Event()
    self.evt.clear()
    self.should_run = threading.Event()
    self.should_run.set()

  def stop(self):
    """Stop the this thread. You probably want to call :meth:`join` immediately
    afterwards
    """
    self.should_run.clear()

  def consume(self):
    was_set = self.evt.is_set()
    if was_set:
      self.evt.clear()
    return was_set

  def run(self):
    """The internal main method of this thread. Block for :attr:`interval`
    seconds before setting :attr:`Ticker.evt`

    .. warning::
      Do not call this directly!  Instead call :meth:`start`.
    """
    while self.should_run.is_set():
      time.sleep(self.interval)
      self.evt.set()

Я нахожу этот код тайм-аута-декоратора очень удобным. (Я изначально нашел в этом вопросе ответ:как ограничить время выполнения вызова функции в Python)

чтобы он работал на Windows, я использую Python, который установлен с Cygwin.

я запускаю setup-x86_64.exe, затем выберите python3 пакет из папки Python. (Или, если вы предпочитаете Python 2,python пакета.)

чтобы переименовать python3 в python2, я определяю псевдоним

alias python=python3

из командной строки Cygwin. Поскольку я не использую эту функцию очень часто, я, вероятно, не буду помещать ее в a .bashrc или что-то еще.

вопрос: сигнал Python не работает даже на Cygwin?