Skip to content

[6/n] simplify FetchArtifactImpl interface #8040

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

Merged

Conversation

sunshowers
Copy link
Contributor

@sunshowers sunshowers commented Apr 24, 2025

Rather than returning a boxed iterator, simply return the set of peers as a concrete type.

I wanted to also align FetchArtifactBackend with ReportProgressBackend (single persistent backend rather than new ones generated each time discovery happens), but it was a bigger lift than I wanted to handle right now, so decided to punt on that. I've added a note about doing this in the future.

Created using spr 1.3.6-beta.1

[skip ci]
Created using spr 1.3.6-beta.1
Created using spr 1.3.6-beta.1

[skip ci]
Created using spr 1.3.6-beta.1
#[async_trait]
pub(crate) trait FetchArtifactImpl: fmt::Debug + Send + Sync {
fn peers(&self) -> Box<dyn Iterator<Item = PeerAddress> + Send + '_>;
fn peer_count(&self) -> usize;
fn peers(&self) -> PeerAddresses;
Copy link
Contributor

Choose a reason for hiding this comment

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

Could this be

Suggested change
fn peers(&self) -> PeerAddresses;
fn peers(&self) -> &PeerAddresses;

and let the caller clone it if desired?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ah actually -- the mock/fake implementation generates a PeerAddresses on the fly. We could store the addresses in the required form, I guess.

Created using spr 1.3.6-beta.1

[skip ci]
@sunshowers sunshowers changed the base branch from sunshowers/spr/main.6n-simplify-fetchartifactimpl-interface to main April 25, 2025 19:24
Created using spr 1.3.6-beta.1
@sunshowers sunshowers enabled auto-merge (squash) April 25, 2025 19:25
Created using spr 1.3.6-beta.1
@sunshowers sunshowers merged commit 7809811 into main Apr 26, 2025
16 checks passed
@sunshowers sunshowers deleted the sunshowers/spr/6n-simplify-fetchartifactimpl-interface branch April 26, 2025 00:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants