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

Make API explicit about what it's getting/iterating #13

Merged
merged 4 commits into from
Dec 12, 2022

Conversation

Be-ing
Copy link
Contributor

@Be-ing Be-ing commented Dec 2, 2022

This renames Buf::get -> Buf::get_channel & Buf::iter -> Buf::iter_channels and likewise for BufMut. This emphasizes that these functions refer to channels rather than frames without needing to read the documentation.

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 2, 2022

This was unfortunately cumbersome to rename because rust-analyzer doesn't work in doc tests. :/

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 2, 2022

I was considering renaming the get/iter functions on Channel/ChannelMut and Frame/FrameMut as well, but I'm not sure that's helpful because it's unambiguous what those functions refer to.

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 2, 2022

Sequential/Interleaved/Dynamic::resize and resize_channels are kinda confusingly named as well. Does resize_channels resize the number of channels, or resize how big each channel is? The name could reasonably be understood either way, so reading the documentation is required to clarify. Perhaps it would be better to rename these to set_frames/set_channels or set_num_frames/set_num_channels?

@udoprog udoprog added the enhancement New feature or request label Dec 3, 2022
@udoprog
Copy link
Owner

udoprog commented Dec 5, 2022

🤔

I'm torn. On one hand I see your point. get_channel describes what you're doing better especially once there is different things. But it's a shame to give up on a solid set of default naming conventions. It might just be more beneficial to pick one as the more common one and provide it.

Changing this also implies that we should rename other associated methods and types (like you wrote initially):

  • iter_channels / iter_channels_mut.
  • Buf::Iter / BufMut::IterMut.
  • get / get_channel.

The Buf::skip, Buf::tail, and Buf::limit APIs might also be up for grabs.

I'd suggesting holding of with the refactoring for now until the API is more complete and vetted against third party projects (#21). It might become clearer if one use case is more of a default then.

Perhaps it would be better to rename these to set_frames/set_channels or set_num_frames/set_num_channels?

set_* probably isn't the best naming convention, it implies that something is being cheaply updated in my mind. Something using resize for "maybe expensive operation" has precedence in std.

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 5, 2022

set_* probably isn't the best naming convention, it implies that something is being cheaply updated in my mind. Something using resize for "maybe expensive operation" has precedence in std.

How about resize_channels and resize_frames?

@udoprog
Copy link
Owner

udoprog commented Dec 5, 2022

Yeah, that works for me! Resizing both is currently called resize_topology.

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 5, 2022

I'd suggesting holding of with the refactoring for now until the API is more complete and vetted against third party projects (#21).

I made this PR because of how I wanted the code in my project (https://codeberg.org/moire/moire/pulls/91) to look. Currently, in the main branch of Moire, I'm using Vec<Vec<f32>> for buffers. Sure I can iterate over those like:

for channel in buffer.iter_mut()
   for sample in channel {
       *sample = 0.0;
   }
}

But it's just a Vec of Vecs; there's no meaning communicated in the type's API beyond that. Anyone writing code to work with those buffers has to somehow know that buffer.iter_mut() iterates over the channels rather than the frames. Whereas with the Buf trait, it knows the difference between a channel and a frame, so that can be unambiguously communicated with buffer.iter_channels_mut().

@udoprog
Copy link
Owner

udoprog commented Dec 10, 2022

So what seems to be left is renaming associated types:

  • Buf::Iter -> Buf::IterChannels.
  • BufMut::IterMut -> ButMut::IterChannelsMut.

And renaming any appropriate resize functions (resize_channels and resize_frames).

Also this associated type should be adjusted to follow the proposed scheme:

  • UniformBuf::FramesIter -> UniformBuf::IterFrames.

I don't see anything else right now, but if you see it, change it!

@udoprog
Copy link
Owner

udoprog commented Dec 10, 2022

Also if you want to do this more incrementally I'm OK with merging as-is and I can pick up some of the remaining pieces.

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 10, 2022

Is there a reason that the ResizeBuf trait is implemented as wrappers around methods on the structs?

impl<T> ResizableBuf for Sequential<T>
where
    T: Sample,
{
    fn try_reserve(&mut self, capacity: usize) -> bool {
        self.reserve(capacity);
        true
    }

    fn resize_frames(&mut self, frames: usize) {
        Self::resize_frames(self, frames);
    }

    fn resize_topology(&mut self, channels: usize, frames: usize) {
        Self::resize_frames(self, frames);
        Self::resize_channels(self, channels);
    }
}

Why not move the implementation of try_reserve and resize_frames into this impl ResizableBuf?

@Be-ing
Copy link
Contributor Author

Be-ing commented Dec 10, 2022

Also if you want to do this more incrementally I'm OK with merging as-is and I can pick up some of the remaining pieces.

I already took care of the other renames. :)

@Be-ing Be-ing force-pushed the explicit_api branch 3 times, most recently from 3fc280b to 567691c Compare December 11, 2022 04:46
@udoprog
Copy link
Owner

udoprog commented Dec 12, 2022

Rebased

@udoprog udoprog changed the title make API explicit about what it's getting/iterating Make API explicit about what it's getting/iterating Dec 12, 2022
udoprog
udoprog previously approved these changes Dec 12, 2022
udoprog
udoprog previously approved these changes Dec 12, 2022
@udoprog udoprog merged commit 5140aae into udoprog:main Dec 12, 2022
@Be-ing Be-ing deleted the explicit_api branch December 12, 2022 14:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants