[Java] Update auto-generated bindings to 0.0.117
[ldk-java] / src / main / java / org / ldk / structs / LockableScore.java
index 4cb8fdaee56415f7bc5181eb943f219e91752cf7..4a03833cdf448cb9ba6f60444bf9baf642f9fa57 100644 (file)
@@ -4,46 +4,98 @@ 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 scorer that is accessed under a lock.
  * 
- * Needed so that calls to [`Score::channel_penalty_msat`] in [`find_route`] can be made while
- * having shared ownership of a scorer but without requiring internal locking in [`Score`]
+ * Needed so that calls to [`ScoreLookUp::channel_penalty_msat`] in [`find_route`] can be made while
+ * having shared ownership of a scorer but without requiring internal locking in [`ScoreUpdate`]
  * implementations. Internal locking would be detrimental to route finding performance and could
- * result in [`Score::channel_penalty_msat`] returning a different value for the same channel.
+ * result in [`ScoreLookUp::channel_penalty_msat`] returning a different value for the same channel.
  * 
  * [`find_route`]: crate::routing::router::find_route
  */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class LockableScore extends CommonBase {
-       LockableScore(Object _dummy, long ptr) { super(ptr); }
+       final bindings.LDKLockableScore bindings_instance;
+       LockableScore(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }
+       private LockableScore(bindings.LDKLockableScore arg) {
+               super(bindings.LDKLockableScore_new(arg));
+               this.ptrs_to.add(arg);
+               this.bindings_instance = arg;
+       }
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
-               super.finalize();
+               if (ptr != 0) { bindings.LockableScore_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.LockableScore_free(ptr); }
+               ptr = 0;
+       }
+       public static interface LockableScoreInterface {
+               /**
+                * Returns read locked scorer.
+                */
+               ScoreLookUp read_lock();
+               /**
+                * Returns write locked scorer.
+                */
+               ScoreUpdate write_lock();
+       }
+       private static class LDKLockableScoreHolder { LockableScore held; }
+       public static LockableScore new_impl(LockableScoreInterface arg) {
+               final LDKLockableScoreHolder impl_holder = new LDKLockableScoreHolder();
+               impl_holder.held = new LockableScore(new bindings.LDKLockableScore() {
+                       @Override public long read_lock() {
+                               ScoreLookUp ret = arg.read_lock();
+                               Reference.reachabilityFence(arg);
+                               long result = ret.ptr;
+                               if (impl_holder.held != null) { impl_holder.held.ptrs_to.add(ret); };
+                               return result;
+                       }
+                       @Override public long write_lock() {
+                               ScoreUpdate ret = arg.write_lock();
+                               Reference.reachabilityFence(arg);
+                               long result = ret.ptr;
+                               if (impl_holder.held != null) { impl_holder.held.ptrs_to.add(ret); };
+                               return result;
+                       }
+               });
+               return impl_holder.held;
        }
-
        /**
-        * Constructs a new LockableScore from a Score
+        * Returns read locked scorer.
         */
-       public static LockableScore of(Score score) {
-               long ret = bindings.LockableScore_new(score == null ? 0 : score.ptr);
+       public ScoreLookUp read_lock() {
+               long ret = bindings.LockableScore_read_lock(this.ptr);
+               Reference.reachabilityFence(this);
                if (ret >= 0 && ret <= 4096) { return null; }
-               LockableScore ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new LockableScore(null, ret); }
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
-               ret_hu_conv.ptrs_to.add(score);
+               ScoreLookUp ret_hu_conv = new ScoreLookUp(null, ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
                return ret_hu_conv;
        }
 
        /**
-        * Serialize the LockableScore object into a byte array which can be read by LockableScore_read
+        * Returns write locked scorer.
         */
-       public byte[] write() {
-               byte[] ret = bindings.LockableScore_write(this.ptr);
-               return ret;
+       public ScoreUpdate write_lock() {
+               long ret = bindings.LockableScore_write_lock(this.ptr);
+               Reference.reachabilityFence(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               ScoreUpdate ret_hu_conv = new ScoreUpdate(null, ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
+               return ret_hu_conv;
        }
 
 }