[foreign-memaccess+abi] RFR: 8264176: ResourceScope handles should keep parent scope reachable

Jorn Vernee jvernee at openjdk.java.net
Thu Mar 25 14:18:31 UTC 2021


On Thu, 25 Mar 2021 13:12:22 GMT, Maurizio Cimadamore <mcimadamore at openjdk.org> wrote:

> While ResourceScope handles are handy to ensure that a scope is not closed too soon, they don't do much in order to help preventing the scope to become unreachable. This means that if a scope supports both deterministic and implicit deallocation, there might be cases where using a try-with-resources with a resource scope handle is not enough (as the scope might become unreachable inside the TWR block).
> 
> The solution is to add reachability fences in the various handle implementations, so that the parent scope is kept reachable.
> 
> I've refactored the implementation a bit, to remove the "closeable" flag - which was generally not used (only default scopes and global scope are non closeable). So, I have created a new class which <: SharedScope, `NonCloseableScope`. Both global scope and default scope are subclasses of that. This class recycles the handles it generates - e.g. only one is created, after which the same handle instance is returned.
> 
> An alternative would have been to make NonCloseableScope a subtype of both MemoryScope and ResourceScope.Handle - but that's difficult since both are AutoCloseable and feature a `close` method with different semantics.

Looks good!

-------------

Marked as reviewed by jvernee (Committer).

PR: https://git.openjdk.java.net/panama-foreign/pull/476


More information about the panama-dev mailing list