@@ -57,13 +57,14 @@ use crate::routing::router::{Path, CandidateRouteHop, PublicHopCandidate};
57
57
use crate :: routing:: log_approx;
58
58
use crate :: util:: ser:: { Readable , ReadableArgs , Writeable , Writer } ;
59
59
use crate :: util:: logger:: Logger ;
60
-
61
60
use crate :: prelude:: * ;
61
+ use crate :: prelude:: hash_map:: Entry ;
62
62
use core:: { cmp, fmt} ;
63
63
use core:: ops:: { Deref , DerefMut } ;
64
64
use core:: time:: Duration ;
65
65
use crate :: io:: { self , Read } ;
66
66
use crate :: sync:: { RwLock , RwLockReadGuard , RwLockWriteGuard } ;
67
+ use bucketed_history:: { LegacyHistoricalBucketRangeTracker , HistoricalBucketRangeTracker , DirectedHistoricalLiquidityTracker , HistoricalLiquidityTracker } ;
67
68
#[ cfg( not( c_bindings) ) ]
68
69
use {
69
70
core:: cell:: { RefCell , RefMut , Ref } ,
@@ -474,7 +475,84 @@ where L::Target: Logger {
474
475
decay_params : ProbabilisticScoringDecayParameters ,
475
476
network_graph : G ,
476
477
logger : L ,
477
- channel_liquidities : HashMap < u64 , ChannelLiquidity > ,
478
+ channel_liquidities : ChannelLiquidities ,
479
+ }
480
+ /// Container for live and historical liquidity bounds for each channel.
481
+ pub struct ChannelLiquidities ( HashMap < u64 , ChannelLiquidity > ) ;
482
+
483
+ impl ChannelLiquidities {
484
+ fn new ( ) -> Self {
485
+ Self ( new_hash_map ( ) )
486
+ }
487
+
488
+ fn time_passed ( & mut self , duration_since_epoch : Duration , decay_params : ProbabilisticScoringDecayParameters ) {
489
+ self . 0 . retain ( |_scid, liquidity| {
490
+ liquidity. min_liquidity_offset_msat =
491
+ liquidity. decayed_offset ( liquidity. min_liquidity_offset_msat , duration_since_epoch, decay_params) ;
492
+ liquidity. max_liquidity_offset_msat =
493
+ liquidity. decayed_offset ( liquidity. max_liquidity_offset_msat , duration_since_epoch, decay_params) ;
494
+ liquidity. last_updated = duration_since_epoch;
495
+
496
+ // TODO: Call decay multiple times.
497
+ let elapsed_time =
498
+ duration_since_epoch. saturating_sub ( liquidity. offset_history_last_updated ) ;
499
+ if elapsed_time > decay_params. historical_no_updates_half_life {
500
+ let half_life = decay_params. historical_no_updates_half_life . as_secs_f64 ( ) ;
501
+ if half_life != 0.0 {
502
+ liquidity. liquidity_history . decay_buckets ( elapsed_time. as_secs_f64 ( ) / half_life) ;
503
+ liquidity. offset_history_last_updated = duration_since_epoch;
504
+ }
505
+ }
506
+ liquidity. min_liquidity_offset_msat != 0 || liquidity. max_liquidity_offset_msat != 0 ||
507
+ liquidity. liquidity_history . has_datapoints ( )
508
+ } ) ;
509
+ }
510
+
511
+ fn get ( & self , short_channel_id : & u64 ) -> Option < & ChannelLiquidity > {
512
+ self . 0 . get ( short_channel_id)
513
+ }
514
+
515
+ fn get_mut ( & mut self , short_channel_id : & u64 ) -> Option < & mut ChannelLiquidity > {
516
+ self . 0 . get_mut ( short_channel_id)
517
+ }
518
+
519
+ fn insert ( & mut self , short_channel_id : u64 , liquidity : ChannelLiquidity ) -> Option < ChannelLiquidity > {
520
+ self . 0 . insert ( short_channel_id, liquidity)
521
+ }
522
+
523
+ fn iter ( & self ) -> impl Iterator < Item = ( & u64 , & ChannelLiquidity ) > {
524
+ self . 0 . iter ( )
525
+ }
526
+
527
+ fn entry ( & mut self , short_channel_id : u64 ) -> Entry < u64 , ChannelLiquidity , RandomState > {
528
+ self . 0 . entry ( short_channel_id)
529
+ }
530
+
531
+ fn serialized_length ( & self ) -> usize {
532
+ self . 0 . serialized_length ( )
533
+ }
534
+ }
535
+
536
+
537
+ impl Readable for ChannelLiquidities {
538
+ #[ inline]
539
+ fn read < R : Read > ( r : & mut R ) -> Result < Self , DecodeError > {
540
+ let mut channel_liquidities = new_hash_map ( ) ;
541
+ read_tlv_fields ! ( r, {
542
+ ( 0 , channel_liquidities, required) ,
543
+ } ) ;
544
+ Ok ( ChannelLiquidities ( channel_liquidities) )
545
+ }
546
+ }
547
+
548
+ impl Writeable for ChannelLiquidities {
549
+ #[ inline]
550
+ fn write < W : Writer > ( & self , w : & mut W ) -> Result < ( ) , io:: Error > {
551
+ write_tlv_fields ! ( w, {
552
+ ( 0 , self . 0 , required) ,
553
+ } ) ;
554
+ Ok ( ( ) )
555
+ }
478
556
}
479
557
480
558
/// Parameters for configuring [`ProbabilisticScorer`].
@@ -804,7 +882,7 @@ impl ProbabilisticScoringDecayParameters {
804
882
/// first node in the ordering of the channel's counterparties. Thus, swapping the two liquidity
805
883
/// offset fields gives the opposite direction.
806
884
#[ repr( C ) ] // Force the fields in memory to be in the order we specify
807
- struct ChannelLiquidity {
885
+ pub struct ChannelLiquidity {
808
886
/// Lower channel liquidity bound in terms of an offset from zero.
809
887
min_liquidity_offset_msat : u64 ,
810
888
@@ -849,7 +927,7 @@ impl<G: Deref<Target = NetworkGraph<L>>, L: Deref> ProbabilisticScorer<G, L> whe
849
927
decay_params,
850
928
network_graph,
851
929
logger,
852
- channel_liquidities : new_hash_map ( ) ,
930
+ channel_liquidities : ChannelLiquidities :: new ( ) ,
853
931
}
854
932
}
855
933
@@ -1603,26 +1681,7 @@ impl<G: Deref<Target = NetworkGraph<L>>, L: Deref> ScoreUpdate for Probabilistic
1603
1681
}
1604
1682
1605
1683
fn time_passed ( & mut self , duration_since_epoch : Duration ) {
1606
- let decay_params = self . decay_params ;
1607
- self . channel_liquidities . retain ( |_scid, liquidity| {
1608
- liquidity. min_liquidity_offset_msat =
1609
- liquidity. decayed_offset ( liquidity. min_liquidity_offset_msat , duration_since_epoch, decay_params) ;
1610
- liquidity. max_liquidity_offset_msat =
1611
- liquidity. decayed_offset ( liquidity. max_liquidity_offset_msat , duration_since_epoch, decay_params) ;
1612
- liquidity. last_updated = duration_since_epoch;
1613
-
1614
- let elapsed_time =
1615
- duration_since_epoch. saturating_sub ( liquidity. offset_history_last_updated ) ;
1616
- if elapsed_time > decay_params. historical_no_updates_half_life {
1617
- let half_life = decay_params. historical_no_updates_half_life . as_secs_f64 ( ) ;
1618
- if half_life != 0.0 {
1619
- liquidity. liquidity_history . decay_buckets ( elapsed_time. as_secs_f64 ( ) / half_life) ;
1620
- liquidity. offset_history_last_updated = duration_since_epoch;
1621
- }
1622
- }
1623
- liquidity. min_liquidity_offset_msat != 0 || liquidity. max_liquidity_offset_msat != 0 ||
1624
- liquidity. liquidity_history . has_datapoints ( )
1625
- } ) ;
1684
+ self . channel_liquidities . time_passed ( duration_since_epoch, self . decay_params ) ;
1626
1685
}
1627
1686
}
1628
1687
@@ -2060,15 +2119,11 @@ mod bucketed_history {
2060
2119
}
2061
2120
}
2062
2121
}
2063
- use bucketed_history:: { LegacyHistoricalBucketRangeTracker , HistoricalBucketRangeTracker , DirectedHistoricalLiquidityTracker , HistoricalLiquidityTracker } ;
2064
2122
2065
2123
impl < G : Deref < Target = NetworkGraph < L > > , L : Deref > Writeable for ProbabilisticScorer < G , L > where L :: Target : Logger {
2066
2124
#[ inline]
2067
2125
fn write < W : Writer > ( & self , w : & mut W ) -> Result < ( ) , io:: Error > {
2068
- write_tlv_fields ! ( w, {
2069
- ( 0 , self . channel_liquidities, required) ,
2070
- } ) ;
2071
- Ok ( ( ) )
2126
+ self . channel_liquidities . write ( w)
2072
2127
}
2073
2128
}
2074
2129
@@ -2079,10 +2134,7 @@ ReadableArgs<(ProbabilisticScoringDecayParameters, G, L)> for ProbabilisticScore
2079
2134
r : & mut R , args : ( ProbabilisticScoringDecayParameters , G , L )
2080
2135
) -> Result < Self , DecodeError > {
2081
2136
let ( decay_params, network_graph, logger) = args;
2082
- let mut channel_liquidities = new_hash_map ( ) ;
2083
- read_tlv_fields ! ( r, {
2084
- ( 0 , channel_liquidities, required) ,
2085
- } ) ;
2137
+ let channel_liquidities = ChannelLiquidities :: read ( r) ?;
2086
2138
Ok ( Self {
2087
2139
decay_params,
2088
2140
network_graph,
0 commit comments