Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / FilesystemPersister.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
8
9 /**
10  * FilesystemPersister persists channel data on disk, where each channel's
11  * data is stored in a file named after its funding outpoint.
12  * 
13  * Warning: this module does the best it can with calls to persist data, but it
14  * can only guarantee that the data is passed to the drive. It is up to the
15  * drive manufacturers to do the actual persistence properly, which they often
16  * don't (especially on consumer-grade hardware). Therefore, it is up to the
17  * user to validate their entire storage stack, to ensure the writes are
18  * persistent.
19  * Corollary: especially when dealing with larger amounts of money, it is best
20  * practice to have multiple channel data backups and not rely only on one
21  * FilesystemPersister.
22  */
23 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
24 public class FilesystemPersister extends CommonBase {
25         FilesystemPersister(Object _dummy, long ptr) { super(ptr); }
26         @Override @SuppressWarnings("deprecation")
27         protected void finalize() throws Throwable {
28                 super.finalize();
29                 if (ptr != 0) { bindings.FilesystemPersister_free(ptr); }
30         }
31
32         /**
33          * Initialize a new FilesystemPersister and set the path to the individual channels'
34          * files.
35          */
36         public static FilesystemPersister of(String path_to_channel_data) {
37                 long ret = bindings.FilesystemPersister_new(path_to_channel_data);
38                 if (ret < 1024) { return null; }
39                 FilesystemPersister ret_hu_conv = new FilesystemPersister(null, ret);
40                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
41                 return ret_hu_conv;
42         }
43
44         /**
45          * Get the directory which was provided when this persister was initialized.
46          */
47         public String get_data_dir() {
48                 String ret = bindings.FilesystemPersister_get_data_dir(this.ptr);
49                 return ret;
50         }
51
52         /**
53          * Read `ChannelMonitor`s from disk.
54          */
55         public Result_CVec_C2Tuple_BlockHashChannelMonitorZZErrorZ read_channelmonitors(KeysInterface keys_manager) {
56                 long ret = bindings.FilesystemPersister_read_channelmonitors(this.ptr, keys_manager == null ? 0 : keys_manager.ptr);
57                 if (ret < 1024) { return null; }
58                 Result_CVec_C2Tuple_BlockHashChannelMonitorZZErrorZ ret_hu_conv = Result_CVec_C2Tuple_BlockHashChannelMonitorZZErrorZ.constr_from_ptr(ret);
59                 this.ptrs_to.add(keys_manager);
60                 return ret_hu_conv;
61         }
62
63         /**
64          * Constructs a new Persist which calls the relevant methods on this_arg.
65          * This copies the `inner` pointer in this_arg and thus the returned Persist must be freed before this_arg is
66          */
67         public Persist as_Persist() {
68                 long ret = bindings.FilesystemPersister_as_Persist(this.ptr);
69                 if (ret < 1024) { return null; }
70                 Persist ret_hu_conv = new Persist(null, ret);
71                 ret_hu_conv.ptrs_to.add(this);
72                 return ret_hu_conv;
73         }
74
75 }