Coder Social home page Coder Social logo

Support FUSE_INTERRUPT about fuser HOT 3 OPEN

cberner avatar cberner commented on June 25, 2024
Support FUSE_INTERRUPT

from fuser.

Comments (3)

wmanley avatar wmanley commented on June 25, 2024

I think FUSE_INTERRUPT could work really well with an async API runner. It would look something like:

let in_flight = HashMap<RequestId, JoinHandle<()>>::new();
let future_cancellations = Set<RequestId>::new();
for req in requests {
    if future_cancellations.contains(req.request_id()) {
        future_cancellations.pop(req.request_id());
        continue;
    }
    match req.operation() {
        Interrupt(x) => in_flight.pop(x.cancelled_id()).abort() || future_cancellations.push(x.cancelled_id());
    }
    in_flight[req.request_id()] = tokio::spawn(|| {
        handler(req);
        in_flight.pop(req.request_id());
    });
}

So interrupted pending tasks would be aborted, and their futures dropped in response to FUSE_INTERRUPT messages. It fits naturally with the async API.

from fuser.

cberner avatar cberner commented on June 25, 2024

Ya, agreed! I'd love to see an async implementation :)

from fuser.

cberner avatar cberner commented on June 25, 2024

Note to self, for the future: I looked into implementing this in the current API, and it doesn't make sense. FUSE_INTERRUPT is for interrupting code that's hung in userspace. However, the current Filesystem interface takes &mut self so concurrent calls aren't possible. Revisit it after async is implemented

from fuser.

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.