[Java] Update auto-generated bindings to 0.0.115
[ldk-java] / src / main / java / org / ldk / structs / NodeAnnouncementInfo.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10
11 /**
12  * Information received in the latest node_announcement from this node.
13  */
14 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
15 public class NodeAnnouncementInfo extends CommonBase {
16         NodeAnnouncementInfo(Object _dummy, long ptr) { super(ptr); }
17         @Override @SuppressWarnings("deprecation")
18         protected void finalize() throws Throwable {
19                 super.finalize();
20                 if (ptr != 0) { bindings.NodeAnnouncementInfo_free(ptr); }
21         }
22
23         /**
24          * Protocol features the node announced support for
25          */
26         public NodeFeatures get_features() {
27                 long ret = bindings.NodeAnnouncementInfo_get_features(this.ptr);
28                 Reference.reachabilityFence(this);
29                 if (ret >= 0 && ret <= 4096) { return null; }
30                 org.ldk.structs.NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeFeatures(null, ret); }
31                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
32                 return ret_hu_conv;
33         }
34
35         /**
36          * Protocol features the node announced support for
37          */
38         public void set_features(org.ldk.structs.NodeFeatures val) {
39                 bindings.NodeAnnouncementInfo_set_features(this.ptr, val == null ? 0 : val.ptr);
40                 Reference.reachabilityFence(this);
41                 Reference.reachabilityFence(val);
42                 if (this != null) { this.ptrs_to.add(val); };
43         }
44
45         /**
46          * When the last known update to the node state was issued.
47          * Value is opaque, as set in the announcement.
48          */
49         public int get_last_update() {
50                 int ret = bindings.NodeAnnouncementInfo_get_last_update(this.ptr);
51                 Reference.reachabilityFence(this);
52                 return ret;
53         }
54
55         /**
56          * When the last known update to the node state was issued.
57          * Value is opaque, as set in the announcement.
58          */
59         public void set_last_update(int val) {
60                 bindings.NodeAnnouncementInfo_set_last_update(this.ptr, val);
61                 Reference.reachabilityFence(this);
62                 Reference.reachabilityFence(val);
63         }
64
65         /**
66          * Color assigned to the node
67          */
68         public byte[] get_rgb() {
69                 byte[] ret = bindings.NodeAnnouncementInfo_get_rgb(this.ptr);
70                 Reference.reachabilityFence(this);
71                 return ret;
72         }
73
74         /**
75          * Color assigned to the node
76          */
77         public void set_rgb(byte[] val) {
78                 bindings.NodeAnnouncementInfo_set_rgb(this.ptr, InternalUtils.check_arr_len(val, 3));
79                 Reference.reachabilityFence(this);
80                 Reference.reachabilityFence(val);
81         }
82
83         /**
84          * Moniker assigned to the node.
85          * May be invalid or malicious (eg control chars),
86          * should not be exposed to the user.
87          */
88         public NodeAlias get_alias() {
89                 long ret = bindings.NodeAnnouncementInfo_get_alias(this.ptr);
90                 Reference.reachabilityFence(this);
91                 if (ret >= 0 && ret <= 4096) { return null; }
92                 org.ldk.structs.NodeAlias ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeAlias(null, ret); }
93                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
94                 return ret_hu_conv;
95         }
96
97         /**
98          * Moniker assigned to the node.
99          * May be invalid or malicious (eg control chars),
100          * should not be exposed to the user.
101          */
102         public void set_alias(org.ldk.structs.NodeAlias val) {
103                 bindings.NodeAnnouncementInfo_set_alias(this.ptr, val == null ? 0 : val.ptr);
104                 Reference.reachabilityFence(this);
105                 Reference.reachabilityFence(val);
106                 if (this != null) { this.ptrs_to.add(val); };
107         }
108
109         /**
110          * An initial announcement of the node
111          * Mostly redundant with the data we store in fields explicitly.
112          * Everything else is useful only for sending out for initial routing sync.
113          * Not stored if contains excess data to prevent DoS.
114          * 
115          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
116          */
117         @Nullable
118         public NodeAnnouncement get_announcement_message() {
119                 long ret = bindings.NodeAnnouncementInfo_get_announcement_message(this.ptr);
120                 Reference.reachabilityFence(this);
121                 if (ret >= 0 && ret <= 4096) { return null; }
122                 org.ldk.structs.NodeAnnouncement ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeAnnouncement(null, ret); }
123                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
124                 return ret_hu_conv;
125         }
126
127         /**
128          * An initial announcement of the node
129          * Mostly redundant with the data we store in fields explicitly.
130          * Everything else is useful only for sending out for initial routing sync.
131          * Not stored if contains excess data to prevent DoS.
132          * 
133          * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
134          */
135         public void set_announcement_message(@Nullable org.ldk.structs.NodeAnnouncement val) {
136                 bindings.NodeAnnouncementInfo_set_announcement_message(this.ptr, val == null ? 0 : val.ptr);
137                 Reference.reachabilityFence(this);
138                 Reference.reachabilityFence(val);
139                 if (this != null) { this.ptrs_to.add(val); };
140         }
141
142         /**
143          * Constructs a new NodeAnnouncementInfo given each field
144          */
145         public static NodeAnnouncementInfo of(org.ldk.structs.NodeFeatures features_arg, int last_update_arg, byte[] rgb_arg, org.ldk.structs.NodeAlias alias_arg, org.ldk.structs.NodeAnnouncement announcement_message_arg) {
146                 long ret = bindings.NodeAnnouncementInfo_new(features_arg == null ? 0 : features_arg.ptr, last_update_arg, InternalUtils.check_arr_len(rgb_arg, 3), alias_arg == null ? 0 : alias_arg.ptr, announcement_message_arg == null ? 0 : announcement_message_arg.ptr);
147                 Reference.reachabilityFence(features_arg);
148                 Reference.reachabilityFence(last_update_arg);
149                 Reference.reachabilityFence(rgb_arg);
150                 Reference.reachabilityFence(alias_arg);
151                 Reference.reachabilityFence(announcement_message_arg);
152                 if (ret >= 0 && ret <= 4096) { return null; }
153                 org.ldk.structs.NodeAnnouncementInfo ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeAnnouncementInfo(null, ret); }
154                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
155                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(features_arg); };
156                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(alias_arg); };
157                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(announcement_message_arg); };
158                 return ret_hu_conv;
159         }
160
161         long clone_ptr() {
162                 long ret = bindings.NodeAnnouncementInfo_clone_ptr(this.ptr);
163                 Reference.reachabilityFence(this);
164                 return ret;
165         }
166
167         /**
168          * Creates a copy of the NodeAnnouncementInfo
169          */
170         public NodeAnnouncementInfo clone() {
171                 long ret = bindings.NodeAnnouncementInfo_clone(this.ptr);
172                 Reference.reachabilityFence(this);
173                 if (ret >= 0 && ret <= 4096) { return null; }
174                 org.ldk.structs.NodeAnnouncementInfo ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeAnnouncementInfo(null, ret); }
175                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
176                 return ret_hu_conv;
177         }
178
179         /**
180          * Checks if two NodeAnnouncementInfos contain equal inner contents.
181          * This ignores pointers and is_owned flags and looks at the values in fields.
182          * Two objects with NULL inner values will be considered "equal" here.
183          */
184         public boolean eq(org.ldk.structs.NodeAnnouncementInfo b) {
185                 boolean ret = bindings.NodeAnnouncementInfo_eq(this.ptr, b == null ? 0 : b.ptr);
186                 Reference.reachabilityFence(this);
187                 Reference.reachabilityFence(b);
188                 if (this != null) { this.ptrs_to.add(b); };
189                 return ret;
190         }
191
192         @Override public boolean equals(Object o) {
193                 if (!(o instanceof NodeAnnouncementInfo)) return false;
194                 return this.eq((NodeAnnouncementInfo)o);
195         }
196         /**
197          * Internet-level addresses via which one can connect to the node
198          */
199         public NetAddress[] addresses() {
200                 long[] ret = bindings.NodeAnnouncementInfo_addresses(this.ptr);
201                 Reference.reachabilityFence(this);
202                 int ret_conv_12_len = ret.length;
203                 NetAddress[] ret_conv_12_arr = new NetAddress[ret_conv_12_len];
204                 for (int m = 0; m < ret_conv_12_len; m++) {
205                         long ret_conv_12 = ret[m];
206                         org.ldk.structs.NetAddress ret_conv_12_hu_conv = org.ldk.structs.NetAddress.constr_from_ptr(ret_conv_12);
207                         if (ret_conv_12_hu_conv != null) { ret_conv_12_hu_conv.ptrs_to.add(this); };
208                         ret_conv_12_arr[m] = ret_conv_12_hu_conv;
209                 }
210                 return ret_conv_12_arr;
211         }
212
213         /**
214          * Serialize the NodeAnnouncementInfo object into a byte array which can be read by NodeAnnouncementInfo_read
215          */
216         public byte[] write() {
217                 byte[] ret = bindings.NodeAnnouncementInfo_write(this.ptr);
218                 Reference.reachabilityFence(this);
219                 return ret;
220         }
221
222         /**
223          * Read a NodeAnnouncementInfo from a byte array, created by NodeAnnouncementInfo_write
224          */
225         public static Result_NodeAnnouncementInfoDecodeErrorZ read(byte[] ser) {
226                 long ret = bindings.NodeAnnouncementInfo_read(ser);
227                 Reference.reachabilityFence(ser);
228                 if (ret >= 0 && ret <= 4096) { return null; }
229                 Result_NodeAnnouncementInfoDecodeErrorZ ret_hu_conv = Result_NodeAnnouncementInfoDecodeErrorZ.constr_from_ptr(ret);
230                 return ret_hu_conv;
231         }
232
233 }