Code Monkey home page Code Monkey logo

Comments (2)

rib avatar rib commented on June 20, 2024

Ah, tricky.

Yeah the implementation seems to try and mirror how the C API lets you redundantly call AttachCurrentThread and it will be a NOP that just return the JNIEnv in that case.

The implementation of attach_current_thread() sees when the attach is redundant and in that case it returns a guard that won't do anything on Drop. (so it's not exactly that there's any detailed consideration of lifo ordering except that the first guard that really does attach the thread will be the only guard that does anything on Drop)

I'm not exactly sure why it was implemented this way but I guess it was the simplest approach that reflected how the C API works.

It looks like there needs to be a per-thread ref-count for these guards to work like this.

With needing to have a thread-local reference counter that also makes me wonder what hazards there could be if there are multiple versions of the jni crate linked into one application - each with a private set of thread-local variables.

Similar to the current implementation I think there would need to be some kind of special case to recognize if the first attach increment for the thread was redundant (another version of the jni crate or some other non-Rust code might have attached the thread) and we'd probably have to just assume something else will be responsible for detaching the thread in this case.

from jni-rs.

rib avatar rib commented on June 20, 2024

For reference also see this recent discussion around the soundness of APIs that return a JNIEnv here: #436 (reply in thread)

from jni-rs.

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.