Code Monkey home page Code Monkey logo

streaming-iterator's Introduction

streaming-iterator

CircleCI

Documentation

Streaming iterators for Rust.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

streaming-iterator's People

Contributors

cuviper avatar sfackler avatar palladinium avatar lorenzschueler avatar fauxfaux avatar alyssais avatar wallacoloo avatar shepmaster avatar

Stargazers

Artavazd Balaian avatar Jonathan Widén avatar Linken Quy Dinh avatar Fritz Rehde avatar thelosttree avatar Luke Frisken avatar Christoph Grabo avatar Volker Mische avatar Yury Shulaev avatar Johan Holmerin avatar LIU JIE avatar  avatar  avatar Roman Hossain Shaon avatar Hugo Lundin avatar Pop avatar Naim A. avatar Frankie Robertson avatar Brice Arnould avatar ZJPzjp avatar Horace Williams avatar Matthijs Brobbel avatar Jorge Leitao avatar Dan Fritchman avatar Denys Séguret avatar Maxwell Koo avatar Yoshi avatar chunzhong zhang avatar Juri Hahn avatar Sebastian Thiel avatar  avatar Sachandhan Ganesh avatar Hadrien G. avatar Deliang Yang avatar raja sekar avatar namuyang avatar Ayose C. avatar Miquel van Smoorenburg avatar Taehoon Moon avatar  avatar zbv avatar  avatar  avatar Chenxi Yuan avatar Clement Rey avatar Ernad Halilović avatar Pierre Lafievre avatar A Dinesh avatar GAURAV avatar Hoang Phan avatar Andrejs Agejevs avatar Rust avatar Pedro Fanha avatar Dmitry Golubets  avatar Paul Kernfeld avatar Dylan DPC avatar Erich Gubler avatar  avatar Ryan James Spencer avatar Daniel G. avatar  avatar  avatar Ivan Dmitrievskii avatar Willi Kappler avatar  avatar Alan Chen avatar Alex avatar Henning Ottesen avatar Sébastien Lerique avatar Sreekumar Thaithara Balan avatar Richard Janis Goldschmidt avatar  avatar Suchin Gururangan avatar Norbert Pozar avatar bluss avatar

Watchers

 avatar Richard Janis Goldschmidt avatar James Cloos avatar  avatar David Tolnay avatar  avatar

streaming-iterator's Issues

Wrong docs links

The readme and crates.io point to docs.rs/streaming_iterator but the crate is published as streaming-iterator with a hyphen.

Implement `try_for_each`?

Is it possible to use fallible items such as StreamingIterator<Item = Result<Page, String>> ? If yes, how do we convert the errors?

It seems that if we use something like item.as_ref()? the error is borrowed and will have a lifetime, which makes it a bit more difficult to e.g. use in external erros such as External(Box<dyn Error + ...>)?

Allow an iterator of borrowed values to be used instead of a streaming iterator

Sometimes when using rust-postgres-binary-copy, which takes values as a streaming iterator, I want to use a slice of borrowed ToSql values. I might not own these values, so I can't give ownership to a streaming iterator in the normal way.

However, since a streaming iterator yields references to the iterator's item anyway, it should be possible to use these APIs without having to provide ownership to the iterator. I've been working around this by implementing the StreamingIterator trait on top of an existing Iterator of references:

use streaming_iterator::StreamingIterator;

pub struct FakeStreamingIterator<'a, I, T>
    where I: Iterator<Item=&'a &'a T>, T: 'a + ?Sized {

    inner: Box<I>,
    current: Option<&'a &'a T>,
}

impl<'a, I, T> FakeStreamingIterator<'a, I, T>
    where I: Iterator<Item=&'a &'a T>, T: ?Sized {

    fn new(inner: I) -> FakeStreamingIterator<'a, I, T> {
        FakeStreamingIterator { inner: Box::new(inner), current: None }
    }
}

impl<'a, I, T> StreamingIterator for FakeStreamingIterator<'a, I, T>
    where I: Iterator<Item=&'a &'a T>, T: ?Sized {

    type Item = T;

    fn advance(&mut self) { self.current = self.inner.next(); }
    fn get(&self) -> Option<&T> { self.current.map(|x| *x) }
}

pub fn convert<'a, I, T>(iterator: I) -> FakeStreamingIterator<'a, I, T>
    where I: Iterator<Item=&'a &'a T>, T: ?Sized {

    FakeStreamingIterator::new(iterator)
}

This then allows me to construct a FakeStreamingIterator from a slice of references, and treat it as a normal StreamingIterator. However, it's a bit of a hack, so I'm curious what the officially supported way to handle this case is — maybe something like my FakeStreamingIterator should be included to support this use case?

Add `get_mut`

I'm not sure why wasn't fn get_mut(&mut self) -> Option<&mut Self::Item>; added already, but it would be great to have it if possible.

add support for enumerate()

Would it be possible to add support for enumerate()? That's one of the things I miss from the standard iterators.

An alternate design for `StreamingIterator` based on HRTBs

The design is this:

pub trait StreamingIterator<'s, ImplicitBound: sealed::Sealed = sealed::ImplicitBounds<'s, Self>> {
    type Item;
    fn next(&'s mut self) -> Option<Self::Item>;
}

mod sealed {
    pub trait Sealed {}
    pub struct ImplicitBounds<'a, T: ?Sized>(&'a T); // T: 'a
    impl<T: ?Sized> Sealed for ImplicitBounds<'_, T> {}
}

Here is a playground of it being used to implement WindowsMut. Note that it is working when neither the iterator nor the iterator's item are 'static.

Note that I have only a vague idea of how this actually works, I'm not an expert on rustc. But the general idea is that the hidden type parameter on the trait effectively gives a where Self: 's bound to the trait, but in a special way that works with HRTBs.

Documentation for `is_done()` may be overly specific

The documentation for is_done() says, "Checks if get() will return None". However, is_done() can be implemented to return true even when get() returns Some. Is the documentation overly specific or is it undefined behavior to implement is_done() such that it can return true when get() returns Some?

P.S. this is relevant to me because I have a use-case where I need to get the final value from a streaming iterator. With the current streaming-iterator API, this requires get() to return Some when is_done() returns true.

Lifetime-based iterator

We would love to use StreamingIterator, but we are in a situation in which we need a lifetime on the item. We are implementing our own version similarly to this:

pub trait StreamingIterator {
    type Item<'b>
    where
        Self: 'b;

    fn get(&self) -> Option<Self::Item<'_>>;
}

That is, we return actually the item, rather than a reference to the item, and the item has a lifetime that we can use to return references inside the item.

It there any way StreamingIterator can be adapted to this case?

Wish: mapping methods that create a normal Iterator

I find it strange that map and filter_map both create a StreamingIterator rather than an Iterator, because their mapped items are not tied to the lifetime of the source. You have to use cloned or owned after mapping to get an iterator by value.

Map and FilterMap could be plain Iterators that directly return the mapped value. One could still use convert to get back to streaming if really wanted. Also cloned and owned could essentially be just map(Clone::clone) and map(ToOwned::to_owned). Of course, this would be a breaking change.

Alternatively, there could be new methods like map_deref, just like map but producing an Iterator.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.