Coder Social home page Coder Social logo

failchain's Issues

Story with futures

It's real nice having result.chain_err(|| ...) for your results but then when using code involving futures you end up having to go back to

future.map_err(|e| -> MyError {
    let kind = ...;
    e.context(kind).into()
})

In order to get around this, I made a variant of ResultExt that works for futures (0.1 for now):

pub trait FutureExt<S, E: Fail>: Sized + Future<Item = S, Error = E> {
    fn chain_inspect_err_fut<ErrorKindT: ChainErrorKind>(
        self,
        fn_in: impl FnOnce(&mut E) -> ErrorKindT + Send + Sync + 'static,
    ) -> MapErr<Self, Box<dyn FnOnce(E) -> ErrorKindT::Error + Send + Sync>> {
        self.map_err(Box::new(|mut e| {
            let kind = fn_in(&mut e);
            e.context(kind).into()
        }))
    }

    fn chain_err_fut<ErrorKindT: ChainErrorKind>(
        self,
        fn_in: impl FnOnce() -> ErrorKindT + Send + Sync + 'static,
    ) -> MapErr<Self, Box<dyn FnOnce(E) -> ErrorKindT::Error + Send + Sync>> {
        self.chain_inspect_err_fut(|_| fn_in())
    }
}

impl<S, E: Fail, F: Future<Item = S, Error = E>> FutureExt<S, E> for F {}

// used like:
    client
        .request(request)
        .chain_err_fut(|| ErrorKind::OtherError("foo".to_owned()))

Some immediate issues:

  • I need Send + Sync + 'static and need to enforce them, maybe some use cases don't
  • Hard coded to futures-0.1, but I think we wouldn't be able to make it more general until HKT
  • Boxing because you can't use impl Fn in traits.

Is there any interest here? I'm using it and it seems handy. Maybe there's a better discussion to be had in failure's ResultExt which could have the same pattern?

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.