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

Implement size_hint on various sys iterators #49552

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/libstd/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1260,6 +1260,10 @@ impl Iterator for ReadDir {
fn next(&mut self) -> Option<io::Result<DirEntry>> {
self.0.next().map(|entry| entry.map(DirEntry))
}

fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
}

impl DirEntry {
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,10 @@ impl<'a> Iterator for Iter<'a> {
fn next(&mut self) -> Option<&'a OsStr> {
self.inner.next().map(Component::as_os_str)
}

fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
}

#[stable(feature = "rust1", since = "1.0.0")]
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/cloudabi/shims/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ impl Iterator for ReadDir {
fn next(&mut self) -> Option<io::Result<DirEntry>> {
match self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

impl DirEntry {
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/cloudabi/shims/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,10 @@ impl Iterator for LookupHost {
fn next(&mut self) -> Option<SocketAddr> {
match self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

pub fn lookup_host(_: &str) -> io::Result<LookupHost> {
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/cloudabi/shims/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ impl<'a> Iterator for SplitPaths<'a> {
fn next(&mut self) -> Option<PathBuf> {
match *self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

#[derive(Debug)]
Expand Down
10 changes: 10 additions & 0 deletions src/libstd/sys/redox/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,16 @@ impl Iterator for ReadDir {
}
}
}

fn size_hint(&self) -> (usize, Option<usize>) {
// There's at most one entry for every newline; and there are at most
// two skipped entries.
let upper = self.data[(i + 1)..].iter()
.filter(|byte| byte == b'\n')
.count();
let lower = upper.saturating_sub(2);
(lower, Some(upper))
}
Copy link
Member

Choose a reason for hiding this comment

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

Same question about iteration here.

}

impl DirEntry {
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/redox/net/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ impl Iterator for LookupHost {
fn next(&mut self) -> Option<Self::Item> {
self.0.next()
}

fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
}

pub fn lookup_host(host: &str) -> Result<LookupHost> {
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/unix/l4re.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,10 @@ pub mod net {
fn next(&mut self) -> Option<SocketAddr> {
None
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

unsafe impl Sync for LookupHost {}
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/wasm/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ impl Iterator for ReadDir {
fn next(&mut self) -> Option<io::Result<DirEntry>> {
match self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

impl DirEntry {
Expand Down
4 changes: 4 additions & 0 deletions src/libstd/sys/wasm/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,10 @@ impl Iterator for LookupHost {
fn next(&mut self) -> Option<SocketAddr> {
match self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

pub fn lookup_host(_: &str) -> io::Result<LookupHost> {
Expand Down
8 changes: 8 additions & 0 deletions src/libstd/sys/wasm/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ impl<'a> Iterator for SplitPaths<'a> {
fn next(&mut self) -> Option<PathBuf> {
match *self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

#[derive(Debug)]
Expand Down Expand Up @@ -77,6 +81,10 @@ impl Iterator for Env {
fn next(&mut self) -> Option<(OsString, OsString)> {
match self.0 {}
}

fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

pub fn env() -> Env {
Expand Down
9 changes: 9 additions & 0 deletions src/libstd/sys/windows/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,15 @@ impl<'a> Iterator for SplitPaths<'a> {
Some(super::os2path(&in_progress))
}
}

fn size_hint(&self) -> (usize, Option<usize>) {
// There will be at most N + 1 entries, where N is the number of
// remaining semicolons.
let data = self.data.clone();
let semicolons = data.filter(|&b| b == (';' as u16)).count();

(0, Some(semicolons + 1))
}
}

#[derive(Debug)]
Expand Down