daemon: Add initial support for invoking python callbacks when session
state changes occur.
This commit is contained in:
parent
fb662d06b7
commit
978f9946f1
1 changed files with 27 additions and 0 deletions
|
@ -76,6 +76,7 @@ class Session(object):
|
||||||
self._handlerslock = threading.Lock()
|
self._handlerslock = threading.Lock()
|
||||||
self._state = None
|
self._state = None
|
||||||
self._hooks = {}
|
self._hooks = {}
|
||||||
|
self._state_hooks = {}
|
||||||
self.setstate(state=coreapi.CORE_EVENT_DEFINITION_STATE,
|
self.setstate(state=coreapi.CORE_EVENT_DEFINITION_STATE,
|
||||||
info=False, sendevent=False)
|
info=False, sendevent=False)
|
||||||
# dict of configuration items from /etc/core/core.conf config file
|
# dict of configuration items from /etc/core/core.conf config file
|
||||||
|
@ -226,6 +227,7 @@ class Session(object):
|
||||||
return []
|
return []
|
||||||
self._time = time.time()
|
self._time = time.time()
|
||||||
self._state = state
|
self._state = state
|
||||||
|
self.run_state_hooks(state)
|
||||||
replies = []
|
replies = []
|
||||||
if self.isconnected() and info:
|
if self.isconnected() and info:
|
||||||
statename = coreapi.state_name(state)
|
statename = coreapi.state_name(state)
|
||||||
|
@ -317,6 +319,31 @@ class Session(object):
|
||||||
'''
|
'''
|
||||||
self._hooks = {}
|
self._hooks = {}
|
||||||
|
|
||||||
|
def run_state_hooks(self, state):
|
||||||
|
try:
|
||||||
|
hooks = self._state_hooks[state]
|
||||||
|
for hook in hooks:
|
||||||
|
hook(state)
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def add_state_hook(self, state, hook):
|
||||||
|
try:
|
||||||
|
hooks = self._state_hooks[state]
|
||||||
|
assert hook not in hooks
|
||||||
|
hooks.append(hook)
|
||||||
|
except KeyError:
|
||||||
|
self._state_hooks[state] = [hook]
|
||||||
|
if self._state == state:
|
||||||
|
hook(state)
|
||||||
|
|
||||||
|
def del_state_hook(self, state, hook):
|
||||||
|
try:
|
||||||
|
hooks = self._state_hooks[state]
|
||||||
|
self._state_hooks[state] = filter(lambda x: x != hook, hooks)
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
def getenviron(self, state=True):
|
def getenviron(self, state=True):
|
||||||
''' Get an environment suitable for a subprocess.Popen call.
|
''' Get an environment suitable for a subprocess.Popen call.
|
||||||
This is the current process environment with some session-specific
|
This is the current process environment with some session-specific
|
||||||
|
|
Loading…
Add table
Reference in a new issue