-
Notifications
You must be signed in to change notification settings - Fork 11
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
Conversation
This was unfortunately cumbersome to rename because rust-analyzer doesn't work in doc tests. :/ |
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. |
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? |
🤔 I'm torn. On one hand I see your point. Changing this also implies that we should rename other associated methods and types (like you wrote initially):
The 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.
|
How about |
Yeah, that works for me! Resizing both is currently called |
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 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 |
So what seems to be left is renaming associated types:
And renaming any appropriate resize functions ( Also this associated type should be adjusted to follow the proposed scheme:
I don't see anything else right now, but if you see it, change it! |
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. |
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 |
I already took care of the other renames. :) |
3fc280b
to
567691c
Compare
and likewise for BufMut
567691c
to
32d3bbd
Compare
Rebased |
5c03cd5
to
679fcae
Compare
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.