-
Notifications
You must be signed in to change notification settings - Fork 366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop reference to Self
in GossipVerifier::new
#3369
Comments
I mean this is generally true of Rust? If you have non-dynamic dispatch you have to specify the types of the things you're calling.
I'm not really sure how, sadly. We do need things to be somewhat circular here, and short of intermediating responses through an event interface driven by the BP (or PeerManager) I'm not really sure how to do that.
There's no need to do that in LDK itself, any downstream application that doesn't want to deal with this can just write the types out as dynamic dispatch and they should be fine? |
Right, but it makes these (circular) types really a pain to work with.
Right, the
Mhh, I kind of disagree, at least in the LDK Node setting where we need to be able to switch between a
After banging my head against the typechecker for a few hours and running into more issues of similar nature I concluded we should just drop the generic, which should make it much easier to deal with (or even possible) . |
Can you provide a reproducer? That shouldn't be the case, AFAIU (though you may have to do an explicit cast when building the Arc). |
Sure. I did multiple attempts from different angles, but pushed the most-recent attempt in the last commit here: https://github.com/tnull/ldk-node/tree/2024-10-add-bitcoind-support-gossipverify |
@TheBlueMatt Did you get a chance to look at the reproducer? Somewhat independently from that, would you be fine with going ahead with the approach outlined above? @vincenzopalazzo had previously indicated he'd be interested in picking this up for the next release. |
With this diff upstream: diff --git a/lightning-block-sync/src/gossip.rs b/lightning-block-sync/src/gossip.rs
index f075cf7b2..083156baa 100644
--- a/lightning-block-sync/src/gossip.rs
+++ b/lightning-block-sync/src/gossip.rs
@@ -144,7 +144,7 @@ pub struct GossipVerifier<
{
source: Blocks,
peer_manager_wake: Arc<dyn Fn() + Send + Sync>,
- gossiper: Arc<P2PGossipSync<Arc<NetworkGraph<L>>, Self, L>>,
+ gossiper: Arc<P2PGossipSync<Arc<NetworkGraph<L>>, Arc<Self>, L>>,
spawn: S,
block_cache: Arc<Mutex<VecDeque<(u32, Block)>>>,
}
@@ -162,7 +162,7 @@ where
/// This is expected to be given to a [`P2PGossipSync`] (initially constructed with `None` for
/// the UTXO lookup) via [`P2PGossipSync::add_utxo_lookup`].
pub fn new<APM: Deref + Send + Sync + Clone + 'static>(
- source: Blocks, spawn: S, gossiper: Arc<P2PGossipSync<Arc<NetworkGraph<L>>, Self, L>>,
+ source: Blocks, spawn: S, gossiper: Arc<P2PGossipSync<Arc<NetworkGraph<L>>, Arc<Self>, L>>,
peer_manager: APM,
) -> Self
where this diff on top of your branch works: diff --git a/src/types.rs b/src/types.rs
index 9fae37e..b021b30 100644
--- a/src/types.rs
+++ b/src/types.rs
@@ -89,7 +89,7 @@ pub(crate) type Scorer = ProbabilisticScorer<Arc<Graph>, Arc<FilesystemLogger>>;
pub(crate) type Graph = gossip::NetworkGraph<Arc<FilesystemLogger>>;
-pub(crate) type UtxoLookup = dyn lightning::routing::utxo::UtxoLookup + Send + Sync;
+pub(crate) type UtxoLookup = lightning_block_sync::gossip::GossipVerifier<crate::gossip::RuntimeSpawner, Arc<lightning_block_sync::rpc::RpcClient>, Arc<FilesystemLogger>>;
pub(crate) type P2PGossipSync =
lightning::routing::gossip::P2PGossipSync<Arc<Graph>, Arc<UtxoLookup>, Arc<FilesystemLogger>>; |
Nice, thanks for looking into it, that's a great first step! However note that this would still require us to concretize the I guess at that point we could write a concrete adaptor implementing all the necessary traits and switching it internally, but given that LDK Node is likely not the only user struggling with this, why not just go the additional mile, simplify the generics, and use dynamic dispatch instead? |
In
GossipVerifier::new
we currently force an argument of type signature ofgossiper: Arc<P2PGossipSync<Arc<NetworkGraph<L>>, Self, L>>
, which is not only terrible in it's own right, but also enforces the type signature of everything touchingP2PGossipSync
at compile time.In an LDK Node context this would mean bubbling up generics all the way to
Node
, which we cannot and won't do, and it heavily conflicts with the ability to choose theGossipSync
(P2P vs RGS) at runtime. As a consequence, this prohibits LDK Node (and I assume other users too) from using theGossipVerifier
.We really need to drop this circular type dependency, which means in turn dropping the
U: UtxoLookup
generic fromP2PGossipSync
and everything touching it and replace it with dynamic dispatching it at runtime, i.e.,Arc<dyn UtxoLookup + Send + Sync>
(although we possibly might get away with dropping the additional bounds here, we'll see).The text was updated successfully, but these errors were encountered: