-
Notifications
You must be signed in to change notification settings - Fork 224
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
refactor: remove AddrInfo
#3024
Conversation
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.
As I have discussed with @flub some time ago, I am not a fan of getting rid of AddrInfo entirely. I think keeping AddrInfo just for discovery would give you the same benefits for the most common use cases while still making implementing and working with discovery more pleasant.
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.
Looking good! 🚀
iroh-base/src/node_addr.rs
Outdated
@@ -92,17 +93,31 @@ impl NodeAddr { | |||
/// | |||
/// [discovery]: https://docs.rs/iroh/*/iroh/index.html#node-discovery | |||
pub fn apply_options(&mut self, opts: AddrInfoOptions) { | |||
self.info.apply_options(opts); | |||
match opts { | |||
AddrInfoOptions::Id => { |
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.
I think AddrInfoOptions
should probably be renamed to NodeAddrOptions
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.
yeah, I will look at the fate of that again
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.
removed, this was really not pulling its wait anymore, can be easily achieved through other means now
iroh/Cargo.toml
Outdated
@@ -177,7 +177,7 @@ name = "key" | |||
harness = false | |||
|
|||
[features] | |||
default = ["metrics", "discovery-pkarr-dht"] | |||
default = ["metrics", "discovery-pkarr-dht", "discovery-local-network"] |
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.
Did you mean to change this default?
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.
no this is just for easier debugging
8a1ce36
to
fda9400
Compare
fda9400
to
1796746
Compare
Documentation for this PR has been generated and is available at: https://n0-computer.github.io/iroh/pr/3024/docs/iroh/ Last updated: 2024-12-11T17:42:16Z |
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.
I guess remaining is:
- doing something about the
AddrInfoOptions
. - reverting the cargo features defaults
2dcc6ab
to
5c45c6a
Compare
@@ -41,31 +41,34 @@ pub use crate::relay_url::RelayUrl; | |||
pub struct NodeAddr { | |||
/// The node's identifier. | |||
pub node_id: NodeId, | |||
/// Addressing information to connect to [`Self::node_id`]. | |||
pub info: AddrInfo, |
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.
The change should have been probably marked as breaking because NodeAddr
is serializable and Delta Chat serialized it into JSON and into QR codes then, so upgrading broke QR code compatibility: chatmail/core#6518
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.
Ugh, sorry about that. We handled this for users who were serialising tickets: those are backwards compatible.
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.
Should we add backwards compatibility via a custom Deserialize
implementation in a future release?
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.
No need to add anything, it's good enough. We have a test now to make sure it does not break again.
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.
We ended up adding workaround anyway :)
https://github.com/deltachat/deltachat-core-rust/blob/302aa5a5f750d2d24211bff8e61eb2610470fca3/src/qr.rs#L264-L269
(it's fine, we have tests)
Description
Simplify type structures
TODO
Breaking Changes
iroh_base::node_addr::AddrInfo
iroh_base::node_addr::AddrInfoOptions
ticket
feature foriroh_base
, to useiroh_base::ticket
Notes & open questions
Change checklist