X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FNodeInfo.java;h=5f4aed27a135182645ef1d4bc5bfd540ad8537e5;hb=55fbcecedad3fd98420db299c2177fb3f40d607e;hp=5f15e82ed4ef8a6c4e8cc400055f19e6c87b6c07;hpb=3d559f3266fde7c6a21248c10d9a7145125b5e69;p=ldk-java diff --git a/src/main/java/org/ldk/structs/NodeInfo.java b/src/main/java/org/ldk/structs/NodeInfo.java index 5f15e82e..5f4aed27 100644 --- a/src/main/java/org/ldk/structs/NodeInfo.java +++ b/src/main/java/org/ldk/structs/NodeInfo.java @@ -2,40 +2,50 @@ package org.ldk.structs; import org.ldk.impl.bindings; import org.ldk.enums.*; +import org.ldk.util.*; +import java.util.Arrays; +@SuppressWarnings("unchecked") // We correctly assign various generic arrays public class NodeInfo extends CommonBase { NodeInfo(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { - bindings.NodeInfo_free(ptr); super.finalize(); + super.finalize(); + if (ptr != 0) { bindings.NodeInfo_free(ptr); } } - // Skipped NodeInfo_set_channels - public RoutingFees get_lowest_inbound_channel_fees(NodeInfo this_ptr) { - RoutingFees ret = new RoutingFees(null, bindings.NodeInfo_get_lowest_inbound_channel_fees(this_ptr.ptr & ~1)); - this.ptrs_to.add(this_ptr); - return ret; + public void set_channels(long[] val) { + bindings.NodeInfo_set_channels(this.ptr, val); + } + + public RoutingFees get_lowest_inbound_channel_fees() { + long ret = bindings.NodeInfo_get_lowest_inbound_channel_fees(this.ptr); + RoutingFees ret_hu_conv = new RoutingFees(null, ret); + return ret_hu_conv; } - public void set_lowest_inbound_channel_fees(NodeInfo this_ptr, RoutingFees val) { - bindings.NodeInfo_set_lowest_inbound_channel_fees(this_ptr.ptr & ~1, val.ptr & ~1); - this.ptrs_to.add(this_ptr); + public void set_lowest_inbound_channel_fees(RoutingFees val) { + bindings.NodeInfo_set_lowest_inbound_channel_fees(this.ptr, val == null ? 0 : val.ptr & ~1); this.ptrs_to.add(val); } - public NodeAnnouncementInfo get_announcement_info(NodeInfo this_ptr) { - NodeAnnouncementInfo ret = new NodeAnnouncementInfo(null, bindings.NodeInfo_get_announcement_info(this_ptr.ptr & ~1)); - this.ptrs_to.add(this_ptr); + public NodeAnnouncementInfo get_announcement_info() { + long ret = bindings.NodeInfo_get_announcement_info(this.ptr); + NodeAnnouncementInfo ret_hu_conv = new NodeAnnouncementInfo(null, ret); + return ret_hu_conv; + } + + // Skipped NodeInfo_set_announcement_info + // Skipped NodeInfo_new + public byte[] write() { + byte[] ret = bindings.NodeInfo_write(this.ptr); return ret; } - public void set_announcement_info(NodeInfo this_ptr, NodeAnnouncementInfo val) { - bindings.NodeInfo_set_announcement_info(this_ptr.ptr & ~1, val.ptr & ~1); - this.ptrs_to.add(this_ptr); - this.ptrs_to.add(val); + public static NodeInfo constructor_read(byte[] ser) { + long ret = bindings.NodeInfo_read(ser); + NodeInfo ret_hu_conv = new NodeInfo(null, ret); + return ret_hu_conv; } - // Skipped NodeInfo_new - // Skipped NodeInfo_write - // Skipped NodeInfo_read }