Created
August 2, 2019 11:27
-
-
Save belyaev-pa/268ce43acc5804cbd9936a00b3f3e1c8 to your computer and use it in GitHub Desktop.
asynchronous socket client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import json | |
import itertools | |
import sys | |
import time | |
MSG = dict( | |
job_id='1111111111111', | |
job_type='my_type', | |
manager_type='local', | |
arguments='log_txt_file=/path/to/test_log.txt' | |
) | |
server_address = './uds_socket.s' | |
async def spin(msg): | |
write, flush = sys.stdout.write, sys.stdout.flush | |
for char in itertools.cycle('|/-\\'): | |
status = char + ' ' + msg | |
write(status) | |
flush() | |
write('\x08' * len(status)) | |
try: | |
await asyncio.sleep(.1) | |
except asyncio.CancelledError: | |
break | |
write(' ' * len(status) + '\x08' * len(status)) | |
async def handle_client(msg): | |
await asyncio.sleep(3) | |
reader, writer = await asyncio.open_unix_connection(server_address) | |
writer.write(str(json.dumps(msg)+'\r\n\r\n').encode('utf8')) | |
answer = 'b' | |
print(answer) | |
while not answer.endswith('\r\n\r\n'): | |
print('started') | |
data = await reader.read(32) | |
answer += data.decode('utf8') | |
else: | |
print(answer) | |
writer.close() | |
async def supervisor(): | |
spinner = asyncio.ensure_future(spin('thinking!')) | |
print('spinner object:', spinner) | |
result = await handle_client(MSG) | |
spinner.cancel() | |
return result | |
def main(): | |
loop = asyncio.get_event_loop() | |
result = loop.run_until_complete(supervisor()) | |
loop.close() | |
print('Answer:', result) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment