[Java] Update auto-generated Java bindings
[ldk-java] / src / main / java / org / ldk / structs / CustomOnionMessageHandler.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10 /**
11  * Handler for custom onion messages. If you are using [`SimpleArcOnionMessenger`],
12  * [`SimpleRefOnionMessenger`], or prefer to ignore inbound custom onion messages,
13  * [`IgnoringMessageHandler`] must be provided to [`OnionMessenger::new`]. Otherwise, a custom
14  * implementation of this trait must be provided, with [`CustomMessage`] specifying the supported
15  * message types.
16  * 
17  * See [`OnionMessenger`] for example usage.
18  * 
19  * [`IgnoringMessageHandler`]: crate::ln::peer_handler::IgnoringMessageHandler
20  * [`CustomMessage`]: Self::CustomMessage
21  */
22 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
23 public class CustomOnionMessageHandler extends CommonBase {
24         final bindings.LDKCustomOnionMessageHandler bindings_instance;
25         CustomOnionMessageHandler(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }
26         private CustomOnionMessageHandler(bindings.LDKCustomOnionMessageHandler arg) {
27                 super(bindings.LDKCustomOnionMessageHandler_new(arg));
28                 this.ptrs_to.add(arg);
29                 this.bindings_instance = arg;
30         }
31         @Override @SuppressWarnings("deprecation")
32         protected void finalize() throws Throwable {
33                 if (ptr != 0) { bindings.CustomOnionMessageHandler_free(ptr); } super.finalize();
34         }
35         /**
36          * Destroys the object, freeing associated resources. After this call, any access
37          * to this object may result in a SEGFAULT or worse.
38          *
39          * You should generally NEVER call this method. You should let the garbage collector
40          * do this for you when it finalizes objects. However, it may be useful for types
41          * which represent locks and should be closed immediately to avoid holding locks
42          * until the GC runs.
43          */
44         public void destroy() {
45                 if (ptr != 0) { bindings.CustomOnionMessageHandler_free(ptr); }
46                 ptr = 0;
47         }
48         public static interface CustomOnionMessageHandlerInterface {
49                 /**
50                  * Called with the custom message that was received.
51                  */
52                 void handle_custom_message(CustomOnionMessageContents msg);
53                 /**
54                  * Read a custom message of type `message_type` from `buffer`, returning `Ok(None)` if the
55                  * message type is unknown.
56                  */
57                 Result_COption_CustomOnionMessageContentsZDecodeErrorZ read_custom_message(long message_type, byte[] buffer);
58         }
59         private static class LDKCustomOnionMessageHandlerHolder { CustomOnionMessageHandler held; }
60         public static CustomOnionMessageHandler new_impl(CustomOnionMessageHandlerInterface arg) {
61                 final LDKCustomOnionMessageHandlerHolder impl_holder = new LDKCustomOnionMessageHandlerHolder();
62                 impl_holder.held = new CustomOnionMessageHandler(new bindings.LDKCustomOnionMessageHandler() {
63                         @Override public void handle_custom_message(long msg) {
64                                 CustomOnionMessageContents ret_hu_conv = new CustomOnionMessageContents(null, msg);
65                                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
66                                 arg.handle_custom_message(ret_hu_conv);
67                                 Reference.reachabilityFence(arg);
68                         }
69                         @Override public long read_custom_message(long message_type, byte[] buffer) {
70                                 Result_COption_CustomOnionMessageContentsZDecodeErrorZ ret = arg.read_custom_message(message_type, buffer);
71                                 Reference.reachabilityFence(arg);
72                                 long result = ret == null ? 0 : ret.clone_ptr();
73                                 return result;
74                         }
75                 });
76                 return impl_holder.held;
77         }
78         /**
79          * Called with the custom message that was received.
80          */
81         public void handle_custom_message(org.ldk.structs.CustomOnionMessageContents msg) {
82                 bindings.CustomOnionMessageHandler_handle_custom_message(this.ptr, msg == null ? 0 : msg.ptr);
83                 Reference.reachabilityFence(this);
84                 Reference.reachabilityFence(msg);
85                 if (this != null) { this.ptrs_to.add(msg); };
86         }
87
88         /**
89          * Read a custom message of type `message_type` from `buffer`, returning `Ok(None)` if the
90          * message type is unknown.
91          */
92         public Result_COption_CustomOnionMessageContentsZDecodeErrorZ read_custom_message(long message_type, byte[] buffer) {
93                 long ret = bindings.CustomOnionMessageHandler_read_custom_message(this.ptr, message_type, buffer);
94                 Reference.reachabilityFence(this);
95                 Reference.reachabilityFence(message_type);
96                 Reference.reachabilityFence(buffer);
97                 if (ret >= 0 && ret <= 4096) { return null; }
98                 Result_COption_CustomOnionMessageContentsZDecodeErrorZ ret_hu_conv = Result_COption_CustomOnionMessageContentsZDecodeErrorZ.constr_from_ptr(ret);
99                 return ret_hu_conv;
100         }
101
102 }