Update schema for node announcement and address storage.
[rapid-gossip-sync-server] / src / persistence.rs
1 use std::fs::OpenOptions;
2 use std::io::{BufWriter, Write};
3 use std::ops::Deref;
4 use std::sync::Arc;
5 use std::time::{Duration, Instant};
6 use lightning::log_info;
7 use lightning::routing::gossip::NetworkGraph;
8 use lightning::util::logger::Logger;
9 use lightning::util::ser::Writeable;
10 use tokio::runtime::Runtime;
11 use tokio::sync::{mpsc, Mutex, Semaphore};
12
13 use crate::config;
14 use crate::types::GossipMessage;
15
16 const POSTGRES_INSERT_TIMEOUT: Duration = Duration::from_secs(15);
17 const INSERT_PARALELLISM: usize = 16;
18
19 pub(crate) struct GossipPersister<L: Deref> where L::Target: Logger {
20         gossip_persistence_receiver: mpsc::Receiver<GossipMessage>,
21         network_graph: Arc<NetworkGraph<L>>,
22         tokio_runtime: Runtime,
23         logger: L
24 }
25
26 impl<L: Deref> GossipPersister<L> where L::Target: Logger {
27         pub fn new(network_graph: Arc<NetworkGraph<L>>, logger: L) -> (Self, mpsc::Sender<GossipMessage>) {
28                 let (gossip_persistence_sender, gossip_persistence_receiver) =
29                         mpsc::channel::<GossipMessage>(100);
30                 let runtime = Runtime::new().unwrap();
31                 (GossipPersister {
32                         gossip_persistence_receiver,
33                         network_graph,
34                         tokio_runtime: runtime,
35                         logger
36                 }, gossip_persistence_sender)
37         }
38
39         pub(crate) async fn persist_gossip(&mut self) {
40                 { // initialize the database
41                         // this client instance is only used once
42                         let mut client = crate::connect_to_db().await;
43
44                         let initialization = client
45                                 .execute(config::db_config_table_creation_query(), &[])
46                                 .await;
47                         if let Err(initialization_error) = initialization {
48                                 panic!("db init error: {}", initialization_error);
49                         }
50
51                         let cur_schema = client.query("SELECT db_schema FROM config WHERE id = $1", &[&1]).await.unwrap();
52                         if !cur_schema.is_empty() {
53                                 config::upgrade_db(cur_schema[0].get(0), &mut client).await;
54                         }
55
56                         let preparation = client.execute("set time zone UTC", &[]).await;
57                         if let Err(preparation_error) = preparation {
58                                 panic!("db preparation error: {}", preparation_error);
59                         }
60
61                         let initialization = client
62                                 .execute(
63                                         // TODO: figure out a way to fix the id value without Postgres complaining about
64                                         // its value not being default
65                                         "INSERT INTO config (id, db_schema) VALUES ($1, $2) ON CONFLICT (id) DO NOTHING",
66                                         &[&1, &config::SCHEMA_VERSION]
67                                 ).await;
68                         if let Err(initialization_error) = initialization {
69                                 panic!("db init error: {}", initialization_error);
70                         }
71
72                         let table_creation_queries = [
73                                 config::db_announcement_table_creation_query(),
74                                 config::db_channel_update_table_creation_query(),
75                                 config::db_channel_update_table_creation_query(),
76                                 config::db_node_announcement_table_creation_query()
77                         ];
78
79                         for current_table_creation_query in table_creation_queries {
80                                 let initialization = client
81                                         .execute(current_table_creation_query, &[])
82                                         .await;
83                                 if let Err(initialization_error) = initialization {
84                                         panic!("db init error: {}", initialization_error);
85                                 }
86                         }
87
88                         let initialization = client
89                                 .batch_execute(config::db_index_creation_query())
90                                 .await;
91                         if let Err(initialization_error) = initialization {
92                                 panic!("db init error: {}", initialization_error);
93                         }
94                 }
95
96                 // print log statement every minute
97                 let mut latest_persistence_log = Instant::now() - Duration::from_secs(60);
98                 let mut i = 0u32;
99                 let mut latest_graph_cache_time = Instant::now();
100                 let insert_limiter = Arc::new(Semaphore::new(INSERT_PARALELLISM));
101                 let connections_cache = Arc::new(Mutex::new(Vec::with_capacity(INSERT_PARALELLISM)));
102                 #[cfg(test)]
103                 let mut tasks_spawned = Vec::new();
104                 // TODO: it would be nice to have some sort of timeout here so after 10 seconds of
105                 // inactivity, some sort of message could be broadcast signaling the activation of request
106                 // processing
107                 while let Some(gossip_message) = self.gossip_persistence_receiver.recv().await {
108                         i += 1; // count the persisted gossip messages
109
110                         if latest_persistence_log.elapsed().as_secs() >= 60 {
111                                 log_info!(self.logger, "Persisting gossip message #{}", i);
112                                 latest_persistence_log = Instant::now();
113                         }
114
115                         // has it been ten minutes? Just cache it
116                         if latest_graph_cache_time.elapsed().as_secs() >= 600 {
117                                 self.persist_network_graph();
118                                 latest_graph_cache_time = Instant::now();
119                         }
120                         insert_limiter.acquire().await.unwrap().forget();
121
122                         let limiter_ref = Arc::clone(&insert_limiter);
123                         let client = {
124                                 let mut connections_set = connections_cache.lock().await;
125                                 let client = if connections_set.is_empty() {
126                                         crate::connect_to_db().await
127                                 } else {
128                                         connections_set.pop().unwrap()
129                                 };
130                                 client
131                         };
132
133                         let connections_cache_ref = Arc::clone(&connections_cache);
134                         match gossip_message {
135                                 GossipMessage::NodeAnnouncement(_announcement, _seen_override) => {
136
137                                 },
138                                 GossipMessage::ChannelAnnouncement(announcement, seen_override) => {
139                                         let scid = announcement.contents.short_channel_id as i64;
140
141                                         // start with the type prefix, which is already known a priori
142                                         let mut announcement_signed = Vec::new();
143                                         announcement.write(&mut announcement_signed).unwrap();
144
145                                         let _task = self.tokio_runtime.spawn(async move {
146                                                 if cfg!(test) && seen_override.is_some() {
147                                                         tokio::time::timeout(POSTGRES_INSERT_TIMEOUT, client
148                                                                 .execute("INSERT INTO channel_announcements (\
149                                                                 short_channel_id, \
150                                                                 announcement_signed, \
151                                                                 seen \
152                                                         ) VALUES ($1, $2, TO_TIMESTAMP($3)) ON CONFLICT (short_channel_id) DO NOTHING", &[
153                                                                         &scid,
154                                                                         &announcement_signed,
155                                                                         &(seen_override.unwrap() as f64)
156                                                                 ])).await.unwrap().unwrap();
157                                                 } else {
158                                                         tokio::time::timeout(POSTGRES_INSERT_TIMEOUT, client
159                                                                 .execute("INSERT INTO channel_announcements (\
160                                                                 short_channel_id, \
161                                                                 announcement_signed \
162                                                         ) VALUES ($1, $2) ON CONFLICT (short_channel_id) DO NOTHING", &[
163                                                                         &scid,
164                                                                         &announcement_signed
165                                                                 ])).await.unwrap().unwrap();
166                                                 }
167                                                 let mut connections_set = connections_cache_ref.lock().await;
168                                                 connections_set.push(client);
169                                                 limiter_ref.add_permits(1);
170                                         });
171                                         #[cfg(test)]
172                                         tasks_spawned.push(_task);
173                                 }
174                                 GossipMessage::ChannelUpdate(update, seen_override) => {
175                                         let scid = update.contents.short_channel_id as i64;
176
177                                         let timestamp = update.contents.timestamp as i64;
178
179                                         let direction = (update.contents.flags & 1) == 1;
180                                         let disable = (update.contents.flags & 2) > 0;
181
182                                         let cltv_expiry_delta = update.contents.cltv_expiry_delta as i32;
183                                         let htlc_minimum_msat = update.contents.htlc_minimum_msat as i64;
184                                         let fee_base_msat = update.contents.fee_base_msat as i32;
185                                         let fee_proportional_millionths =
186                                                 update.contents.fee_proportional_millionths as i32;
187                                         let htlc_maximum_msat = update.contents.htlc_maximum_msat as i64;
188
189                                         // start with the type prefix, which is already known a priori
190                                         let mut update_signed = Vec::new();
191                                         update.write(&mut update_signed).unwrap();
192
193                                         let insertion_statement = if cfg!(test) {
194                                                 "INSERT INTO channel_updates (\
195                                                         short_channel_id, \
196                                                         timestamp, \
197                                                         seen, \
198                                                         channel_flags, \
199                                                         direction, \
200                                                         disable, \
201                                                         cltv_expiry_delta, \
202                                                         htlc_minimum_msat, \
203                                                         fee_base_msat, \
204                                                         fee_proportional_millionths, \
205                                                         htlc_maximum_msat, \
206                                                         blob_signed \
207                                                 ) VALUES ($1, $2, TO_TIMESTAMP($3), $4, $5, $6, $7, $8, $9, $10, $11, $12)  ON CONFLICT DO NOTHING"
208                                         } else {
209                                                 "INSERT INTO channel_updates (\
210                                                         short_channel_id, \
211                                                         timestamp, \
212                                                         channel_flags, \
213                                                         direction, \
214                                                         disable, \
215                                                         cltv_expiry_delta, \
216                                                         htlc_minimum_msat, \
217                                                         fee_base_msat, \
218                                                         fee_proportional_millionths, \
219                                                         htlc_maximum_msat, \
220                                                         blob_signed \
221                                                 ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)  ON CONFLICT DO NOTHING"
222                                         };
223
224                                         // this may not be used outside test cfg
225                                         let _seen_timestamp = seen_override.unwrap_or(timestamp as u32) as f64;
226
227                                         let _task = self.tokio_runtime.spawn(async move {
228                                                 tokio::time::timeout(POSTGRES_INSERT_TIMEOUT, client
229                                                         .execute(insertion_statement, &[
230                                                                 &scid,
231                                                                 &timestamp,
232                                                                 #[cfg(test)]
233                                                                         &_seen_timestamp,
234                                                                 &(update.contents.flags as i16),
235                                                                 &direction,
236                                                                 &disable,
237                                                                 &cltv_expiry_delta,
238                                                                 &htlc_minimum_msat,
239                                                                 &fee_base_msat,
240                                                                 &fee_proportional_millionths,
241                                                                 &htlc_maximum_msat,
242                                                                 &update_signed
243                                                         ])).await.unwrap().unwrap();
244                                                 let mut connections_set = connections_cache_ref.lock().await;
245                                                 connections_set.push(client);
246                                                 limiter_ref.add_permits(1);
247                                         });
248                                         #[cfg(test)]
249                                         tasks_spawned.push(_task);
250                                 }
251                         }
252                 }
253                 #[cfg(test)]
254                 for task in tasks_spawned {
255                         task.await.unwrap();
256                 }
257         }
258
259         fn persist_network_graph(&self) {
260                 log_info!(self.logger, "Caching network graph…");
261                 let cache_path = config::network_graph_cache_path();
262                 let file = OpenOptions::new()
263                         .create(true)
264                         .write(true)
265                         .truncate(true)
266                         .open(&cache_path)
267                         .unwrap();
268                 self.network_graph.remove_stale_channels_and_tracking();
269                 let mut writer = BufWriter::new(file);
270                 self.network_graph.write(&mut writer).unwrap();
271                 writer.flush().unwrap();
272                 log_info!(self.logger, "Cached network graph!");
273         }
274 }