Bindings updates
[ldk-java] / src / main / java / org / ldk / structs / ChannelMessageHandler.java
index 4ad07c9a7a4eeed41a31fb4dba41ec5b1aabcb79..060133855ae1117c56add57e5cf0a659e0bf9cdf 100644 (file)
@@ -7,18 +7,154 @@ import java.util.Arrays;
 
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class ChannelMessageHandler extends CommonBase {
-       ChannelMessageHandler(Object _dummy, long ptr) { super(ptr); }
-       public ChannelMessageHandler(bindings.LDKChannelMessageHandler arg, bindings.LDKMessageSendEventsProvider MessageSendEventsProvider) {
+       final bindings.LDKChannelMessageHandler bindings_instance;
+       ChannelMessageHandler(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }
+       private ChannelMessageHandler(bindings.LDKChannelMessageHandler arg, bindings.LDKMessageSendEventsProvider MessageSendEventsProvider) {
                super(bindings.LDKChannelMessageHandler_new(arg, MessageSendEventsProvider));
                this.ptrs_to.add(arg);
+               this.ptrs_to.add(MessageSendEventsProvider);
+               this.bindings_instance = arg;
        }
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
-               bindings.ChannelMessageHandler_free(ptr); super.finalize();
+               if (ptr != 0) { bindings.ChannelMessageHandler_free(ptr); } super.finalize();
+       }
+
+       public static interface ChannelMessageHandlerInterface {
+               void handle_open_channel(byte[] their_node_id, InitFeatures their_features, OpenChannel msg);
+               void handle_accept_channel(byte[] their_node_id, InitFeatures their_features, AcceptChannel msg);
+               void handle_funding_created(byte[] their_node_id, FundingCreated msg);
+               void handle_funding_signed(byte[] their_node_id, FundingSigned msg);
+               void handle_funding_locked(byte[] their_node_id, FundingLocked msg);
+               void handle_shutdown(byte[] their_node_id, Shutdown msg);
+               void handle_closing_signed(byte[] their_node_id, ClosingSigned msg);
+               void handle_update_add_htlc(byte[] their_node_id, UpdateAddHTLC msg);
+               void handle_update_fulfill_htlc(byte[] their_node_id, UpdateFulfillHTLC msg);
+               void handle_update_fail_htlc(byte[] their_node_id, UpdateFailHTLC msg);
+               void handle_update_fail_malformed_htlc(byte[] their_node_id, UpdateFailMalformedHTLC msg);
+               void handle_commitment_signed(byte[] their_node_id, CommitmentSigned msg);
+               void handle_revoke_and_ack(byte[] their_node_id, RevokeAndACK msg);
+               void handle_update_fee(byte[] their_node_id, UpdateFee msg);
+               void handle_announcement_signatures(byte[] their_node_id, AnnouncementSignatures msg);
+               void peer_disconnected(byte[] their_node_id, boolean no_connection_possible);
+               void peer_connected(byte[] their_node_id, Init msg);
+               void handle_channel_reestablish(byte[] their_node_id, ChannelReestablish msg);
+               void handle_error(byte[] their_node_id, ErrorMessage msg);
+       }
+       private static class LDKChannelMessageHandlerHolder { ChannelMessageHandler held; }
+       public static ChannelMessageHandler new_impl(ChannelMessageHandlerInterface arg, MessageSendEventsProvider.MessageSendEventsProviderInterface MessageSendEventsProvider_impl) {
+               final LDKChannelMessageHandlerHolder impl_holder = new LDKChannelMessageHandlerHolder();
+               impl_holder.held = new ChannelMessageHandler(new bindings.LDKChannelMessageHandler() {
+                       @Override public void handle_open_channel(byte[] their_node_id, long their_features, long msg) {
+                               InitFeatures their_features_hu_conv = new InitFeatures(null, their_features);
+                               their_features_hu_conv.ptrs_to.add(this);
+                               OpenChannel msg_hu_conv = new OpenChannel(null, msg);
+                               arg.handle_open_channel(their_node_id, their_features_hu_conv, msg_hu_conv);
+                       }
+                       @Override public void handle_accept_channel(byte[] their_node_id, long their_features, long msg) {
+                               InitFeatures their_features_hu_conv = new InitFeatures(null, their_features);
+                               their_features_hu_conv.ptrs_to.add(this);
+                               AcceptChannel msg_hu_conv = new AcceptChannel(null, msg);
+                               arg.handle_accept_channel(their_node_id, their_features_hu_conv, msg_hu_conv);
+                       }
+                       @Override public void handle_funding_created(byte[] their_node_id, long msg) {
+                               FundingCreated msg_hu_conv = new FundingCreated(null, msg);
+                               arg.handle_funding_created(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_funding_signed(byte[] their_node_id, long msg) {
+                               FundingSigned msg_hu_conv = new FundingSigned(null, msg);
+                               arg.handle_funding_signed(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_funding_locked(byte[] their_node_id, long msg) {
+                               FundingLocked msg_hu_conv = new FundingLocked(null, msg);
+                               arg.handle_funding_locked(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_shutdown(byte[] their_node_id, long msg) {
+                               Shutdown msg_hu_conv = new Shutdown(null, msg);
+                               arg.handle_shutdown(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_closing_signed(byte[] their_node_id, long msg) {
+                               ClosingSigned msg_hu_conv = new ClosingSigned(null, msg);
+                               arg.handle_closing_signed(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_update_add_htlc(byte[] their_node_id, long msg) {
+                               UpdateAddHTLC msg_hu_conv = new UpdateAddHTLC(null, msg);
+                               arg.handle_update_add_htlc(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_update_fulfill_htlc(byte[] their_node_id, long msg) {
+                               UpdateFulfillHTLC msg_hu_conv = new UpdateFulfillHTLC(null, msg);
+                               arg.handle_update_fulfill_htlc(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_update_fail_htlc(byte[] their_node_id, long msg) {
+                               UpdateFailHTLC msg_hu_conv = new UpdateFailHTLC(null, msg);
+                               arg.handle_update_fail_htlc(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_update_fail_malformed_htlc(byte[] their_node_id, long msg) {
+                               UpdateFailMalformedHTLC msg_hu_conv = new UpdateFailMalformedHTLC(null, msg);
+                               arg.handle_update_fail_malformed_htlc(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_commitment_signed(byte[] their_node_id, long msg) {
+                               CommitmentSigned msg_hu_conv = new CommitmentSigned(null, msg);
+                               arg.handle_commitment_signed(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_revoke_and_ack(byte[] their_node_id, long msg) {
+                               RevokeAndACK msg_hu_conv = new RevokeAndACK(null, msg);
+                               arg.handle_revoke_and_ack(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_update_fee(byte[] their_node_id, long msg) {
+                               UpdateFee msg_hu_conv = new UpdateFee(null, msg);
+                               arg.handle_update_fee(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_announcement_signatures(byte[] their_node_id, long msg) {
+                               AnnouncementSignatures msg_hu_conv = new AnnouncementSignatures(null, msg);
+                               arg.handle_announcement_signatures(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void peer_disconnected(byte[] their_node_id, boolean no_connection_possible) {
+                               arg.peer_disconnected(their_node_id, no_connection_possible);
+                       }
+                       @Override public void peer_connected(byte[] their_node_id, long msg) {
+                               Init msg_hu_conv = new Init(null, msg);
+                               arg.peer_connected(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_channel_reestablish(byte[] their_node_id, long msg) {
+                               ChannelReestablish msg_hu_conv = new ChannelReestablish(null, msg);
+                               arg.handle_channel_reestablish(their_node_id, msg_hu_conv);
+                       }
+                       @Override public void handle_error(byte[] their_node_id, long msg) {
+                               ErrorMessage msg_hu_conv = new ErrorMessage(null, msg);
+                               arg.handle_error(their_node_id, msg_hu_conv);
+                       }
+               }, MessageSendEventsProvider.new_impl(MessageSendEventsProvider_impl).bindings_instance);
+               return impl_holder.held;
+       }
+       public void handle_open_channel(byte[] their_node_id, InitFeatures their_features, OpenChannel msg) {
+               bindings.ChannelMessageHandler_handle_open_channel(this.ptr, their_node_id, their_features == null ? 0 : their_features.ptr & ~1, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(their_features);
+               // Due to rust's strict-ownership memory model, in some cases we need to "move"
+               // an object to pass exclusive ownership to the function being called.
+               // In most cases, we avoid this being visible in GC'd languages by cloning the object
+               // at the FFI layer, creating a new object which Rust can claim ownership of
+               // However, in some cases (eg here), there is no way to clone an object, and thus
+               // we actually have to pass full ownership to Rust.
+               // Thus, after this call, their_features is reset to null and is now a dummy object.
+               their_features.ptr = 0;
+               this.ptrs_to.add(msg);
+       }
+
+       public void handle_accept_channel(byte[] their_node_id, InitFeatures their_features, AcceptChannel msg) {
+               bindings.ChannelMessageHandler_handle_accept_channel(this.ptr, their_node_id, their_features == null ? 0 : their_features.ptr & ~1, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(their_features);
+               // Due to rust's strict-ownership memory model, in some cases we need to "move"
+               // an object to pass exclusive ownership to the function being called.
+               // In most cases, we avoid this being visible in GC'd languages by cloning the object
+               // at the FFI layer, creating a new object which Rust can claim ownership of
+               // However, in some cases (eg here), there is no way to clone an object, and thus
+               // we actually have to pass full ownership to Rust.
+               // Thus, after this call, their_features is reset to null and is now a dummy object.
+               their_features.ptr = 0;
+               this.ptrs_to.add(msg);
        }
 
-       // Skipped ChannelMessageHandler_handle_open_channel
-       // Skipped ChannelMessageHandler_handle_accept_channel
        public void handle_funding_created(byte[] their_node_id, FundingCreated msg) {
                bindings.ChannelMessageHandler_handle_funding_created(this.ptr, their_node_id, msg == null ? 0 : msg.ptr & ~1);
                this.ptrs_to.add(msg);