-
Notifications
You must be signed in to change notification settings - Fork 674
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
Add select::FdSet::fds() method #1207
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.
This looks like a good feature. Let's wait to see if rust-lang/libc#1725 is approved before we decide how to implement contains
src/sys/select.rs
Outdated
pub fn contains(&mut self, fd: RawFd) -> bool { | ||
unsafe { libc::FD_ISSET(fd, &mut self.0) } | ||
pub fn contains(&self, fd: RawFd) -> bool { | ||
let mut copy = self.0; |
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.
libc::FD_ISSET
should be taking a *const
pointer rather than *mut
. I just opened a PR to fix that.
rust-lang/libc#1725
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 an aside, if we're worried about the cost of this copy, then we might want to consider not deriving Copy
for FdSet
.
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.
You know, that's an excellent point. On my system, FdSet
is 128 bytes big. Users probably shouldn't copy such a time unless they really need to. However removing Copy
doesn't necessarily prevent the value from ever being memcpy
'd, and the consensus is that it's best to impl Copy
regardless of size. See https://www.reddit.com/r/rust/comments/2xxjda/when_should_my_type_be_copy/ and https://internals.rust-lang.org/t/pre-rfc-copy-like-trait-for-large-types/11852/14 for some discussion.
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 that for now we should proceed without waiting for rust-lang/libc#1725 . But copying the entire structure on each loop of the iterator is woefully inefficient. I think you should retain the &mut
reference instead.
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.
Done. This sadly means that the iterator cannot implement Clone
, but I don't see a good way around that.
src/sys/select.rs
Outdated
/// assert_eq!(fds, vec![4, 9]); | ||
/// ``` | ||
#[inline] | ||
pub fn fds(&self) -> Fds { |
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.
Typically a C programmer will know what the maximum file descriptor he registered was, and when inspecting the fd_set
he won't need to iterate all the way to FD_SETSIZE
, which can be up to 64k on some platforms. But as written your iterator will always iterate that high. That's not good for performance. What if you add an max: Option<RawFd>
argument tofds
? If supplied, the iterator won't check any higher than that. Such an argument could also be useful to highest
.
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.
Added to fds()
. I didn't add to highest()
in the interest of not introducing unnecessary breakage. If someone wants to get that performance gain, they can use set.fds(Some(my_limit)).next_back()
, which isn't terribly hard to write and is pretty clear.
src/sys/select.rs
Outdated
pub fn contains(&mut self, fd: RawFd) -> bool { | ||
unsafe { libc::FD_ISSET(fd, &mut self.0) } | ||
pub fn contains(&self, fd: RawFd) -> bool { | ||
let mut copy = self.0; |
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 that for now we should proceed without waiting for rust-lang/libc#1725 . But copying the entire structure on each loop of the iterator is woefully inefficient. I think you should retain the &mut
reference instead.
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.
This is looking better. Please add some tests, too.
The CI failure was an intermittent network hiccup. |
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.
bors r+
Build succeeded: |
To be more consistent with most Rust APIs and enable cloning of the iterator, I made
FdSet::contains
operate on an immutable borrow instead of a mutable one by copying the set. If this is not desirable, I can roll that back from this PR and focus purely on thefds()
method.