79e97dad23a501d548937cc824bc58ee32102b93
[ldk-java] / c_sharp / src / org / ldk / structs / Shutdown.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8
9 /**
10  * A shutdown message to be sent or received from a peer
11  */
12 public class Shutdown : CommonBase {
13         internal Shutdown(object _dummy, long ptr) : base(ptr) { }
14         ~Shutdown() {
15                 if (ptr != 0) { bindings.Shutdown_free(ptr); }
16         }
17
18         /**
19          * The channel ID
20          */
21         public byte[] get_channel_id() {
22                 byte[] ret = bindings.Shutdown_get_channel_id(this.ptr);
23                 GC.KeepAlive(this);
24                 return ret;
25         }
26
27         /**
28          * The channel ID
29          */
30         public void set_channel_id(byte[] val) {
31                 bindings.Shutdown_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
32                 GC.KeepAlive(this);
33                 GC.KeepAlive(val);
34         }
35
36         /**
37          * The destination of this peer's funds on closing.
38          * Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
39          */
40         public byte[] get_scriptpubkey() {
41                 byte[] ret = bindings.Shutdown_get_scriptpubkey(this.ptr);
42                 GC.KeepAlive(this);
43                 return ret;
44         }
45
46         /**
47          * The destination of this peer's funds on closing.
48          * Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
49          */
50         public void set_scriptpubkey(byte[] val) {
51                 bindings.Shutdown_set_scriptpubkey(this.ptr, val);
52                 GC.KeepAlive(this);
53                 GC.KeepAlive(val);
54         }
55
56         /**
57          * Constructs a new Shutdown given each field
58          */
59         public static Shutdown of(byte[] channel_id_arg, byte[] scriptpubkey_arg) {
60                 long ret = bindings.Shutdown_new(InternalUtils.check_arr_len(channel_id_arg, 32), scriptpubkey_arg);
61                 GC.KeepAlive(channel_id_arg);
62                 GC.KeepAlive(scriptpubkey_arg);
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 org.ldk.structs.Shutdown ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Shutdown(null, ret); }
65                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
66                 return ret_hu_conv;
67         }
68
69         internal long clone_ptr() {
70                 long ret = bindings.Shutdown_clone_ptr(this.ptr);
71                 GC.KeepAlive(this);
72                 return ret;
73         }
74
75         /**
76          * Creates a copy of the Shutdown
77          */
78         public Shutdown clone() {
79                 long ret = bindings.Shutdown_clone(this.ptr);
80                 GC.KeepAlive(this);
81                 if (ret >= 0 && ret <= 4096) { return null; }
82                 org.ldk.structs.Shutdown ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Shutdown(null, ret); }
83                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
84                 return ret_hu_conv;
85         }
86
87         /**
88          * Checks if two Shutdowns contain equal inner contents.
89          * This ignores pointers and is_owned flags and looks at the values in fields.
90          * Two objects with NULL inner values will be considered "equal" here.
91          */
92         public bool eq(org.ldk.structs.Shutdown b) {
93                 bool ret = bindings.Shutdown_eq(this.ptr, b == null ? 0 : b.ptr);
94                 GC.KeepAlive(this);
95                 GC.KeepAlive(b);
96                 if (this != null) { this.ptrs_to.AddLast(b); };
97                 return ret;
98         }
99
100         public override bool Equals(object o) {
101                 if (!(o is Shutdown)) return false;
102                 return this.eq((Shutdown)o);
103         }
104         /**
105          * Serialize the Shutdown object into a byte array which can be read by Shutdown_read
106          */
107         public byte[] write() {
108                 byte[] ret = bindings.Shutdown_write(this.ptr);
109                 GC.KeepAlive(this);
110                 return ret;
111         }
112
113         /**
114          * Read a Shutdown from a byte array, created by Shutdown_write
115          */
116         public static Result_ShutdownDecodeErrorZ read(byte[] ser) {
117                 long ret = bindings.Shutdown_read(ser);
118                 GC.KeepAlive(ser);
119                 if (ret >= 0 && ret <= 4096) { return null; }
120                 Result_ShutdownDecodeErrorZ ret_hu_conv = Result_ShutdownDecodeErrorZ.constr_from_ptr(ret);
121                 return ret_hu_conv;
122         }
123
124 }
125 } } }