##// END OF EJS Templates
Backport PR #4868: Static path fixes...
Backport PR #4868: Static path fixes more use of the package dir instead of static file dir, and update a previous test patch of mine to work for build and install time tests

File last commit:

r12317:bf63ce77
r14756:9082b042
Show More
heartbeat.py
65 lines | 2.3 KiB | text/x-python | PythonLexer
Brian Granger
Added heartbeat support.
r2910 """The client and server for a basic ping-pong style heartbeat.
"""
#-----------------------------------------------------------------------------
Matthias BUSSONNIER
update copyright to 2011/20xx-2011...
r5390 # Copyright (C) 2008-2011 The IPython Development Team
Brian Granger
Added heartbeat support.
r2910 #
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
MinRK
Backport PR #4118: ZMQ heartbeat channel: catch EINTR exceptions and continue....
r12317 import errno
MinRK
enable IPC transport for kernels...
r7321 import os
MinRK
specify heartbeat port at construction, not in run...
r4500 import socket
Brian Granger
Added heartbeat support.
r2910 from threading import Thread
import zmq
MinRK
Possible fix for GH-169
r3144 from IPython.utils.localinterfaces import LOCALHOST
Brian Granger
Added heartbeat support.
r2910 #-----------------------------------------------------------------------------
# Code
#-----------------------------------------------------------------------------
class Heartbeat(Thread):
"A simple ping-pong style heartbeat that runs in a thread."
MinRK
enable IPC transport for kernels...
r7321 def __init__(self, context, addr=('tcp', LOCALHOST, 0)):
Brian Granger
Added heartbeat support.
r2910 Thread.__init__(self)
self.context = context
MinRK
enable IPC transport for kernels...
r7321 self.transport, self.ip, self.port = addr
MinRK
specify heartbeat port at construction, not in run...
r4500 if self.port == 0:
MinRK
enable IPC transport for kernels...
r7321 if addr[0] == 'tcp':
s = socket.socket()
# '*' means all interfaces to 0MQ, which is '' to socket.socket
s.bind(('' if self.ip == '*' else self.ip, 0))
self.port = s.getsockname()[1]
s.close()
elif addr[0] == 'ipc':
MinRK
fix default heartbeat location when transport is ipc
r9176 self.port = 1
while os.path.exists("%s-%s" % (self.ip, self.port)):
MinRK
enable IPC transport for kernels...
r7321 self.port = self.port + 1
else:
raise ValueError("Unrecognized zmq transport: %s" % addr[0])
MinRK
fix --ip='*' argument in various apps...
r5170 self.addr = (self.ip, self.port)
Brian Granger
Added heartbeat support.
r2910 self.daemon = True
def run(self):
self.socket = self.context.socket(zmq.REP)
MinRK
enable IPC transport for kernels...
r7321 c = ':' if self.transport == 'tcp' else '-'
self.socket.bind('%s://%s' % (self.transport, self.ip) + c + str(self.port))
MinRK
Backport PR #4118: ZMQ heartbeat channel: catch EINTR exceptions and continue....
r12317 while True:
try:
zmq.device(zmq.FORWARDER, self.socket, self.socket)
except zmq.ZMQError as e:
if e.errno == errno.EINTR:
continue
else:
raise
else:
break