mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
53 lines
1.5 KiB
Python
53 lines
1.5 KiB
Python
# Register deserialization handlers for objects
|
|
# that will pass between server and client
|
|
from bootstrapvz.remote import register_deserialization_handlers
|
|
register_deserialization_handlers()
|
|
|
|
|
|
def waituntil(predicate, timeout=5, interval=0.05):
|
|
import time
|
|
threshhold = time.time() + timeout
|
|
while time.time() < threshhold:
|
|
if predicate():
|
|
return True
|
|
time.sleep(interval)
|
|
return False
|
|
|
|
|
|
def read_from_socket(socket_path, termination_string, timeout, read_timeout=0.5):
|
|
import socket
|
|
import select
|
|
import errno
|
|
console = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
|
console.connect(socket_path)
|
|
console.setblocking(0)
|
|
|
|
from timeit import default_timer
|
|
start = default_timer()
|
|
|
|
output = ''
|
|
ptr = 0
|
|
continue_select = True
|
|
while continue_select:
|
|
read_ready, _, _ = select.select([console], [], [], read_timeout)
|
|
if console in read_ready:
|
|
while True:
|
|
try:
|
|
output += console.recv(1024)
|
|
if termination_string in output[ptr:]:
|
|
continue_select = False
|
|
else:
|
|
ptr = len(output) - len(termination_string)
|
|
break
|
|
except socket.error, e:
|
|
if e.errno != errno.EWOULDBLOCK:
|
|
raise Exception(e)
|
|
continue_select = False
|
|
if default_timer() - start > timeout:
|
|
from exceptions import SocketReadTimeout
|
|
msg = ('Reading from socket `{path}\' timed out after {seconds} seconds.\n'
|
|
'Here is the output so far:\n{output}'
|
|
.format(path=socket_path, seconds=timeout, output=output))
|
|
raise SocketReadTimeout(msg)
|
|
console.close()
|
|
return output
|