jnr.ffi.provider.DefaultObjectReferenceManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-ffi Show documentation
Show all versions of jnr-ffi Show documentation
A library for invoking native functions from java
package jnr.ffi.provider;
import jnr.ffi.ObjectReferenceManager;
import jnr.ffi.Pointer;
import jnr.ffi.Runtime;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
*
*/
public final class DefaultObjectReferenceManager extends ObjectReferenceManager {
private final Runtime runtime;
private final ConcurrentMap references = new ConcurrentHashMap();
public DefaultObjectReferenceManager(Runtime runtime) {
this.runtime = runtime;
}
public Pointer newReference(Object obj) {
if (obj == null) {
throw new IllegalArgumentException("reference to null value not allowed");
}
int nextId = System.identityHashCode(obj);
ObjectReference ptr;
while (references.putIfAbsent(ptr = new ObjectReference(runtime, nextId), obj) != null) {
// A collision on the identity hash is extremely rare, but possible, so probe for a vacant slot
++nextId;
}
return ptr;
}
public void freeReference(Pointer reference) {
references.remove(reference);
}
public Object getObject(Pointer reference) {
return references.get(reference);
}
private static final class ObjectReference extends InAccessibleMemoryIO {
private final long address;
public ObjectReference(jnr.ffi.Runtime runtime, int address) {
super(runtime);
this.address = address & 0xffffffffL;
}
public boolean isDirect() {
return true;
}
public long address() {
return address;
}
public long size() {
return 0;
}
@Override
public int hashCode() {
return (int) address;
}
@Override
public boolean equals(Object obj) {
return obj instanceof Pointer && ((Pointer) obj).address() == address;
}
}
}