Commit Graph

276 Commits

Author SHA1 Message Date
zixuanzh
bc6a27a762 fix all tests 2019-04-03 15:13:56 -04:00
zixuanzh
372ed8336c remove message from test dummy 2019-04-03 15:13:56 -04:00
zixuanzh
73c1d87db1 update dummy account node 2019-04-03 15:13:56 -04:00
zixuanzh
fb5b3e4a24 reworked floodsub logic 2019-04-03 15:13:56 -04:00
zixuanzh
3836aa65f1 fix encoding issue 2019-04-03 15:13:56 -04:00
zixuanzh
65526a3319 remove Message from dummy account 2019-04-03 15:13:56 -04:00
zixuanzh
35a587f72a remove message.py 2019-04-03 15:13:56 -04:00
zixuanzh
c03ba881f2 reworked subscribe unsubsrcibe 2019-04-03 15:13:56 -04:00
Alex Haynes
83de4f2972 RPC conversion progress 2019-04-03 15:13:56 -04:00
zixuanzh
dea31531da update dependencies 2019-04-03 15:13:56 -04:00
zixuanzh
a25aa0b034 rewrote get_hello_packet 2019-04-03 15:13:56 -04:00
zixuanzh
f1a20f12dc update from to from_id in proto 2019-04-03 15:13:56 -04:00
zixuanzh
2aa24cbfe8 add generated rpc code 2019-04-03 15:13:56 -04:00
zixuanzh
f655148d9c add pubsub proto 2019-04-03 15:13:56 -04:00
Alex Haynes
0d7b8c3e5d added rpc.proto from go repo 2019-04-03 15:13:56 -04:00
stuckinaboot
9c6d441f9f [WIP] PubSub and FloodSub development (#133)
* Add notifee interface

* Add notify function to network interface

* Implement notify feature

* Add tests for notify

* Make notifee functions all async

* Fix linting issue

* Fix linting issue

* Scaffold pubsub router interface

* Scaffold pubsub directory

* Store peer_id in muxed connection

* Implement pubsub notifee

* Remove outdated files

* Implement pubsub first attempt

* Prepare pubsub for floodsub

* Add mplex conn to net stream and add conn in notify tests

* Implement floodsub

* Use NetStream in generic protocol handler

* Debugging async issues

* Modify test to perform proper assert. Test passes

* Remove callbacks. Reduce sleep time

* Add simple three node test

* Clean up code. Add message classes

* Add test for two topics

* Add conn to net stream and conn tests

* Refactor test setup to remove duplicate code

* Fix linting issues

* Fix linting issue

* Fix linting issue

* Fix outstanding unrelated lint issue in multiselect_client

* Add connect function

* Remove debug prints

* Remove debug prints from floodsub

* Use MessageTalk in place of direct message breakdown

* Remove extra prints

* Remove outdated function

* Add message to queues for all topics in message

* Debugging

* Add message self delivery

* Increase read timeout to 5 to get pubsub tests passing

* Refactor testing helper func. Add tests

* Add tests and increase timeout to get tests passing

* Add dummy account demo scaffolding

* Attempt to use threads. Test fails

* Implement basic dummy node tests using threads

* Add generic testing function

* Add simple seven node tree test

* Add more complex seven node tree tests

* Add five node ring tests

* Remove unnecessary get_message_type func

* Add documentation to classes

* Add message id to messages

* Add documentation to test helper func

* Add docs to dummy account node helper func

* Add more docs to dummy account node test helper func

* fixed linting errors in floodsub

* small notify bugfix

* move pubsub into libp2p

* fixed pubsub linting

* fixing pubsub test failures

* linting
2019-04-03 15:13:56 -04:00
zixuanzh
fee905ace2 fix linting issues 2019-04-03 15:13:56 -04:00
zixuanzh
2e437e5b8b add test for listen event 2019-04-03 15:13:56 -04:00
zixuanzh
2cb0279b57 fix existing tests 2019-04-03 15:13:56 -04:00
zixuanzh
4c89a59406 refactor host setup helper 2019-04-03 15:13:56 -04:00
zixuanzh
fca5782d01 refactor new_node 2019-04-03 15:13:56 -04:00
Stuckinaboot
ed3c5f4b51 Add additional initiator and non-initiator notifee tests 2019-04-03 15:13:56 -04:00
Stuckinaboot
dfe2b0e7e7 Add return value to Notify 2019-04-03 15:13:56 -04:00
Stuckinaboot
4b9327c5a3 Add opened_stream call for non-initiator 2019-04-03 15:13:56 -04:00
Stuckinaboot
a0ef64fff7 Fix outstanding unrelated lint issue in multiselect_client 2019-04-03 15:13:56 -04:00
Stuckinaboot
92bfd816b9 Fix linting issue 2019-04-03 15:13:56 -04:00
Stuckinaboot
5cabc11687 Fix linting issue 2019-04-03 15:13:56 -04:00
Stuckinaboot
f58afc0eac Fix linting issues 2019-04-03 15:13:56 -04:00
Stuckinaboot
fa97b97748 Refactor test setup to remove duplicate code 2019-04-03 15:13:56 -04:00
Stuckinaboot
86ce7530d5 Add conn to net stream and conn tests 2019-04-03 15:13:56 -04:00
Stuckinaboot
66703bd414 Fix linting issue 2019-04-03 15:13:56 -04:00
Stuckinaboot
4298b0631f Fix linting issue 2019-04-03 15:13:56 -04:00
Stuckinaboot
1ecdcf7df4 Make notifee functions all async 2019-04-03 15:13:56 -04:00
Stuckinaboot
3beec9d4ae Add tests for notify 2019-04-03 15:13:56 -04:00
Stuckinaboot
c465141331 Implement notify feature 2019-04-03 15:13:56 -04:00
Stuckinaboot
1701fba42e Add notify function to network interface 2019-04-03 15:13:56 -04:00
Stuckinaboot
204c103d92 Add notifee interface 2019-04-03 15:13:56 -04:00
Hyungsuk Kang
78d0a658bb Typo fixes (#127)
* Update transport_interface.py

* Update tcp.py

* Update README.md
2019-02-24 23:11:54 -05:00
Robert Zajac
82840b5e6c
Stream rearchitecture (#126)
* Add generic protocol handler

* Add generic protocol handler to stream muxing pipeline

* Modify conn_handler to only deal with connections

* mplex accept stream architecture changes

* Add create generic protocol handler

* Fix minor bugs

* who would win 4 devs or one not

* Debugging

* rearch with handle_incoming infinite loop, seems to work, needs cleanup"

* passing linting, still needs cleanup

* fixing linting again; code still needs cleanup

* fixing tests; code still needs cleanup

* adding test cleanup and task cleanup, removing prints

* linting, and cleanup complete

* storing connections based on peer id

* remove dead code

* remove unnecessary peer_id
2019-02-24 20:58:23 -05:00
Alex Haynes
17c778de15
Peer Discovery Interface (#123)
* added file

* basic interface modeled on go repo

* fixed linting

* updated based on comments
2019-02-24 18:37:56 -05:00
Robert Zajac
e3e3ac30b1
Adding sponsorship ack to EF (#125)
Now that sponsorship has been announced (see link in blog), we can add acknowledgement and close out #60.
2019-02-22 15:02:17 -05:00
Alex Haynes
934714df62 updated readme (#124) 2019-02-12 10:56:03 -05:00
Robert Zajac
e34603c364
fixing chat to use public IP (#122) 2019-02-10 20:52:05 -05:00
Jorropo
5af7079f08 Change webrtc to planned (#117)
* Change webrtc to planned

Change WebRTC transport to planned.

* Change nat-pmp and upnp to planned
2019-02-10 13:27:25 -05:00
Aliabbas Merchant
bfb2c73810 Fixed some issues with the chat example (#120)
* Fixed some issues with the chat example

* Bump version to Python 3.7 (#121)

* bump version

* enable 3.7 in travis

* Minor refactor
2019-02-10 13:07:42 -05:00
ZX
732a15ec93 Bump version to Python 3.7 (#121)
* bump version

* enable 3.7 in travis
2019-02-09 21:40:05 -05:00
Jorropo
82d08a3b14 chat.py very little code refactor. (#112)
That was an useless duplicate
2019-01-30 23:54:55 -05:00
Christophe de Carvalho
9b6d61ca63 remove unused multiaddr module (#110) 2019-01-30 19:41:03 -05:00
Alex Haynes
d0f47ef24f removed accidently added duplicate mplex (#111) 2019-01-28 19:22:30 -05:00
Alex Haynes
7736d2afd2
updated reading to read until you see a message for your stream (#100)
* updated reading to read until you see a message for your stream

* added timeout to decode uvarint

* resolved comments

* shortened long line
2019-01-28 16:15:22 -05:00