-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump rand version to 0.8 and some other minor changes #688
Open
rodoufu
wants to merge
10
commits into
paritytech:master
Choose a base branch
from
rodoufu:smallImp
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
bc07cf6
Bump rand version to 0.8
rodoufu 8457ec6
Fix local versions
rodoufu 828eea1
Update Cargo.toml
rodoufu f3759ec
Adding jsonrpc-derive to the workspace dependencies
rodoufu 09fa00c
using workspace dependencies
rodoufu ae3db41
Using workspace dependencies
rodoufu 6ce77f8
Using workspace dependencies
rodoufu bfee58a
Using workspace dependencies
rodoufu 0f19ff2
Adding workspace dependencies
rodoufu ca0adf7
Update Cargo.toml
rodoufu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -14,3 +14,39 @@ members = [ | |
"test", | ||
"ws", | ||
] | ||
|
||
[workspace.package] | ||
version = "18.0.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
license = "MIT" | ||
edition = "2018" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
|
||
[workspace.dependencies] | ||
# local projects | ||
jsonrpc-core = { version = "18.0.1", path = "./core" } | ||
jsonrpc-core-client = { version = "18.0.1", path = "./core-client" } | ||
jsonrpc-client-transports = { version = "18.0.0", path = "./core-client/transports" } | ||
jsonrpc-derive = { version = "18.0.0", path = "./derive" } | ||
jsonrpc-http-server = { version = "18.0.1", path = "./http" } | ||
jsonrpc-ipc-server = { version = "18.0.1", path = "./ipc" } | ||
jsonrpc-pubsub = { version = "18.0.1", path = "./pubsub" } | ||
jsonrpc-server-utils = { version = "18.0.1", path = "./server-utils" } | ||
jsonrpc-tcp-server = { version = "18.0.1", path = "./tcp" } | ||
|
||
assert_matches = "1.3" | ||
env_logger = "0.7" | ||
futures = "0.3" | ||
lazy_static = "1.0" | ||
log = "0.4" | ||
hyper = "0.14" | ||
parking_lot = "0.11.0" | ||
parity-tokio-ipc = "0.9" | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
tokio = "1" | ||
tokio-util = "0.6" | ||
tower-service = "0.3" | ||
unicase = "2.0" |
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,14 +1,13 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Transport agnostic JSON-RPC 2.0 client implementation." | ||
documentation = "https://docs.rs/jsonrpc-core-client/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
license = "MIT" | ||
name = "jsonrpc-core-client" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "18.0.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
edition.workspace = true | ||
|
||
categories = [ | ||
"asynchronous", | ||
|
@@ -26,8 +25,8 @@ ipc = ["jsonrpc-client-transports/ipc"] | |
arbitrary_precision = ["jsonrpc-client-transports/arbitrary_precision"] | ||
|
||
[dependencies] | ||
jsonrpc-client-transports = { version = "18.0.0", path = "./transports", default-features = false } | ||
futures = { version = "0.3", features = [ "compat" ] } | ||
jsonrpc-client-transports = { workspace = true, default-features = false } | ||
futures = { workspace = true, features = ["compat"] } | ||
|
||
[badges] | ||
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"} | ||
travis-ci = { repository = "paritytech/jsonrpc", branch = "master" } |
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 |
---|---|---|
|
@@ -101,12 +101,9 @@ where | |
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> { | ||
// Handle requests from the client. | ||
log::debug!("handle requests from client"); | ||
loop { | ||
// Check that the client channel is open | ||
let channel = match self.channel.as_mut() { | ||
Some(channel) => channel, | ||
None => break, | ||
}; | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cleaner loop. |
||
// Check that the client channel is open | ||
while let Some(channel) = self.channel.as_mut() { | ||
let msg = match channel.poll_next_unpin(cx) { | ||
Poll::Ready(Some(msg)) => msg, | ||
Poll::Ready(None) => { | ||
|
@@ -185,87 +182,79 @@ where | |
|
||
// Handle incoming queue. | ||
log::debug!("handle incoming"); | ||
loop { | ||
match self.incoming.pop_front() { | ||
Some((id, result, method, sid)) => { | ||
let sid_and_method = sid.and_then(|sid| method.map(|method| (sid, method))); | ||
// Handle the response to a pending request. | ||
match self.pending_requests.remove(&id) { | ||
// It's a regular Req-Res call, so just answer. | ||
Some(PendingRequest::Call(tx)) => { | ||
tx.send(result) | ||
.map_err(|_| RpcError::Client("oneshot channel closed".into()))?; | ||
continue; | ||
} | ||
// It was a subscription request, | ||
// turn it into a proper subscription. | ||
Some(PendingRequest::Subscription(mut subscription)) => { | ||
let sid = result.as_ref().ok().and_then(|res| SubscriptionId::parse_value(res)); | ||
let method = subscription.notification.clone(); | ||
while let Some((id, result, method, sid)) = self.incoming.pop_front() { | ||
let sid_and_method = sid.and_then(|sid| method.map(|method| (sid, method))); | ||
// Handle the response to a pending request. | ||
match self.pending_requests.remove(&id) { | ||
// It's a regular Req-Res call, so just answer. | ||
Some(PendingRequest::Call(tx)) => { | ||
tx.send(result) | ||
.map_err(|_| RpcError::Client("oneshot channel closed".into()))?; | ||
continue; | ||
} | ||
// It was a subscription request, | ||
// turn it into a proper subscription. | ||
Some(PendingRequest::Subscription(mut subscription)) => { | ||
let sid = result.as_ref().ok().and_then(SubscriptionId::parse_value); | ||
let method = subscription.notification.clone(); | ||
|
||
if let Some(sid) = sid { | ||
subscription.id = Some(sid.clone()); | ||
if self | ||
.subscriptions | ||
.insert((sid.clone(), method.clone()), subscription) | ||
.is_some() | ||
{ | ||
log::warn!( | ||
"Overwriting existing subscription under {:?} ({:?}). \ | ||
if let Some(sid) = sid { | ||
subscription.id = Some(sid.clone()); | ||
if self | ||
.subscriptions | ||
.insert((sid.clone(), method.clone()), subscription) | ||
.is_some() | ||
{ | ||
log::warn!( | ||
"Overwriting existing subscription under {:?} ({:?}). \ | ||
Seems that server returned the same subscription id.", | ||
sid, | ||
method, | ||
); | ||
} | ||
} else { | ||
let err = RpcError::Client(format!( | ||
"Subscription {:?} ({:?}) rejected: {:?}", | ||
id, method, result, | ||
)); | ||
|
||
if subscription.channel.unbounded_send(result).is_err() { | ||
log::warn!("{}, but the reply channel has closed.", err); | ||
} | ||
} | ||
continue; | ||
} | ||
// It's not a pending request nor a notification | ||
None if sid_and_method.is_none() => { | ||
log::warn!("Got unexpected response with id {:?} ({:?})", id, sid_and_method); | ||
continue; | ||
sid, | ||
method, | ||
); | ||
} | ||
// just fall-through in case it's a notification | ||
None => {} | ||
}; | ||
|
||
let sid_and_method = if let Some(x) = sid_and_method { | ||
x | ||
} else { | ||
continue; | ||
}; | ||
let err = | ||
RpcError::Client(format!("Subscription {:?} ({:?}) rejected: {:?}", id, method, result,)); | ||
|
||
if let Some(subscription) = self.subscriptions.get_mut(&sid_and_method) { | ||
let res = subscription.channel.unbounded_send(result); | ||
if res.is_err() { | ||
let subscription = self | ||
.subscriptions | ||
.remove(&sid_and_method) | ||
.expect("Subscription was just polled; qed"); | ||
let sid = subscription.id.expect( | ||
"Every subscription that ends up in `self.subscriptions` has id already \ | ||
assigned; assignment happens during response to subscribe request.", | ||
); | ||
let (_id, request_str) = | ||
self.request_builder.unsubscribe_request(subscription.unsubscribe, sid); | ||
log::debug!("outgoing: {}", request_str); | ||
self.outgoing.push_back(request_str); | ||
log::debug!("unsubscribed from {:?}", sid_and_method); | ||
if subscription.channel.unbounded_send(result).is_err() { | ||
log::warn!("{}, but the reply channel has closed.", err); | ||
} | ||
} else { | ||
log::warn!("Received unexpected subscription notification: {:?}", sid_and_method); | ||
} | ||
continue; | ||
} | ||
None => break, | ||
// It's not a pending request nor a notification | ||
None if sid_and_method.is_none() => { | ||
log::warn!("Got unexpected response with id {:?} ({:?})", id, sid_and_method); | ||
continue; | ||
} | ||
// just fall-through in case it's a notification | ||
None => {} | ||
}; | ||
|
||
let sid_and_method = if let Some(x) = sid_and_method { | ||
x | ||
} else { | ||
continue; | ||
}; | ||
|
||
if let Some(subscription) = self.subscriptions.get_mut(&sid_and_method) { | ||
let res = subscription.channel.unbounded_send(result); | ||
if res.is_err() { | ||
let subscription = self | ||
.subscriptions | ||
.remove(&sid_and_method) | ||
.expect("Subscription was just polled; qed"); | ||
let sid = subscription.id.expect( | ||
"Every subscription that ends up in `self.subscriptions` has id already \ | ||
assigned; assignment happens during response to subscribe request.", | ||
); | ||
let (_id, request_str) = self.request_builder.unsubscribe_request(subscription.unsubscribe, sid); | ||
log::debug!("outgoing: {}", request_str); | ||
self.outgoing.push_back(request_str); | ||
log::debug!("unsubscribed from {:?}", sid_and_method); | ||
} | ||
} else { | ||
log::warn!("Received unexpected subscription notification: {:?}", sid_and_method); | ||
} | ||
} | ||
|
||
|
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
[package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Transport agnostic rust implementation of JSON-RPC 2.0 Specification." | ||
documentation = "https://docs.rs/jsonrpc-core/" | ||
edition = "2018" | ||
homepage = "https://github.com/paritytech/jsonrpc" | ||
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"] | ||
license = "MIT" | ||
name = "jsonrpc-core" | ||
repository = "https://github.com/paritytech/jsonrpc" | ||
version = "18.0.0" | ||
version.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
edition.workspace = true | ||
|
||
categories = [ | ||
"asynchronous", | ||
|
@@ -19,20 +18,20 @@ categories = [ | |
] | ||
|
||
[dependencies] | ||
log = "0.4" | ||
log.workspace = true | ||
# FIXME: Currently a lot of jsonrpc-* crates depend on entire `futures` being | ||
# re-exported but it's not strictly required for this crate. Either adapt the | ||
# remaining crates or settle for this re-export to be a single, common dependency | ||
futures = { version = "0.3", optional = true } | ||
futures = { workspace = true, optional = true } | ||
futures-util = { version = "0.3", default-features = false, features = ["std"] } | ||
futures-executor = { version = "0.3", optional = true } | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
serde.workspace = true | ||
serde_json.workspace = true | ||
serde_derive = "1.0" | ||
|
||
[features] | ||
default = ["futures-executor", "futures"] | ||
arbitrary_precision = ["serde_json/arbitrary_precision"] | ||
|
||
[badges] | ||
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"} | ||
travis-ci = { repository = "paritytech/jsonrpc", branch = "master" } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding workspace dependencies and also keeping mentions to crates in the workspace in the workspace dependencies.