-
Notifications
You must be signed in to change notification settings - Fork 273
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
Reproduce Bitcoin Core's handling of cookie files #252
Reproduce Bitcoin Core's handling of cookie files #252
Conversation
I think this is ready to go, have a look! |
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.
ACK ea0116f
ACK ea0116f except that I don't know why CI is not running here.. |
Posting so others don't check, |
If you want it; this should make the PR work with MSRV. /// Convert into the arguments that jsonrpc::Client needs.
pub fn get_user_pass(self) -> Result<(Option<String>, Option<String>)> {
match self {
Auth::None => Ok((None, None)),
Auth::UserPass(u, p) => Ok((Some(u), Some(p))),
Auth::CookieFile(path) => {
let line = BufReader::new(File::open(path)?)
.lines()
.next()
.ok_or(Error::InvalidCookieFile)??;
let mut split = line.splitn(2, ":");
Ok((
Some(split.next().ok_or(Error::InvalidCookieFile)?.into()),
Some(split.next().ok_or(Error::InvalidCookieFile)?.into()),
))
}
}
} |
06add13
to
f5512ae
Compare
Thanks for the ping! Just rewrote it using |
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.
ACK f5512ae
Could you please rebase on master since #312 has been merged and should solve CI issues |
f5512ae
to
315463d
Compare
Done! |
sorry, it seems it's not enough due to |
315463d
to
f9e3ca0
Compare
@RCasatta I just added that line to |
Oh man, its quote causing the problem, I hoped I fixed this one. I can have a poke around if you don't get to it. This pinning is such a useful use of everyones time :) |
I'm not sure I understand, quote is a dependency of serde, but this PR didn't change anything with serde. |
Its not this PR, pinning has broken, again, for some other reason. |
What a PITA, it is the order of the pinning that is broken. This works
|
FTR I ran: |
Bitcoin Core uses a single call to std::getline to read the contents of cookie files, making it ignore newlines in the file, as well as ignore any lines after the first. This reproduces that behavior, so that all cookie files that work with Bitcoin Core should work with this library.
f9e3ca0
to
b16f7ef
Compare
😭😭😭 Okay, should be fixed now. I updated contrib/test.sh with the order in your comment. Another option for pinning the version would be to use exact semver requirements in |
Yep, this is all MSRV bullshit because everyone keeps changing the Rust edition and releasing it in patch versions. |
That's horribly broken and an absolute no-go.
That has nothing to do with it. It's the correct way to release a new version. If anything, cargo missing tools to automatically downgrade dependencies based on MSRV is the real problem. |
Oh is it because those projects do not have stated MSRV that doing this is not considered a breaking change? |
Not necessarily. Bumping MSRV doesn't break the API. It only requires you to update a dependency (which rustc is). Semver is for API changes not unrelated build issues. Perhaps more importantly, doing the opposite wreaks havoc in the entire ecosystem:
Now if crate A changes version to 2.0 because of MSRV bump and the maintainer of B is on holiday, C can't upgrade A without pointlessly patching B. That in itself is annoying but it gets worse. If D also depends on A but manages to update then C will get two instances of the same crate. And that leads to even more hell if B and D interact using types from A. All of this just because of an unrelated change that actually doesn't break anything technically. What about minor version? A higher patch version means the crate has a new feature. If a crate does not block upgrading minor version by using tilde requirements then the situation is the same as patch version - the dependency is updated regardless of MSRV and bumping minor version is just confusing.
If A upgrades MSRV and the version to 1.1, B can't upgrade because of the exact same reason as above and the situation is exactly as horrible with multiple dependencies and such. Again because of silly choice by B encouraged by A.
|
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.
utACK b16f7ef
Nice, thanks for merging! |
I was running into an confusing issue where a cookie file that worked with
bitcoin-cli
wasn't working with rust-bitcoincore-rpc. It turned out that the cookie file contained a newline, which Bitcoin Core ignored butrust-bitcoincore-rpc
included as part of the password.This PR reproduces the behavior of Bitcoin Core, so that all cookie files that with Bitcoin Core should work with
rust-bitcoincore-rpc
.The commit message:
Bitcoin Core uses a single call to std::getline to read the contents of cookie files, making it ignore newlines in the file, as well as ignore any lines after the first. This reproduces that behavior, so that all cookie files that work with Bitcoin Core should work with this library.