[Java] Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / EventsProvider.java
index 837140207330975af4b0fe280f88b260daa40d57..a46ddd2ca1c8eb6ec4d8532a2f7aa210ac1a64f4 100644 (file)
@@ -4,9 +4,46 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import java.lang.ref.Reference;
+import javax.annotation.Nullable;
 
 /**
- * A trait indicating an object may generate events
+ * A trait indicating an object may generate events.
+ * 
+ * Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
+ * 
+ * Implementations of this trait may also feature an async version of event handling, as shown with
+ * [`ChannelManager::process_pending_events_async`] and
+ * [`ChainMonitor::process_pending_events_async`].
+ * 
+ * # Requirements
+ * 
+ * When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
+ * event since the last invocation.
+ * 
+ * In order to ensure no [`Event`]s are lost, implementors of this trait will persist [`Event`]s
+ * and replay any unhandled events on startup. An [`Event`] is considered handled when
+ * [`process_pending_events`] returns, thus handlers MUST fully handle [`Event`]s and persist any
+ * relevant changes to disk *before* returning.
+ * 
+ * Further, because an application may crash between an [`Event`] being handled and the
+ * implementor of this trait being re-serialized, [`Event`] handling must be idempotent - in
+ * effect, [`Event`]s may be replayed.
+ * 
+ * Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
+ * consult the provider's documentation on the implication of processing events and how a handler
+ * may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
+ * [`ChainMonitor::process_pending_events`]).
+ * 
+ * (C-not implementable) As there is likely no reason for a user to implement this trait on their
+ * own type(s).
+ * 
+ * [`process_pending_events`]: Self::process_pending_events
+ * [`handle_event`]: EventHandler::handle_event
+ * [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
+ * [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
+ * [`ChannelManager::process_pending_events_async`]: crate::ln::channelmanager::ChannelManager::process_pending_events_async
+ * [`ChainMonitor::process_pending_events_async`]: crate::chain::chainmonitor::ChainMonitor::process_pending_events_async
  */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class EventsProvider extends CommonBase {
@@ -21,41 +58,50 @@ public class EventsProvider extends CommonBase {
        protected void finalize() throws Throwable {
                if (ptr != 0) { bindings.EventsProvider_free(ptr); } super.finalize();
        }
-
+       /**
+        * Destroys the object, freeing associated resources. After this call, any access
+        * to this object may result in a SEGFAULT or worse.
+        *
+        * You should generally NEVER call this method. You should let the garbage collector
+        * do this for you when it finalizes objects. However, it may be useful for types
+        * which represent locks and should be closed immediately to avoid holding locks
+        * until the GC runs.
+        */
+       public void destroy() {
+               if (ptr != 0) { bindings.EventsProvider_free(ptr); }
+               ptr = 0;
+       }
        public static interface EventsProviderInterface {
                /**
-                * Gets the list of pending events which were generated by previous actions, clearing the list
-                * in the process.
+                * Processes any events generated since the last call using the given event handler.
+                * 
+                * See the trait-level documentation for requirements.
                 */
-               Event[] get_and_clear_pending_events();
+               void process_pending_events(EventHandler handler);
        }
        private static class LDKEventsProviderHolder { EventsProvider held; }
        public static EventsProvider new_impl(EventsProviderInterface arg) {
                final LDKEventsProviderHolder impl_holder = new LDKEventsProviderHolder();
                impl_holder.held = new EventsProvider(new bindings.LDKEventsProvider() {
-                       @Override public long[] get_and_clear_pending_events() {
-                               Event[] ret = arg.get_and_clear_pending_events();
-                               long[] result = Arrays.stream(ret).mapToLong(ret_conv_7 -> ret_conv_7.ptr).toArray();
-                               /* TODO 2 Event  */;
-                               return result;
+                       @Override public void process_pending_events(long handler) {
+                               EventHandler ret_hu_conv = new EventHandler(null, handler);
+                               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
+                               arg.process_pending_events(ret_hu_conv);
+                               Reference.reachabilityFence(arg);
                        }
                });
                return impl_holder.held;
        }
        /**
-        * Gets the list of pending events which were generated by previous actions, clearing the list
-        * in the process.
+        * Processes any events generated since the last call using the given event handler.
+        * 
+        * See the trait-level documentation for requirements.
         */
-       public Event[] get_and_clear_pending_events() {
-               long[] ret = bindings.EventsProvider_get_and_clear_pending_events(this.ptr);
-               Event[] ret_conv_7_arr = new Event[ret.length];
-               for (int h = 0; h < ret.length; h++) {
-                       long ret_conv_7 = ret[h];
-                       Event ret_conv_7_hu_conv = Event.constr_from_ptr(ret_conv_7);
-                       ret_conv_7_hu_conv.ptrs_to.add(this);
-                       ret_conv_7_arr[h] = ret_conv_7_hu_conv;
-               }
-               return ret_conv_7_arr;
+       public void process_pending_events(org.ldk.structs.EventHandler handler) {
+               bindings.EventsProvider_process_pending_events(this.ptr, handler.ptr);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(handler);
+               if (this != null) { this.ptrs_to.add(handler); };
        }
 
 }