X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FNodeInfo.ts;h=810dbcd7d175216530093b6ac34f33a8c0578af4;hb=f95cc8ba7d61d65aa37e6448e6a083edc6e72fc1;hp=adc6b131ece2c2578e66a8c46e4b68eb3fb08b34;hpb=822471992c6bf6f9985e531cc5940e4cc35e3e4c;p=ldk-java diff --git a/ts/structs/NodeInfo.ts b/ts/structs/NodeInfo.ts index adc6b131..810dbcd7 100644 --- a/ts/structs/NodeInfo.ts +++ b/ts/structs/NodeInfo.ts @@ -1,57 +1,70 @@ + import CommonBase from './CommonBase'; import * as bindings from '../bindings' // TODO: figure out location -public class NodeInfo extends CommonBase { - NodeInfo(Object _dummy, long ptr) { super(ptr); } - @Override @SuppressWarnings("deprecation") - protected void finalize() throws Throwable { - super.finalize(); - if (ptr != 0) { bindings.NodeInfo_free(ptr); } - } - public void set_channels(long[] val) { + + export default class NodeInfo extends CommonBase { + constructor(_dummy: object, ptr: number) { + super(ptr); + } + + + protected finalize() { + super.finalize(); + + if (this.ptr != 0) { + bindings.NodeInfo_free(this.ptr); + } + } + public void set_channels(number[] val) { bindings.NodeInfo_set_channels(this.ptr, val); } public RoutingFees get_lowest_inbound_channel_fees() { - uint32_t ret = bindings.NodeInfo_get_lowest_inbound_channel_fees(this.ptr); - RoutingFees ret_hu_conv = new RoutingFees(null, ret); + number ret = bindings.NodeInfo_get_lowest_inbound_channel_fees(this.ptr); + const ret_hu_conv: RoutingFees = new RoutingFees(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } 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() { - uint32_t ret = bindings.NodeInfo_get_announcement_info(this.ptr); - NodeAnnouncementInfo ret_hu_conv = new NodeAnnouncementInfo(null, ret); + number ret = bindings.NodeInfo_get_announcement_info(this.ptr); + const ret_hu_conv: NodeAnnouncementInfo = new NodeAnnouncementInfo(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } - public void set_announcement_info(NodeFeatures val_features_arg, int val_last_update_arg, byte[] val_rgb_arg, byte[] val_alias_arg, NetAddress[] val_addresses_arg, NodeAnnouncement val_announcement_message_arg) { - bindings.NodeInfo_set_announcement_info(this.ptr, bindings.NodeAnnouncementInfo_new(val_features_arg == null ? 0 : val_features_arg.ptr & ~1, val_last_update_arg, val_rgb_arg, val_alias_arg, (uint32_t[])Arrays.stream(val_addresses_arg).map(arr_conv_12 -> arr_conv_12.ptr).toArray(), val_announcement_message_arg == null ? 0 : val_announcement_message_arg.ptr & ~1)); + public void set_announcement_info(NodeAnnouncementInfo val) { + bindings.NodeInfo_set_announcement_info(this.ptr, val == null ? 0 : val.ptr & ~1); + } + + public static NodeInfo constructor_new(number[] channels_arg, RoutingFees lowest_inbound_channel_fees_arg, NodeAnnouncementInfo announcement_info_arg) { + number ret = bindings.NodeInfo_new(channels_arg, lowest_inbound_channel_fees_arg == null ? 0 : lowest_inbound_channel_fees_arg.ptr & ~1, announcement_info_arg == null ? 0 : announcement_info_arg.ptr & ~1); + const ret_hu_conv: NodeInfo = new NodeInfo(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; } - public static NodeInfo constructor_new(long[] channels_arg, RoutingFees lowest_inbound_channel_fees_arg, NodeFeatures announcement_info_arg_features_arg, int announcement_info_arg_last_update_arg, byte[] announcement_info_arg_rgb_arg, byte[] announcement_info_arg_alias_arg, NetAddress[] announcement_info_arg_addresses_arg, NodeAnnouncement announcement_info_arg_announcement_message_arg) { - uint32_t ret = bindings.NodeInfo_new(channels_arg, lowest_inbound_channel_fees_arg == null ? 0 : lowest_inbound_channel_fees_arg.ptr & ~1, bindings.NodeAnnouncementInfo_new(announcement_info_arg_features_arg == null ? 0 : announcement_info_arg_features_arg.ptr & ~1, announcement_info_arg_last_update_arg, announcement_info_arg_rgb_arg, announcement_info_arg_alias_arg, (uint32_t[])Arrays.stream(announcement_info_arg_addresses_arg).map(arr_conv_12 -> arr_conv_12.ptr).toArray(), announcement_info_arg_announcement_message_arg == null ? 0 : announcement_info_arg_announcement_message_arg.ptr & ~1)); - NodeInfo ret_hu_conv = new NodeInfo(null, ret); - ret_hu_conv.ptrs_to.add(lowest_inbound_channel_fees_arg); - ret_hu_conv.ptrs_to.add(announcement_info_arg_features_arg); - /* TODO 2 NetAddress */; - ret_hu_conv.ptrs_to.add(announcement_info_arg_announcement_message_arg); + public NodeInfo clone() { + number ret = bindings.NodeInfo_clone(this.ptr); + const ret_hu_conv: NodeInfo = new NodeInfo(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } - public byte[] write() { - byte[] ret = bindings.NodeInfo_write(this.ptr); + public Uint8Array write() { + Uint8Array ret = bindings.NodeInfo_write(this.ptr); return ret; } - public static Result_NodeInfoDecodeErrorZ constructor_read(byte[] ser) { - uint32_t ret = bindings.NodeInfo_read(ser); + public static Result_NodeInfoDecodeErrorZ constructor_read(Uint8Array ser) { + number ret = bindings.NodeInfo_read(ser); Result_NodeInfoDecodeErrorZ ret_hu_conv = Result_NodeInfoDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }