forked from driftluo/tentacle
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #306 from nervosnetwork/fix-session-bloking-detection
fix: Fix session bloking detection
- Loading branch information
Showing
5 changed files
with
170 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## 0.3.7 | ||
|
||
### Bug Fix | ||
- Blocking session detection(#306) | ||
|
||
## 0.3.6 | ||
|
||
### Bug Fix | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tentacle" | ||
version = "0.3.6" | ||
version = "0.3.7" | ||
license = "MIT" | ||
description = "Minimal implementation for a multiplexed p2p network framework." | ||
authors = ["piaoliu <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
use bytes::Bytes; | ||
use futures::{channel, StreamExt}; | ||
use std::thread; | ||
use tentacle::{ | ||
builder::{MetaBuilder, ServiceBuilder}, | ||
context::{ProtocolContext, ProtocolContextMutRef, ServiceContext}, | ||
multiaddr::Multiaddr, | ||
secio::SecioKeyPair, | ||
service::{ProtocolHandle, ProtocolMeta, Service, ServiceError, TargetProtocol}, | ||
traits::{ServiceHandle, ServiceProtocol}, | ||
ProtocolId, | ||
}; | ||
|
||
pub fn create<F>(secio: bool, meta: ProtocolMeta, shandle: F) -> Service<F> | ||
where | ||
F: ServiceHandle + Unpin, | ||
{ | ||
let builder = ServiceBuilder::default() | ||
.insert_protocol(meta) | ||
.set_send_buffer_size(1) | ||
.set_recv_buffer_size(1); | ||
|
||
if secio { | ||
builder | ||
.key_pair(SecioKeyPair::secp256k1_generated()) | ||
.build(shandle) | ||
} else { | ||
builder.build(shandle) | ||
} | ||
} | ||
|
||
struct PHandle; | ||
|
||
impl ServiceProtocol for PHandle { | ||
fn init(&mut self, _context: &mut ProtocolContext) {} | ||
|
||
fn connected(&mut self, context: ProtocolContextMutRef, _version: &str) { | ||
if context.session.ty.is_inbound() { | ||
let data = Bytes::from(vec![0; 1024 * 1024 * 8]); | ||
loop { | ||
let _res = context.send_message(data.clone()); | ||
} | ||
} | ||
} | ||
|
||
fn received(&mut self, _context: ProtocolContextMutRef, _data: bytes::Bytes) { | ||
thread::sleep(::std::time::Duration::from_secs(10)); | ||
} | ||
} | ||
|
||
fn create_meta(id: ProtocolId) -> ProtocolMeta { | ||
MetaBuilder::new() | ||
.id(id) | ||
.service_handle(move || { | ||
if id == 0.into() { | ||
ProtocolHandle::Neither | ||
} else { | ||
let handle = Box::new(PHandle); | ||
ProtocolHandle::Callback(handle) | ||
} | ||
}) | ||
.build() | ||
} | ||
|
||
#[derive(Clone)] | ||
pub struct SHandle; | ||
|
||
impl ServiceHandle for SHandle { | ||
fn handle_error(&mut self, _control: &mut ServiceContext, error: ServiceError) { | ||
match error { | ||
ServiceError::SessionBlocked { .. } => (), | ||
e => panic!("Unexpected error: {:?}", e), | ||
} | ||
} | ||
} | ||
|
||
fn test_large_message(secio: bool) { | ||
let meta_1 = create_meta(1.into()); | ||
let (addr_sender, addr_receiver) = channel::oneshot::channel::<Multiaddr>(); | ||
|
||
thread::spawn(move || { | ||
let mut rt = tokio::runtime::Runtime::new().unwrap(); | ||
let mut service = create(secio, meta_1, SHandle); | ||
rt.block_on(async move { | ||
let listen_addr = service | ||
.listen("/ip4/127.0.0.1/tcp/0".parse().unwrap()) | ||
.await | ||
.unwrap(); | ||
let _res = addr_sender.send(listen_addr); | ||
loop { | ||
if service.next().await.is_none() { | ||
break; | ||
} | ||
} | ||
}); | ||
}); | ||
|
||
let meta = create_meta(1.into()); | ||
let mut rt = tokio::runtime::Runtime::new().unwrap(); | ||
let mut service = create(secio, meta, SHandle); | ||
rt.block_on(async move { | ||
let listen_addr = addr_receiver.await.unwrap(); | ||
service | ||
.dial(listen_addr, TargetProtocol::All) | ||
.await | ||
.unwrap(); | ||
loop { | ||
if service.next().await.is_none() { | ||
break; | ||
} | ||
} | ||
}); | ||
} | ||
|
||
#[test] | ||
fn test_large_message_with_secio() { | ||
test_large_message(true) | ||
} | ||
|
||
#[test] | ||
fn test_large_message_with_no_secio() { | ||
test_large_message(false) | ||
} |