title | _description |
---|---|
JVM callbacks within Netdroid powered code |
Describes how to manage callbacks from JVM using the Android suite for .NET |
One of the features of JCOBridge, used in Netdroid, is the callback management from JVM. Many applications use the callback mechanism to be informed about events which happens during execution. Apache Kakfa exposes many API which have callbacks in the parameters. The Java code of a callback can be written with lambda expressions, but Netdroid cannot, it needs an object.
Netdroid is based on JCOBridge. JCOBridge as per its name is a bridge between the CLR (CoreCLR) and the JVM. Events, generally are expressed as interfaces in Java, and a lambda expression is translated into an object at compile time. Otherwise the developer can implement a Java class which implements the interface: with JCOBridge the developer needs to follow a seamless approach. In Netdroid some callbacks are ready made. In this tutorial the Predicate interface (java.util.function.Predicate) will be taken as an example. The concrete class implementing the interface is the following one:
public final class Predicate extends JCListener implements java.util.function.Predicate {
public Predicate(String key) throws JCNativeException {
super(key);
}
@Override
public boolean test(Object e) {
raiseEvent("test", e);
Object retVal = getReturnData();
return (boolean) retVal;
}
}
The structure follows the guidelines of JCOBridge:
- It must
extends
the base classJCListener
(orimplements
the interfaceIJCListener
): this is a constraint of JCOBridge;JCListener
has many ready made methods; if the callback is not based on an interface the developer canimplements
theIJCListener
; - The concrete class must have at least a constructor accepting a String;
- Within the implementation of the interface method (in this case the method
test
of thePredicate
interface) the methodraiseEvent
informs the CLR that a method was raised using the specific key (test in this case) along with all associated objects:- If the interface has many methods each one must have its own
raiseEvent
call; - The key used from raiseEvent is not mandatory to be equal to the name of the calling method, it is only a convention for the mapping: this will be more clear looking at the C# code.
- If the interface has many methods each one must have its own
Now there is a concrete class within the JVM space. Going on to the CLR side a possible concrete class in C# is as the following one:
public class Predicate<TObject> : JVMBridgeListener
{
public override string ClassName => "org.mases.netdroid.developed.java.util.function.Predicate";
Func<TObject, bool> executionFunction = null;
public virtual Func<TObject, bool> OnTest { get { return executionFunction; } }
public Predicate(Func<TObject, bool> func = null, bool attachEventHandler = true)
{
if (func != null) executionFunction = func;
else executionFunction = Test;
if (attachEventHandler)
{
AddEventHandler("test", new EventHandler<CLRListenerEventArgs<CLREventData<TObject>>>(EventHandler));
}
}
void EventHandler(object sender, CLRListenerEventArgs<CLREventData<TObject>> data)
{
var retVal = OnTest(data.EventData.TypedEventData);
data.SetReturnValue(retVal);
}
public virtual bool Test(TObject obj) { return false; }
}
The structure follows the guidelines of JCOBridge:
- It must
extends
the base classJVMBridgeListener
: this is a constraint of JCOBridge;JVMBridgeListener
contains all the functionality to handle events from the JVM; - The
ClassName
property informs the base class about the concrete class in JVM associated to this event handler; - Within the constructor the method
AddEventHandler
registers a .NETEventHandler
associated to the method in JVM; look at the key string: it is the same used from the JVM;- The costructor of the code above accept in input an
Func
which permits to write lambda expression in C#; - The code above associate a private handler with specific data type:
CLRListenerEventArgs
is mandatory and it is used fromJVMBridgeListener
;TObject
represents the CLR version of the correspondingTObject
within the JVM;
- The costructor of the code above accept in input an
- On callback invocation (
test
in this case) the CLR will invokeEventHandler
:- The first parameter is directly reported using the
TypedEventData
property; - On completion the result is reported back to the JVM using the
SetReturnValue
function;
- The first parameter is directly reported using the
- Other pieces of the class are useful in other condition:
- Creating a new class extending
Callback
class, the methodOnTest
can be overridden; - Otherwise to the property
OnTest
can be associated to an handler;
- Creating a new class extending
The lifecycle of the callback managed from JCOBridge is slightly different from the standard one.
To avoid the Garbage Collector collects an instance of JVMBridgeListener
it shall be registered. JVMBridgeListener
do this automatically within the initialization (this behavior can be avoided using the property AutoInit
).
So at the end of its use it must be disposed to avoid a resource leak. In the example below there is a using clause and the class is instantiated only one time.
A correct approach is like the following:
using (var handler = new Predicate<int>((o1) =>
{
if (o1 > 10) return true;
return false;
}))
{
while (!resetEvent.WaitOne(0))
{
if (o.CanSend(i, handler)) o.Send(i);
i++;
}
}
while with an approach like the following one:
var result = o.CanSend(i, new Predicate<int>((o1) =>
{
if (o1 > 10) return true;
return false;
}));
there are two main drawbacks:
- it creates a resource leak because the object instance related to
Predicate<int>
cannot be programmatically disposed; - on each cycle, the engine shall allocate the infrastructure to handle events from the JVM.