X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FRecord.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FRecord.java;h=200bbf5f1a55a5e355b827e0c1161d99bb5aec1c;hb=2bb592fb946e316dba9f4d1123f8ac72ff4e9bf8;hp=b0b494185d503a399bcfd17c729f1d4d09efd314;hpb=519dc944de5b88f95975140a13fbc6d77dd15a95;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Record.java b/src/main/java/org/ldk/structs/Record.java index b0b49418..200bbf5f 100644 --- a/src/main/java/org/ldk/structs/Record.java +++ b/src/main/java/org/ldk/structs/Record.java @@ -39,6 +39,61 @@ public class Record extends CommonBase { Reference.reachabilityFence(val); } + /** + * The node id of the peer pertaining to the logged record. + * + * Note that in some cases a [`Self::channel_id`] may be filled in but this may still be + * `None`, depending on if the peer information is readily available in LDK when the log is + * generated. + * + * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None + */ + @Nullable + public byte[] get_peer_id() { + byte[] ret = bindings.Record_get_peer_id(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * The node id of the peer pertaining to the logged record. + * + * Note that in some cases a [`Self::channel_id`] may be filled in but this may still be + * `None`, depending on if the peer information is readily available in LDK when the log is + * generated. + * + * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None + */ + public void set_peer_id(@Nullable byte[] val) { + bindings.Record_set_peer_id(this.ptr, InternalUtils.check_arr_len(val, 33)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * The channel id of the channel pertaining to the logged record. May be a temporary id before + * the channel has been funded. + */ + public Option_ThirtyTwoBytesZ get_channel_id() { + long ret = bindings.Record_get_channel_id(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.Option_ThirtyTwoBytesZ ret_hu_conv = org.ldk.structs.Option_ThirtyTwoBytesZ.constr_from_ptr(ret); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * The channel id of the channel pertaining to the logged record. May be a temporary id before + * the channel has been funded. + */ + public void set_channel_id(org.ldk.structs.Option_ThirtyTwoBytesZ val) { + bindings.Record_set_channel_id(this.ptr, val.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; + } + /** * The message body. */ @@ -111,6 +166,27 @@ public class Record extends CommonBase { Reference.reachabilityFence(val); } + /** + * Constructs a new Record given each field + * + * Note that peer_id_arg (or a relevant inner pointer) may be NULL or all-0s to represent None + */ + public static Record of(org.ldk.enums.Level level_arg, @Nullable byte[] peer_id_arg, org.ldk.structs.Option_ThirtyTwoBytesZ channel_id_arg, java.lang.String args_arg, java.lang.String module_path_arg, java.lang.String file_arg, int line_arg) { + long ret = bindings.Record_new(level_arg, InternalUtils.check_arr_len(peer_id_arg, 33), channel_id_arg.ptr, args_arg, module_path_arg, file_arg, line_arg); + Reference.reachabilityFence(level_arg); + Reference.reachabilityFence(peer_id_arg); + Reference.reachabilityFence(channel_id_arg); + Reference.reachabilityFence(args_arg); + Reference.reachabilityFence(module_path_arg); + Reference.reachabilityFence(file_arg); + Reference.reachabilityFence(line_arg); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.Record ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Record(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(channel_id_arg); }; + return ret_hu_conv; + } + long clone_ptr() { long ret = bindings.Record_clone_ptr(this.ptr); Reference.reachabilityFence(this);