@@ -23,6 +23,7 @@ use crate::logger::{log_error, log_info, LdkLogger, LogLevel, LogWriter, Logger}
23
23
use crate :: message_handler:: NodeCustomMessageHandler ;
24
24
use crate :: payment:: store:: PaymentStore ;
25
25
use crate :: peer_store:: PeerStore ;
26
+ use crate :: scoring:: BackgroundPathfindingScoresSyncer ;
26
27
use crate :: tx_broadcaster:: TransactionBroadcaster ;
27
28
use crate :: types:: {
28
29
ChainMonitor , ChannelManager , DynStore , GossipSync , Graph , KeysManager , MessageRouter ,
@@ -41,7 +42,8 @@ use lightning::ln::peer_handler::{IgnoringMessageHandler, MessageHandler};
41
42
use lightning:: routing:: gossip:: NodeAlias ;
42
43
use lightning:: routing:: router:: DefaultRouter ;
43
44
use lightning:: routing:: scoring:: {
44
- ProbabilisticScorer , ProbabilisticScoringDecayParameters , ProbabilisticScoringFeeParameters ,
45
+ CombinedScorer , ProbabilisticScorer , ProbabilisticScoringDecayParameters ,
46
+ ProbabilisticScoringFeeParameters ,
45
47
} ;
46
48
use lightning:: sign:: EntropySource ;
47
49
@@ -97,6 +99,11 @@ enum GossipSourceConfig {
97
99
RapidGossipSync ( String ) ,
98
100
}
99
101
102
+ #[ derive( Debug , Clone ) ]
103
+ struct PathfindingScoresSyncConfig {
104
+ url : String ,
105
+ }
106
+
100
107
#[ derive( Debug , Clone ) ]
101
108
struct LiquiditySourceConfig {
102
109
// LSPS2 service's (address, node_id, token)
@@ -229,6 +236,7 @@ pub struct NodeBuilder {
229
236
gossip_source_config : Option < GossipSourceConfig > ,
230
237
liquidity_source_config : Option < LiquiditySourceConfig > ,
231
238
log_writer_config : Option < LogWriterConfig > ,
239
+ pathfinding_scores_sync_config : Option < PathfindingScoresSyncConfig > ,
232
240
}
233
241
234
242
impl NodeBuilder {
@@ -245,13 +253,15 @@ impl NodeBuilder {
245
253
let gossip_source_config = None ;
246
254
let liquidity_source_config = None ;
247
255
let log_writer_config = None ;
256
+ let scoring_source_config = None ;
248
257
Self {
249
258
config,
250
259
entropy_source_config,
251
260
chain_data_source_config,
252
261
gossip_source_config,
253
262
liquidity_source_config,
254
263
log_writer_config,
264
+ pathfinding_scores_sync_config : scoring_source_config,
255
265
}
256
266
}
257
267
@@ -322,6 +332,14 @@ impl NodeBuilder {
322
332
self
323
333
}
324
334
335
+ /// Configures the [`Node`] instance to source its external scores from the given URL.
336
+ ///
337
+ /// The external scores are merged into the local scoring system to improve routing.
338
+ pub fn set_pathfinding_scores_source ( & mut self , url : String ) -> & mut Self {
339
+ self . pathfinding_scores_sync_config = Some ( PathfindingScoresSyncConfig { url } ) ;
340
+ self
341
+ }
342
+
325
343
/// Configures the [`Node`] instance to source its inbound liquidity from the given
326
344
/// [LSPS2](https://github.com/BitcoinAndLightningLayerSpecs/lsp/blob/main/LSPS2/README.md)
327
345
/// service.
@@ -540,6 +558,7 @@ impl NodeBuilder {
540
558
config,
541
559
self . chain_data_source_config . as_ref ( ) ,
542
560
self . gossip_source_config . as_ref ( ) ,
561
+ self . pathfinding_scores_sync_config . as_ref ( ) ,
543
562
self . liquidity_source_config . as_ref ( ) ,
544
563
seed_bytes,
545
564
logger,
@@ -562,6 +581,7 @@ impl NodeBuilder {
562
581
config,
563
582
self . chain_data_source_config . as_ref ( ) ,
564
583
self . gossip_source_config . as_ref ( ) ,
584
+ self . pathfinding_scores_sync_config . as_ref ( ) ,
565
585
self . liquidity_source_config . as_ref ( ) ,
566
586
seed_bytes,
567
587
logger,
@@ -654,6 +674,12 @@ impl ArcedNodeBuilder {
654
674
self . inner . write ( ) . unwrap ( ) . set_gossip_source_rgs ( rgs_server_url) ;
655
675
}
656
676
677
+ /// Configures the [`Node`] instance to source its external scores from the given URL. These scores are used to
678
+ /// augment the internal pathfinding scoring system to improve routing.
679
+ pub fn set_pathfinding_scores_source ( & self , url : String ) {
680
+ self . inner . write ( ) . unwrap ( ) . set_pathfinding_scores_source ( url) ;
681
+ }
682
+
657
683
/// Configures the [`Node`] instance to source its inbound liquidity from the given
658
684
/// [LSPS2](https://github.com/BitcoinAndLightningLayerSpecs/lsp/blob/main/LSPS2/README.md)
659
685
/// service.
@@ -806,6 +832,7 @@ impl ArcedNodeBuilder {
806
832
fn build_with_store_internal (
807
833
config : Arc < Config > , chain_data_source_config : Option < & ChainDataSourceConfig > ,
808
834
gossip_source_config : Option < & GossipSourceConfig > ,
835
+ pathfinding_scores_sync_config : Option < & PathfindingScoresSyncConfig > ,
809
836
liquidity_source_config : Option < & LiquiditySourceConfig > , seed_bytes : [ u8 ; 64 ] ,
810
837
logger : Arc < Logger > , kv_store : Arc < DynStore > ,
811
838
) -> Result < Node , BuildError > {
@@ -950,26 +977,24 @@ fn build_with_store_internal(
950
977
} ,
951
978
} ;
952
979
953
- let scorer = match io:: utils:: read_scorer (
980
+ let local_scorer = match io:: utils:: read_scorer (
954
981
Arc :: clone ( & kv_store) ,
955
982
Arc :: clone ( & network_graph) ,
956
983
Arc :: clone ( & logger) ,
957
984
) {
958
- Ok ( scorer) => Arc :: new ( Mutex :: new ( scorer) ) ,
985
+ Ok ( scorer) => scorer,
959
986
Err ( e) => {
960
987
if e. kind ( ) == std:: io:: ErrorKind :: NotFound {
961
988
let params = ProbabilisticScoringDecayParameters :: default ( ) ;
962
- Arc :: new ( Mutex :: new ( ProbabilisticScorer :: new (
963
- params,
964
- Arc :: clone ( & network_graph) ,
965
- Arc :: clone ( & logger) ,
966
- ) ) )
989
+ ProbabilisticScorer :: new ( params, Arc :: clone ( & network_graph) , Arc :: clone ( & logger) )
967
990
} else {
968
991
return Err ( BuildError :: ReadFailed ) ;
969
992
}
970
993
} ,
971
994
} ;
972
995
996
+ let scorer = Arc :: new ( Mutex :: new ( CombinedScorer :: new ( local_scorer) ) ) ;
997
+
973
998
let scoring_fee_params = ProbabilisticScoringFeeParameters :: default ( ) ;
974
999
let router = Arc :: new ( DefaultRouter :: new (
975
1000
Arc :: clone ( & network_graph) ,
@@ -1129,6 +1154,19 @@ fn build_with_store_internal(
1129
1154
} ,
1130
1155
} ;
1131
1156
1157
+ let background_pathfinding_scores_syncer = if let Some ( config) = pathfinding_scores_sync_config
1158
+ {
1159
+ Some ( Arc :: new ( BackgroundPathfindingScoresSyncer :: new (
1160
+ config. url . clone ( ) ,
1161
+ Arc :: clone ( & scorer) ,
1162
+ Arc :: clone ( & node_metrics) ,
1163
+ Arc :: clone ( & kv_store) ,
1164
+ Arc :: clone ( & logger) ,
1165
+ ) ) )
1166
+ } else {
1167
+ None
1168
+ } ;
1169
+
1132
1170
let liquidity_source = liquidity_source_config. as_ref ( ) . and_then ( |lsc| {
1133
1171
lsc. lsps2_service . as_ref ( ) . map ( |( address, node_id, token) | {
1134
1172
let lsps2_client_config = Some ( LSPS2ClientConfig { } ) ;
@@ -1303,6 +1341,7 @@ fn build_with_store_internal(
1303
1341
keys_manager,
1304
1342
network_graph,
1305
1343
gossip_source,
1344
+ background_pathfinding_scores_syncer,
1306
1345
liquidity_source,
1307
1346
kv_store,
1308
1347
logger,
0 commit comments