2018-11-20 00:29:48 +08:00
|
|
|
import asyncio
|
2018-11-27 01:39:36 +08:00
|
|
|
import sys
|
2018-11-19 15:58:07 +08:00
|
|
|
|
2018-11-20 00:29:48 +08:00
|
|
|
import click
|
2018-11-27 01:39:36 +08:00
|
|
|
|
2019-01-10 03:01:46 +08:00
|
|
|
from libp2p import new_node
|
|
|
|
from libp2p.peer.peerinfo import info_from_p2p_addr
|
2018-11-27 01:39:36 +08:00
|
|
|
|
2018-11-19 00:22:56 +08:00
|
|
|
|
2018-11-27 01:39:36 +08:00
|
|
|
PROTOCOL_ID = '/chat/1.0.0'
|
2018-11-19 00:22:56 +08:00
|
|
|
|
2018-11-19 15:58:07 +08:00
|
|
|
|
2018-11-19 00:22:56 +08:00
|
|
|
async def read_data(stream):
|
|
|
|
while True:
|
|
|
|
read_string = (await stream.read()).decode()
|
|
|
|
|
|
|
|
if not read_string:
|
|
|
|
return
|
|
|
|
|
|
|
|
if read_string != "\n":
|
|
|
|
# Green console colour: \x1b[32m
|
|
|
|
# Reset console colour: \x1b[0m
|
2018-11-26 16:34:38 +08:00
|
|
|
print("\x1b[32m%s\x1b[0m> " % read_string, end="")
|
2018-11-19 15:58:07 +08:00
|
|
|
|
2018-11-19 00:22:56 +08:00
|
|
|
|
|
|
|
async def write_data(stream):
|
2018-11-19 15:58:07 +08:00
|
|
|
loop = asyncio.get_event_loop()
|
2018-11-19 00:22:56 +08:00
|
|
|
|
2018-11-19 15:58:07 +08:00
|
|
|
while True:
|
|
|
|
line = await loop.run_in_executor(None, sys.stdin.readline)
|
|
|
|
await stream.write(line.encode())
|
2018-11-19 00:22:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
async def run(port, destination):
|
|
|
|
|
|
|
|
if not destination:
|
2018-11-29 23:06:40 +08:00
|
|
|
host = await new_node(transport_opt=["/ip4/127.0.0.1/tcp/%s" % port])
|
2018-11-19 00:22:56 +08:00
|
|
|
|
|
|
|
async def stream_handler(stream):
|
|
|
|
asyncio.ensure_future(read_data(stream))
|
|
|
|
asyncio.ensure_future(write_data(stream))
|
|
|
|
|
|
|
|
host.set_stream_handler(PROTOCOL_ID, stream_handler)
|
|
|
|
|
|
|
|
port = None
|
|
|
|
for listener in host.network.listeners.values():
|
|
|
|
for addr in listener.get_addrs():
|
2018-11-29 23:06:40 +08:00
|
|
|
port = int(addr.value_for_protocol('tcp'))
|
2018-11-19 00:22:56 +08:00
|
|
|
|
|
|
|
if not port:
|
|
|
|
raise RuntimeError("was not able to find the actual local port")
|
|
|
|
|
2018-11-29 23:06:40 +08:00
|
|
|
print("Run './examples/chat/chat.py --port %s -d /ip4/127.0.0.1/tcp/%s/p2p/%s' on another console.\n" %
|
|
|
|
(int(port)+1, port, host.get_id().pretty()))
|
2018-11-19 00:22:56 +08:00
|
|
|
print("You can replace 127.0.0.1 with public IP as well.")
|
|
|
|
print("\nWaiting for incoming connection\n\n")
|
|
|
|
|
|
|
|
else:
|
2018-11-29 23:06:40 +08:00
|
|
|
host = await new_node(transport_opt=["/ip4/127.0.0.1/tcp/%s" % port])
|
2018-11-19 00:22:56 +08:00
|
|
|
|
2018-11-29 23:06:40 +08:00
|
|
|
m = multiaddr.Multiaddr(destination)
|
|
|
|
info = info_from_p2p_addr(m)
|
|
|
|
# Associate the peer with local ip address
|
|
|
|
await host.connect(info)
|
2018-11-19 00:22:56 +08:00
|
|
|
|
|
|
|
# Start a stream with the destination.
|
|
|
|
# Multiaddress of the destination peer is fetched from the peerstore using 'peerId'.
|
2018-11-29 23:06:40 +08:00
|
|
|
stream = await host.new_stream(info.peer_id, [PROTOCOL_ID])
|
2018-11-19 00:22:56 +08:00
|
|
|
|
|
|
|
asyncio.ensure_future(read_data(stream))
|
|
|
|
asyncio.ensure_future(write_data(stream))
|
2018-11-29 23:06:40 +08:00
|
|
|
print("Already connected to peer %s" % info.addrs[0])
|
2018-11-19 00:22:56 +08:00
|
|
|
|
2018-11-19 15:58:07 +08:00
|
|
|
|
2018-11-19 00:22:56 +08:00
|
|
|
@click.command()
|
|
|
|
@click.option('--port', help='source port number', default=8000)
|
|
|
|
@click.option('--destination', '-d', help="Destination multiaddr string")
|
|
|
|
@click.option('--help', is_flag=True, default=False, help='display help')
|
|
|
|
# @click.option('--debug', is_flag=True, default=False, help='Debug generates the same node ID on every execution')
|
|
|
|
def main(port, destination, help):
|
|
|
|
|
|
|
|
if help:
|
|
|
|
print("This program demonstrates a simple p2p chat application using libp2p\n\n")
|
|
|
|
print("Usage: Run './chat -sp <SOURCE_PORT>' where <SOURCE_PORT> can be any port number.")
|
|
|
|
print("Now run './chat -d <MULTIADDR>' where <MULTIADDR> is multiaddress of previous listener host.")
|
|
|
|
return
|
|
|
|
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
try:
|
|
|
|
asyncio.ensure_future(run(port, destination))
|
|
|
|
loop.run_forever()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
loop.close()
|
|
|
|
|
2018-11-19 15:58:07 +08:00
|
|
|
|
2018-11-19 00:22:56 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|