Giter Site home page Giter Site logo

Comments (2)

Marwes avatar Marwes commented on May 27, 2024

Fixed the state issue in #328 but you generally shouldn't call parse_with_state explicitly, just incorporate the take_until_bytes/range parser before your other parser and call parse as normal (let the state be an implementation detail. To drop the output of take_until_bytes you can just wrap that parser with ignore or .map(|_| ())

from combine.

simpsoneric avatar simpsoneric commented on May 27, 2024

Fantastic, thanks for the quick fix! My test case passes the above code and your new issue_327 branch.

Thanks for the insight on letting the state be an implementation detail wrapped by the internal state. I am struggling figure out what data structure I can use as a test source that approach though. For example:

pub fn parser5() {

    let sync = [1u8, 2, 3, 4, 5];
    let prefix_data = [9u8, 9];
    let mut buf = BytesMut::with_capacity(64);

    // Add random prefix data
    buf.extend_from_slice(&prefix_data);

    // Add partial sync sequence
    buf.extend_from_slice(&sync[..sync.len()-1]);

    let mut prefix_parser = take_until_range(&sync[..]);
    {
        // Should be able to drop first items from input stream
        let r  = prefix_parser.parse(PartialStream(&buf[..])); // <-- `buf` immutable borrow first occurs here
        dbg!(r);
    }
    {
        // Add last item from the sync sequence
        buf.put_u8(sync[sync.len()-1]); // <-- Error: cannot borrow mutable due to above immutable borrow

        let r  = prefix_parser.parse(PartialStream(&buf[..]));
        dbg!(r);
    }
}

If you don't mind giving some advice on how this should be approached, I'd appreciate it. Otherwise, I'll start digging around the code/docs some more.

from combine.

Related Issues (20)

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.