1e01dc27a5
- index — CardIndex: índice en memoria con filtros (by_label case-insensitive substring, by_kind, providing por Capability, by_id). - registry — scan_dir: carga toda Card *.json de un directorio, saltando ruido y archivos rotos. - discovery — CardDiscovery: une el índice local con la malla P2P; announce_all publica las Cards locales al DHT, find_remote busca proveedores. Modo local-only sin DHT también soportado. Lo consumen el card-browser de nahual-shell y agorapura. 7 tests verdes. cargo check --workspace verde. settings.local.json: defaultMode bypassPermissions (sesión desatendida). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
65 lines
1.8 KiB
Rust
65 lines
1.8 KiB
Rust
//! `CardDiscovery` — une el índice local de Cards con el DHT.
|
|
|
|
use crate::index::CardIndex;
|
|
use brahman_dht::{Dht, DhtKey};
|
|
use libp2p::PeerId;
|
|
|
|
/// Búsqueda de Cards: siempre local, opcionalmente sobre la malla P2P.
|
|
pub struct CardDiscovery {
|
|
/// Índice local consultable.
|
|
pub index: CardIndex,
|
|
dht: Option<Dht>,
|
|
}
|
|
|
|
impl CardDiscovery {
|
|
/// Discovery sólo-local (sin malla P2P).
|
|
pub fn local(index: CardIndex) -> Self {
|
|
Self { index, dht: None }
|
|
}
|
|
|
|
/// Discovery local + DHT.
|
|
pub fn with_dht(index: CardIndex, dht: Dht) -> Self {
|
|
Self { index, dht: Some(dht) }
|
|
}
|
|
|
|
/// `true` si hay malla P2P conectada.
|
|
pub fn has_dht(&self) -> bool {
|
|
self.dht.is_some()
|
|
}
|
|
|
|
/// Anuncia al DHT cada Card local (clave = `DhtKey::card(id)`).
|
|
/// No-op si no hay DHT.
|
|
pub fn announce_all(&self) {
|
|
if let Some(dht) = &self.dht {
|
|
for card in self.index.all() {
|
|
dht.announce(&DhtKey::card(card.id.to_string()));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Busca proveedores remotos de una Card por id. Vacío si no hay DHT.
|
|
pub async fn find_remote(&self, card_id: &str) -> Vec<PeerId> {
|
|
match &self.dht {
|
|
Some(dht) => dht.find(&DhtKey::card(card_id)).await,
|
|
None => Vec::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use brahman_card::Card;
|
|
|
|
#[tokio::test]
|
|
async fn local_only_discovery_has_no_dht() {
|
|
let mut ix = CardIndex::new();
|
|
ix.insert(Card::new("local-1"));
|
|
let disc = CardDiscovery::local(ix);
|
|
assert!(!disc.has_dht());
|
|
disc.announce_all(); // no-op, no debe panickear
|
|
assert!(disc.find_remote("cualquiera").await.is_empty());
|
|
assert_eq!(disc.index.len(), 1);
|
|
}
|
|
}
|