f65b3a403523c08380c95def85678d2ba7c62241
[ldk-java] / src / main / java / org / ldk / structs / RawInvoice.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  * Represents an syntactically correct Invoice for a payment on the lightning network,
13  * but without the signature information.
14  * De- and encoding should not lead to information loss but may lead to different hashes.
15  * 
16  * For methods without docs see the corresponding methods in `Invoice`.
17  */
18 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
19 public class RawInvoice extends CommonBase {
20         RawInvoice(Object _dummy, long ptr) { super(ptr); }
21         @Override @SuppressWarnings("deprecation")
22         protected void finalize() throws Throwable {
23                 super.finalize();
24                 if (ptr != 0) { bindings.RawInvoice_free(ptr); }
25         }
26
27         /**
28          * data part
29          */
30         public RawDataPart get_data() {
31                 long ret = bindings.RawInvoice_get_data(this.ptr);
32                 Reference.reachabilityFence(this);
33                 if (ret >= 0 && ret <= 4096) { return null; }
34                 org.ldk.structs.RawDataPart ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.RawDataPart(null, ret); }
35                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
36                 return ret_hu_conv;
37         }
38
39         /**
40          * data part
41          */
42         public void set_data(org.ldk.structs.RawDataPart val) {
43                 bindings.RawInvoice_set_data(this.ptr, val == null ? 0 : val.ptr);
44                 Reference.reachabilityFence(this);
45                 Reference.reachabilityFence(val);
46                 if (this != null) { this.ptrs_to.add(val); };
47         }
48
49         /**
50          * Checks if two RawInvoices contain equal inner contents.
51          * This ignores pointers and is_owned flags and looks at the values in fields.
52          * Two objects with NULL inner values will be considered "equal" here.
53          */
54         public boolean eq(org.ldk.structs.RawInvoice b) {
55                 boolean ret = bindings.RawInvoice_eq(this.ptr, b == null ? 0 : b.ptr);
56                 Reference.reachabilityFence(this);
57                 Reference.reachabilityFence(b);
58                 if (this != null) { this.ptrs_to.add(b); };
59                 return ret;
60         }
61
62         @Override public boolean equals(Object o) {
63                 if (!(o instanceof RawInvoice)) return false;
64                 return this.eq((RawInvoice)o);
65         }
66         long clone_ptr() {
67                 long ret = bindings.RawInvoice_clone_ptr(this.ptr);
68                 Reference.reachabilityFence(this);
69                 return ret;
70         }
71
72         /**
73          * Creates a copy of the RawInvoice
74          */
75         public RawInvoice clone() {
76                 long ret = bindings.RawInvoice_clone(this.ptr);
77                 Reference.reachabilityFence(this);
78                 if (ret >= 0 && ret <= 4096) { return null; }
79                 org.ldk.structs.RawInvoice ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.RawInvoice(null, ret); }
80                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
81                 return ret_hu_conv;
82         }
83
84         /**
85          * Checks if two RawInvoices contain equal inner contents.
86          */
87         public long hash() {
88                 long ret = bindings.RawInvoice_hash(this.ptr);
89                 Reference.reachabilityFence(this);
90                 return ret;
91         }
92
93         @Override public int hashCode() {
94                 return (int)this.hash();
95         }
96         /**
97          * Calculate the hash of the encoded `RawInvoice` which should be signed.
98          */
99         public byte[] signable_hash() {
100                 byte[] ret = bindings.RawInvoice_signable_hash(this.ptr);
101                 Reference.reachabilityFence(this);
102                 return ret;
103         }
104
105         /**
106          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
107          */
108         @Nullable
109         public Sha256 payment_hash() {
110                 long ret = bindings.RawInvoice_payment_hash(this.ptr);
111                 Reference.reachabilityFence(this);
112                 if (ret >= 0 && ret <= 4096) { return null; }
113                 org.ldk.structs.Sha256 ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Sha256(null, ret); }
114                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
115                 return ret_hu_conv;
116         }
117
118         /**
119          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
120          */
121         @Nullable
122         public Description description() {
123                 long ret = bindings.RawInvoice_description(this.ptr);
124                 Reference.reachabilityFence(this);
125                 if (ret >= 0 && ret <= 4096) { return null; }
126                 org.ldk.structs.Description ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Description(null, ret); }
127                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
128                 return ret_hu_conv;
129         }
130
131         /**
132          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
133          */
134         @Nullable
135         public PayeePubKey payee_pub_key() {
136                 long ret = bindings.RawInvoice_payee_pub_key(this.ptr);
137                 Reference.reachabilityFence(this);
138                 if (ret >= 0 && ret <= 4096) { return null; }
139                 org.ldk.structs.PayeePubKey ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PayeePubKey(null, ret); }
140                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
141                 return ret_hu_conv;
142         }
143
144         /**
145          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
146          */
147         @Nullable
148         public Sha256 description_hash() {
149                 long ret = bindings.RawInvoice_description_hash(this.ptr);
150                 Reference.reachabilityFence(this);
151                 if (ret >= 0 && ret <= 4096) { return null; }
152                 org.ldk.structs.Sha256 ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Sha256(null, ret); }
153                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
154                 return ret_hu_conv;
155         }
156
157         /**
158          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
159          */
160         @Nullable
161         public ExpiryTime expiry_time() {
162                 long ret = bindings.RawInvoice_expiry_time(this.ptr);
163                 Reference.reachabilityFence(this);
164                 if (ret >= 0 && ret <= 4096) { return null; }
165                 org.ldk.structs.ExpiryTime ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ExpiryTime(null, ret); }
166                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
167                 return ret_hu_conv;
168         }
169
170         /**
171          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
172          */
173         @Nullable
174         public MinFinalCltvExpiry min_final_cltv_expiry() {
175                 long ret = bindings.RawInvoice_min_final_cltv_expiry(this.ptr);
176                 Reference.reachabilityFence(this);
177                 if (ret >= 0 && ret <= 4096) { return null; }
178                 org.ldk.structs.MinFinalCltvExpiry ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.MinFinalCltvExpiry(null, ret); }
179                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
180                 return ret_hu_conv;
181         }
182
183         /**
184          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
185          */
186         @Nullable
187         public byte[] payment_secret() {
188                 byte[] ret = bindings.RawInvoice_payment_secret(this.ptr);
189                 Reference.reachabilityFence(this);
190                 return ret;
191         }
192
193         /**
194          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
195          */
196         @Nullable
197         public InvoiceFeatures features() {
198                 long ret = bindings.RawInvoice_features(this.ptr);
199                 Reference.reachabilityFence(this);
200                 if (ret >= 0 && ret <= 4096) { return null; }
201                 org.ldk.structs.InvoiceFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.InvoiceFeatures(null, ret); }
202                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
203                 return ret_hu_conv;
204         }
205
206         public PrivateRoute[] private_routes() {
207                 long[] ret = bindings.RawInvoice_private_routes(this.ptr);
208                 Reference.reachabilityFence(this);
209                 int ret_conv_14_len = ret.length;
210                 PrivateRoute[] ret_conv_14_arr = new PrivateRoute[ret_conv_14_len];
211                 for (int o = 0; o < ret_conv_14_len; o++) {
212                         long ret_conv_14 = ret[o];
213                         org.ldk.structs.PrivateRoute ret_conv_14_hu_conv = null; if (ret_conv_14 < 0 || ret_conv_14 > 4096) { ret_conv_14_hu_conv = new org.ldk.structs.PrivateRoute(null, ret_conv_14); }
214                         if (ret_conv_14_hu_conv != null) { ret_conv_14_hu_conv.ptrs_to.add(this); };
215                         ret_conv_14_arr[o] = ret_conv_14_hu_conv;
216                 }
217                 return ret_conv_14_arr;
218         }
219
220         public Option_u64Z amount_pico_btc() {
221                 long ret = bindings.RawInvoice_amount_pico_btc(this.ptr);
222                 Reference.reachabilityFence(this);
223                 if (ret >= 0 && ret <= 4096) { return null; }
224                 org.ldk.structs.Option_u64Z ret_hu_conv = org.ldk.structs.Option_u64Z.constr_from_ptr(ret);
225                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
226                 return ret_hu_conv;
227         }
228
229         public Currency currency() {
230                 Currency ret = bindings.RawInvoice_currency(this.ptr);
231                 Reference.reachabilityFence(this);
232                 return ret;
233         }
234
235 }