Commit bab8bbb6 authored by Jim Fulton's avatar Jim Fulton

Clean up thunk management logic.

Allow thunks to take args.

Don't hold trigger lock when calling thunks.
parent deb6272a
......@@ -12,6 +12,8 @@
#
##############################################################################
from __future__ import with_statement
import asyncore
import os
import socket
......@@ -95,14 +97,15 @@ class _triggerbase(object):
def _close(self): # see close() above; subclass must supply
raise NotImplementedError
def pull_trigger(self, thunk=None):
def pull_trigger(self, *thunk):
if thunk:
self.lock.acquire()
try:
with self.lock:
self.thunks.append(thunk)
finally:
self.lock.release()
self._physical_pull()
try:
self._physical_pull()
except Exception:
if not self._closed:
raise
# Subclass must supply _physical_pull, which does whatever the OS
# needs to do to provoke the "write" end of the trigger.
......@@ -114,18 +117,19 @@ class _triggerbase(object):
self.recv(8192)
except socket.error:
return
self.lock.acquire()
try:
for thunk in self.thunks:
try:
thunk()
except:
nil, t, v, tbinfo = asyncore.compact_traceback()
print ('exception in trigger thunk:'
' (%s:%s %s)' % (t, v, tbinfo))
self.thunks = []
finally:
self.lock.release()
while 1:
with self.lock:
if self.thunks:
thunk = self.thunks.pop(0)
else:
return
try:
thunk[0](*thunk[1:])
except:
nil, t, v, tbinfo = asyncore.compact_traceback()
print ('exception in trigger thunk:'
' (%s:%s %s)' % (t, v, tbinfo))
def __repr__(self):
return '<select-trigger (%s) at %x>' % (self.kind, positive_id(self))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment