py-libp2p/examples/chat/chat.py

118 lines
3.9 KiB
Python
Raw Normal View History

2019-07-24 18:43:49 +08:00
import argparse
2018-11-20 00:29:48 +08:00
import asyncio
import sys
2019-02-11 09:52:05 +08:00
import urllib.request
import multiaddr
from libp2p import new_node
from libp2p.network.stream.net_stream_interface import INetStream
from libp2p.peer.peerinfo import info_from_p2p_addr
from libp2p.typing import TProtocol
PROTOCOL_ID = TProtocol("/chat/1.0.0")
2018-11-19 00:22:56 +08:00
async def read_data(stream: INetStream) -> None:
2018-11-19 00:22:56 +08:00
while True:
read_bytes = await stream.read()
if read_bytes is not None:
read_string = read_bytes.decode()
if read_string != "\n":
# Green console colour: \x1b[32m
# Reset console colour: \x1b[0m
print("\x1b[32m %s\x1b[0m " % read_string, end="")
2018-11-19 00:22:56 +08:00
2019-07-24 21:28:14 +08:00
# FIXME(mhchia): Reconsider whether we should use a thread pool here.
async def write_data(stream: INetStream) -> None:
loop = asyncio.get_event_loop()
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: int, destination: str, localhost: bool) -> None:
if localhost:
ip = "127.0.0.1"
else:
ip = urllib.request.urlopen("https://v4.ident.me/").read().decode("utf8")
transport_opt = f"/ip4/{ip}/tcp/{port}"
2019-08-01 06:00:12 +08:00
host = await new_node(transport_opt=[transport_opt])
2019-04-19 03:56:02 +08:00
await host.get_network().listen(multiaddr.Multiaddr(transport_opt))
if not destination: # its the server
2019-08-01 06:00:12 +08:00
async def stream_handler(stream: INetStream) -> None:
2018-11-19 00:22:56 +08:00
asyncio.ensure_future(read_data(stream))
asyncio.ensure_future(write_data(stream))
2019-08-01 06:00:12 +08:00
2018-11-19 00:22:56 +08:00
host.set_stream_handler(PROTOCOL_ID, stream_handler)
localhost_opt = " --localhost" if localhost else ""
2018-11-19 00:22:56 +08:00
2019-08-01 06:00:12 +08:00
print(
f"Run 'python ./examples/chat/chat.py"
+ localhost_opt
+ f" -p {int(port) + 1} -d /ip4/{ip}/tcp/{port}/p2p/{host.get_id().pretty()}'"
+ " on another console."
2019-08-01 06:00:12 +08:00
)
print("Waiting for incoming connection...")
2018-11-19 00:22:56 +08:00
2019-07-24 18:43:49 +08:00
else: # its the client
maddr = multiaddr.Multiaddr(destination)
info = info_from_p2p_addr(maddr)
# 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'.
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))
print("Connected to peer %s" % info.addrs[0])
2018-11-19 00:22:56 +08:00
def main() -> None:
2019-07-24 18:43:49 +08:00
description = """
This program demonstrates a simple p2p chat application using libp2p.
To use it, first run 'python ./chat -p <PORT>', where <PORT> is the port number.
Then, run another host with 'python ./chat -p <ANOTHER_PORT> -d <DESTINATION>',
where <DESTINATION> is the multiaddress of the previous listener host.
"""
2019-08-04 02:25:25 +08:00
example_maddr = "/ip4/127.0.0.1/tcp/8000/p2p/QmQn4SwGkDZKkUEpBRBvTmheQycxAHJUNmVEnjA2v1qe8Q"
2019-07-24 18:43:49 +08:00
parser = argparse.ArgumentParser(description=description)
parser.add_argument(
2019-08-04 02:25:25 +08:00
"--debug", action="store_true", help="generate the same node ID on every execution"
2019-07-24 18:43:49 +08:00
)
2019-08-04 02:25:25 +08:00
parser.add_argument("-p", "--port", default=8000, type=int, help="source port number")
2019-07-24 18:43:49 +08:00
parser.add_argument(
2019-08-04 02:25:25 +08:00
"-d", "--destination", type=str, help=f"destination multiaddr string, e.g. {example_maddr}"
2019-07-24 18:43:49 +08:00
)
parser.add_argument(
"-l",
"--localhost",
dest="localhost",
action="store_true",
help="flag indicating if localhost should be used or an external IP",
)
2019-07-24 18:43:49 +08:00
args = parser.parse_args()
2018-11-19 00:22:56 +08:00
if not args.port:
raise RuntimeError("was not able to determine a local port")
2018-11-19 00:22:56 +08:00
loop = asyncio.get_event_loop()
try:
asyncio.ensure_future(run(args.port, args.destination, args.localhost))
2018-11-19 00:22:56 +08:00
loop.run_forever()
except KeyboardInterrupt:
pass
finally:
loop.close()
2019-08-01 06:00:12 +08:00
if __name__ == "__main__":
2018-11-19 00:22:56 +08:00
main()