Skip to content
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

Merged
merged 7 commits into from
Dec 11, 2024
Merged

refactor: remove AddrInfo #3024

merged 7 commits into from
Dec 11, 2024

Conversation

dignifiedquire
Copy link
Contributor

@dignifiedquire dignifiedquire commented Dec 9, 2024

Description

Simplify type structures

TODO

  • fix tests
  • resolve ticket breakage

Breaking Changes

  • remove iroh_base::node_addr::AddrInfo
  • remove iroh_base::node_addr::AddrInfoOptions
  • introduce ticket feature for iroh_base, to use iroh_base::ticket

Notes & open questions

Change checklist

  • Self-review.
  • Documentation updates following the style guide, if relevant.
  • Tests if relevant.
  • All breaking changes documented.

@dignifiedquire dignifiedquire added this to the v0.30.0 milestone Dec 9, 2024
Copy link
Contributor

@rklaehn rklaehn left a 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.

Copy link
Contributor

@flub flub left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good! 🚀

@@ -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 => {
Copy link
Contributor

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

Copy link
Contributor Author

@dignifiedquire dignifiedquire Dec 10, 2024

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

Copy link
Contributor Author

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"]
Copy link
Contributor

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?

Copy link
Contributor Author

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

@dignifiedquire dignifiedquire force-pushed the refactor-remove-addrinfo branch from 8a1ce36 to fda9400 Compare December 10, 2024 10:09
Copy link

github-actions bot commented Dec 10, 2024

Netsim report & logs for this PR have been generated and is available at: LOGS
This report will remain available for 3 days.

Last updated for commit: d01f95e

@dignifiedquire dignifiedquire force-pushed the refactor-remove-addrinfo branch from fda9400 to 1796746 Compare December 10, 2024 11:42
@dignifiedquire
Copy link
Contributor Author

@flub @rklaehn I have implemented internal legacy structs to keep the serialization stable

@dignifiedquire dignifiedquire marked this pull request as ready for review December 10, 2024 11:44
Copy link

github-actions bot commented Dec 10, 2024

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

Copy link
Contributor

@flub flub left a 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

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
another attempt

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@dignifiedquire dignifiedquire force-pushed the refactor-remove-addrinfo branch from 2dcc6ab to 5c45c6a Compare December 11, 2024 15:00
@dignifiedquire dignifiedquire self-assigned this Dec 11, 2024
@dignifiedquire dignifiedquire added this pull request to the merge queue Dec 11, 2024
Merged via the queue into main with commit 6a988a5 Dec 11, 2024
26 of 27 checks passed
github-merge-queue bot pushed a commit that referenced this pull request Jan 2, 2025
Cleanup some changes from #3024

- Cleans up some `is_empty` logic and naming
- fixes DNS publishing to only publish the relay url if one is
available, and not the IP addresses

Manual testing confirms, this fixes a regression of connections flip
flopping between mixed and direct

Closes #3081
@@ -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,
Copy link
Contributor

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

Copy link
Contributor

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.

Copy link
Member

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?

Copy link
Contributor

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.

Copy link
Contributor

@link2xt link2xt Feb 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dignifiedquire dignifiedquire deleted the refactor-remove-addrinfo branch February 5, 2025 13:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

None yet

5 participants