Details
Assignee
UnassignedUnassignedReporter
Robert VargaRobert VargaLabels
Components
Fix versions
Priority
Medium
Details
Details
Assignee
Unassigned
UnassignedReporter
Robert Varga
Robert VargaLabels
Components
Fix versions
Priority
Created October 6, 2022 at 6:30 PM
Updated July 25, 2024 at 1:27 PM
We are currently using a java.lang.reflect.Proxy to implement Action instances and route them towards a backend. While this works, it also adds quite a bit of ceremony to the invocation, as we could very easily follow CodecDataObject layout to create these proxies.
The key thing to understand here is that yang.binding.Action covers the invocation surface and therefore we can quite sensibly route it through codecs. The only thing we need to generate dynamically is a subclass which ties the (hypothetical) AdapterAction abstract base class and the concrete Binding Action interface – everything else is just default methods and generics (which fizzle at runtime).
This also extends to Rpc adapters.
In order to do this, we will need to factor out the ByteBuddy loading machinery from mdsal-binding-dom-codec, so that it can be reused by mdsal-binding-dom-adapter. That artifact should be named mdsal-binding-loader.