Skip to content

Commit 23a5c68

Browse files
committed
[Java] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
1 parent 23e0cfd commit 23a5c68

38 files changed

+27248
-21333
lines changed

src/main/java/org/ldk/impl/bindings.java

+559-287
Large diffs are not rendered by default.

src/main/java/org/ldk/structs/ChannelDetails.java

+129
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
/**
1212
* Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
13+
*
14+
* [`ChannelManager::list_channels`]: crate::ln::channelmanager::ChannelManager::list_channels
15+
* [`ChannelManager::list_usable_channels`]: crate::ln::channelmanager::ChannelManager::list_usable_channels
1316
*/
1417
@SuppressWarnings("unchecked") // We correctly assign various generic arrays
1518
public class ChannelDetails extends CommonBase {
@@ -828,6 +831,130 @@ public void set_config(@Nullable org.ldk.structs.ChannelConfig val) {
828831
if (this != null) { this.ptrs_to.add(val); };
829832
}
830833

834+
/**
835+
* Pending inbound HTLCs.
836+
*
837+
* This field is empty for objects serialized with LDK versions prior to 0.0.122.
838+
*/
839+
public InboundHTLCDetails[] get_pending_inbound_htlcs() {
840+
long[] ret = bindings.ChannelDetails_get_pending_inbound_htlcs(this.ptr);
841+
Reference.reachabilityFence(this);
842+
int ret_conv_20_len = ret.length;
843+
InboundHTLCDetails[] ret_conv_20_arr = new InboundHTLCDetails[ret_conv_20_len];
844+
for (int u = 0; u < ret_conv_20_len; u++) {
845+
long ret_conv_20 = ret[u];
846+
org.ldk.structs.InboundHTLCDetails ret_conv_20_hu_conv = null; if (ret_conv_20 < 0 || ret_conv_20 > 4096) { ret_conv_20_hu_conv = new org.ldk.structs.InboundHTLCDetails(null, ret_conv_20); }
847+
if (ret_conv_20_hu_conv != null) { ret_conv_20_hu_conv.ptrs_to.add(this); };
848+
ret_conv_20_arr[u] = ret_conv_20_hu_conv;
849+
}
850+
return ret_conv_20_arr;
851+
}
852+
853+
/**
854+
* Pending inbound HTLCs.
855+
*
856+
* This field is empty for objects serialized with LDK versions prior to 0.0.122.
857+
*/
858+
public void set_pending_inbound_htlcs(InboundHTLCDetails[] val) {
859+
bindings.ChannelDetails_set_pending_inbound_htlcs(this.ptr, val != null ? Arrays.stream(val).mapToLong(val_conv_20 -> val_conv_20.ptr).toArray() : null);
860+
Reference.reachabilityFence(this);
861+
Reference.reachabilityFence(val);
862+
for (InboundHTLCDetails val_conv_20: val) { if (this != null) { this.ptrs_to.add(val_conv_20); }; };
863+
}
864+
865+
/**
866+
* Pending outbound HTLCs.
867+
*
868+
* This field is empty for objects serialized with LDK versions prior to 0.0.122.
869+
*/
870+
public OutboundHTLCDetails[] get_pending_outbound_htlcs() {
871+
long[] ret = bindings.ChannelDetails_get_pending_outbound_htlcs(this.ptr);
872+
Reference.reachabilityFence(this);
873+
int ret_conv_21_len = ret.length;
874+
OutboundHTLCDetails[] ret_conv_21_arr = new OutboundHTLCDetails[ret_conv_21_len];
875+
for (int v = 0; v < ret_conv_21_len; v++) {
876+
long ret_conv_21 = ret[v];
877+
org.ldk.structs.OutboundHTLCDetails ret_conv_21_hu_conv = null; if (ret_conv_21 < 0 || ret_conv_21 > 4096) { ret_conv_21_hu_conv = new org.ldk.structs.OutboundHTLCDetails(null, ret_conv_21); }
878+
if (ret_conv_21_hu_conv != null) { ret_conv_21_hu_conv.ptrs_to.add(this); };
879+
ret_conv_21_arr[v] = ret_conv_21_hu_conv;
880+
}
881+
return ret_conv_21_arr;
882+
}
883+
884+
/**
885+
* Pending outbound HTLCs.
886+
*
887+
* This field is empty for objects serialized with LDK versions prior to 0.0.122.
888+
*/
889+
public void set_pending_outbound_htlcs(OutboundHTLCDetails[] val) {
890+
bindings.ChannelDetails_set_pending_outbound_htlcs(this.ptr, val != null ? Arrays.stream(val).mapToLong(val_conv_21 -> val_conv_21.ptr).toArray() : null);
891+
Reference.reachabilityFence(this);
892+
Reference.reachabilityFence(val);
893+
for (OutboundHTLCDetails val_conv_21: val) { if (this != null) { this.ptrs_to.add(val_conv_21); }; };
894+
}
895+
896+
/**
897+
* Constructs a new ChannelDetails given each field
898+
*
899+
* Note that funding_txo_arg (or a relevant inner pointer) may be NULL or all-0s to represent None
900+
* Note that channel_type_arg (or a relevant inner pointer) may be NULL or all-0s to represent None
901+
* Note that config_arg (or a relevant inner pointer) may be NULL or all-0s to represent None
902+
*/
903+
public static ChannelDetails of(org.ldk.structs.ChannelId channel_id_arg, org.ldk.structs.ChannelCounterparty counterparty_arg, @Nullable org.ldk.structs.OutPoint funding_txo_arg, @Nullable org.ldk.structs.ChannelTypeFeatures channel_type_arg, org.ldk.structs.Option_u64Z short_channel_id_arg, org.ldk.structs.Option_u64Z outbound_scid_alias_arg, org.ldk.structs.Option_u64Z inbound_scid_alias_arg, long channel_value_satoshis_arg, org.ldk.structs.Option_u64Z unspendable_punishment_reserve_arg, org.ldk.util.UInt128 user_channel_id_arg, org.ldk.structs.Option_u32Z feerate_sat_per_1000_weight_arg, long balance_msat_arg, long outbound_capacity_msat_arg, long next_outbound_htlc_limit_msat_arg, long next_outbound_htlc_minimum_msat_arg, long inbound_capacity_msat_arg, org.ldk.structs.Option_u32Z confirmations_required_arg, org.ldk.structs.Option_u32Z confirmations_arg, org.ldk.structs.Option_u16Z force_close_spend_delay_arg, boolean is_outbound_arg, boolean is_channel_ready_arg, org.ldk.structs.Option_ChannelShutdownStateZ channel_shutdown_state_arg, boolean is_usable_arg, boolean is_public_arg, org.ldk.structs.Option_u64Z inbound_htlc_minimum_msat_arg, org.ldk.structs.Option_u64Z inbound_htlc_maximum_msat_arg, @Nullable org.ldk.structs.ChannelConfig config_arg, InboundHTLCDetails[] pending_inbound_htlcs_arg, OutboundHTLCDetails[] pending_outbound_htlcs_arg) {
904+
long ret = bindings.ChannelDetails_new(channel_id_arg.ptr, counterparty_arg.ptr, funding_txo_arg == null ? 0 : funding_txo_arg.ptr, channel_type_arg == null ? 0 : channel_type_arg.ptr, short_channel_id_arg.ptr, outbound_scid_alias_arg.ptr, inbound_scid_alias_arg.ptr, channel_value_satoshis_arg, unspendable_punishment_reserve_arg.ptr, user_channel_id_arg.getLEBytes(), feerate_sat_per_1000_weight_arg.ptr, balance_msat_arg, outbound_capacity_msat_arg, next_outbound_htlc_limit_msat_arg, next_outbound_htlc_minimum_msat_arg, inbound_capacity_msat_arg, confirmations_required_arg.ptr, confirmations_arg.ptr, force_close_spend_delay_arg.ptr, is_outbound_arg, is_channel_ready_arg, channel_shutdown_state_arg.ptr, is_usable_arg, is_public_arg, inbound_htlc_minimum_msat_arg.ptr, inbound_htlc_maximum_msat_arg.ptr, config_arg == null ? 0 : config_arg.ptr, pending_inbound_htlcs_arg != null ? Arrays.stream(pending_inbound_htlcs_arg).mapToLong(pending_inbound_htlcs_arg_conv_20 -> pending_inbound_htlcs_arg_conv_20.ptr).toArray() : null, pending_outbound_htlcs_arg != null ? Arrays.stream(pending_outbound_htlcs_arg).mapToLong(pending_outbound_htlcs_arg_conv_21 -> pending_outbound_htlcs_arg_conv_21.ptr).toArray() : null);
905+
Reference.reachabilityFence(channel_id_arg);
906+
Reference.reachabilityFence(counterparty_arg);
907+
Reference.reachabilityFence(funding_txo_arg);
908+
Reference.reachabilityFence(channel_type_arg);
909+
Reference.reachabilityFence(short_channel_id_arg);
910+
Reference.reachabilityFence(outbound_scid_alias_arg);
911+
Reference.reachabilityFence(inbound_scid_alias_arg);
912+
Reference.reachabilityFence(channel_value_satoshis_arg);
913+
Reference.reachabilityFence(unspendable_punishment_reserve_arg);
914+
Reference.reachabilityFence(user_channel_id_arg);
915+
Reference.reachabilityFence(feerate_sat_per_1000_weight_arg);
916+
Reference.reachabilityFence(balance_msat_arg);
917+
Reference.reachabilityFence(outbound_capacity_msat_arg);
918+
Reference.reachabilityFence(next_outbound_htlc_limit_msat_arg);
919+
Reference.reachabilityFence(next_outbound_htlc_minimum_msat_arg);
920+
Reference.reachabilityFence(inbound_capacity_msat_arg);
921+
Reference.reachabilityFence(confirmations_required_arg);
922+
Reference.reachabilityFence(confirmations_arg);
923+
Reference.reachabilityFence(force_close_spend_delay_arg);
924+
Reference.reachabilityFence(is_outbound_arg);
925+
Reference.reachabilityFence(is_channel_ready_arg);
926+
Reference.reachabilityFence(channel_shutdown_state_arg);
927+
Reference.reachabilityFence(is_usable_arg);
928+
Reference.reachabilityFence(is_public_arg);
929+
Reference.reachabilityFence(inbound_htlc_minimum_msat_arg);
930+
Reference.reachabilityFence(inbound_htlc_maximum_msat_arg);
931+
Reference.reachabilityFence(config_arg);
932+
Reference.reachabilityFence(pending_inbound_htlcs_arg);
933+
Reference.reachabilityFence(pending_outbound_htlcs_arg);
934+
if (ret >= 0 && ret <= 4096) { return null; }
935+
org.ldk.structs.ChannelDetails ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelDetails(null, ret); }
936+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
937+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(channel_id_arg); };
938+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(counterparty_arg); };
939+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(funding_txo_arg); };
940+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(channel_type_arg); };
941+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(short_channel_id_arg); };
942+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(outbound_scid_alias_arg); };
943+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(inbound_scid_alias_arg); };
944+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(unspendable_punishment_reserve_arg); };
945+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(feerate_sat_per_1000_weight_arg); };
946+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(confirmations_required_arg); };
947+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(confirmations_arg); };
948+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(force_close_spend_delay_arg); };
949+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(channel_shutdown_state_arg); };
950+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(inbound_htlc_minimum_msat_arg); };
951+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(inbound_htlc_maximum_msat_arg); };
952+
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(config_arg); };
953+
for (InboundHTLCDetails pending_inbound_htlcs_arg_conv_20: pending_inbound_htlcs_arg) { if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(pending_inbound_htlcs_arg_conv_20); }; };
954+
for (OutboundHTLCDetails pending_outbound_htlcs_arg_conv_21: pending_outbound_htlcs_arg) { if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(pending_outbound_htlcs_arg_conv_21); }; };
955+
return ret_hu_conv;
956+
}
957+
831958
long clone_ptr() {
832959
long ret = bindings.ChannelDetails_clone_ptr(this.ptr);
833960
Reference.reachabilityFence(this);
@@ -870,6 +997,8 @@ public Option_u64Z get_inbound_payment_scid() {
870997
*
871998
* This is either the [`ChannelDetails::short_channel_id`], if set, or the
872999
* [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1000+
*
1001+
* [`Route`]: crate::routing::router::Route
8731002
*/
8741003
public Option_u64Z get_outbound_payment_scid() {
8751004
long ret = bindings.ChannelDetails_get_outbound_payment_scid(this.ptr);

src/main/java/org/ldk/structs/ChannelId.java

+9
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,13 @@ public static Result_ChannelIdDecodeErrorZ read(byte[] ser) {
221221
return ret_hu_conv;
222222
}
223223

224+
/**
225+
* Get the string representation of a ChannelId object
226+
*/
227+
public String to_str() {
228+
String ret = bindings.ChannelId_to_str(this.ptr);
229+
Reference.reachabilityFence(this);
230+
return ret;
231+
}
232+
224233
}

src/main/java/org/ldk/structs/ChannelInfo.java

+9
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,15 @@ public ChannelUpdateInfo get_directional_info(byte channel_flags) {
247247
return ret_hu_conv;
248248
}
249249

250+
/**
251+
* Get the string representation of a ChannelInfo object
252+
*/
253+
public String to_str() {
254+
String ret = bindings.ChannelInfo_to_str(this.ptr);
255+
Reference.reachabilityFence(this);
256+
return ret;
257+
}
258+
250259
/**
251260
* Serialize the ChannelInfo object into a byte array which can be read by ChannelInfo_read
252261
*/

src/main/java/org/ldk/structs/ChannelUpdateInfo.java

+9
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,15 @@ public boolean eq(org.ldk.structs.ChannelUpdateInfo b) {
224224
if (!(o instanceof ChannelUpdateInfo)) return false;
225225
return this.eq((ChannelUpdateInfo)o);
226226
}
227+
/**
228+
* Get the string representation of a ChannelUpdateInfo object
229+
*/
230+
public String to_str() {
231+
String ret = bindings.ChannelUpdateInfo_to_str(this.ptr);
232+
Reference.reachabilityFence(this);
233+
return ret;
234+
}
235+
227236
/**
228237
* Serialize the ChannelUpdateInfo object into a byte array which can be read by ChannelUpdateInfo_read
229238
*/

src/main/java/org/ldk/structs/ClosureReason.java

+9
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,15 @@ public boolean eq(org.ldk.structs.ClosureReason b) {
396396
if (!(o instanceof ClosureReason)) return false;
397397
return this.eq((ClosureReason)o);
398398
}
399+
/**
400+
* Get the string representation of a ClosureReason object
401+
*/
402+
public String to_str() {
403+
String ret = bindings.ClosureReason_to_str(this.ptr);
404+
Reference.reachabilityFence(this);
405+
return ret;
406+
}
407+
399408
/**
400409
* Serialize the ClosureReason object into a byte array which can be read by ClosureReason_read
401410
*/

src/main/java/org/ldk/structs/DecodeError.java

+9
Original file line numberDiff line numberDiff line change
@@ -262,4 +262,13 @@ public boolean eq(org.ldk.structs.DecodeError b) {
262262
if (!(o instanceof DecodeError)) return false;
263263
return this.eq((DecodeError)o);
264264
}
265+
/**
266+
* Get the string representation of a DecodeError object
267+
*/
268+
public String to_str() {
269+
String ret = bindings.DecodeError_to_str(this.ptr);
270+
Reference.reachabilityFence(this);
271+
return ret;
272+
}
273+
265274
}

src/main/java/org/ldk/structs/Hostname.java

+9
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,15 @@ public byte len() {
8282
return ret;
8383
}
8484

85+
/**
86+
* Get the string representation of a Hostname object
87+
*/
88+
public String to_str() {
89+
String ret = bindings.Hostname_to_str(this.ptr);
90+
Reference.reachabilityFence(this);
91+
return ret;
92+
}
93+
8594
/**
8695
* Serialize the Hostname object into a byte array which can be read by Hostname_read
8796
*/

0 commit comments

Comments
 (0)