1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
//! Definitions for events emited from the KitsuneP2p actor.
use crate::dht::prelude::ArqSet;
use crate::types::agent_store::AgentInfoSigned;
use kitsune_p2p_timestamp::Timestamp;
use kitsune_p2p_types::{
bin_types::KOp,
dht::region::RegionBounds,
dht_arc::{DhtArcSet, DhtLocation},
KOpHash,
};
use std::{collections::HashSet, sync::Arc};
/// Gather a list of op-hashes from our implementor that meet criteria.
/// Also get the start and end times for ops within a time window
/// up to a maximum number.
#[derive(Debug, Clone)]
pub struct QueryOpHashesEvt {
/// The "space" context.
pub space: KSpace,
/// The DhtArcSet to filter by.
pub arc_set: DhtArcSet,
/// The time window to search within.
pub window: TimeWindow,
/// Maximum number of ops to return.
pub max_ops: usize,
/// Include ops that are still in limbo (not yet validated or integrated).
pub include_limbo: bool,
}
/// Gather all op-hash data for a list of op-hashes from our implementor.
#[derive(Debug, Clone)]
pub struct FetchOpDataEvt {
/// The "space" context.
pub space: KSpace,
/// The criteria to query by
pub query: FetchOpDataEvtQuery,
}
/// Multiple ways to fetch op data
#[derive(Debug, derive_more::From, Clone)]
pub enum FetchOpDataEvtQuery {
/// Fetch all ops with the hashes specified
Hashes {
/// list of ops to fetch
op_hash_list: Vec<KOpHash>,
/// should we include limbo ops
include_limbo: bool,
},
/// Fetch all ops within the time and space bounds specified
Regions(Vec<RegionBounds>),
}
/// Request that our implementor sign some data on behalf of an agent.
#[derive(Debug, Clone)]
pub struct SignNetworkDataEvt {
/// The "space" context.
pub space: KSpace,
/// The "agent" context.
pub agent: KAgent,
/// The data to sign.
#[allow(clippy::rc_buffer)]
pub data: Arc<Vec<u8>>,
}
/// Store the AgentInfo as signed by the agent themselves.
#[derive(Debug, Clone)]
pub struct PutAgentInfoSignedEvt {
/// A batch of signed agent info. Possibly from multiple spaces, see the space included
/// on each agent.
pub peer_data: Vec<AgentInfoSigned>,
}
/// Get agent info for a single agent, as previously signed and put.
#[derive(Debug)]
pub struct GetAgentInfoSignedEvt {
/// The "space" context.
pub space: KSpace,
/// The "agent" context.
pub agent: KAgent,
}
/// Get agent info which satisfies a query.
#[derive(Debug, Clone)]
pub struct QueryAgentsEvt {
/// The "space" context.
pub space: KSpace,
/// Optional set of agents to filter by.
pub agents: Option<HashSet<KAgent>>,
/// Optional time range to filter by.
pub window: Option<TimeWindow>,
/// Optional arcset to intersect by.
pub arq_set: Option<ArqSet>,
/// If set, results are ordered by proximity to the specified location
pub near_basis: Option<DhtLocation>,
/// Limit to the number of results returned
pub limit: Option<u32>,
}
// NB: if we want to play it safer, rather than providing these fine-grained
// builder methods, we could provide only the three "flavors" of query that
// Holochain supports, which would still provide us the full expressivity to
// implement Kitsune.
impl QueryAgentsEvt {
/// Constructor. Every query needs to know what space it's for.
pub fn new(space: KSpace) -> Self {
Self {
space,
agents: None,
window: None,
arq_set: None,
near_basis: None,
limit: None,
}
}
/// Add in an agent list query
pub fn by_agents<A: IntoIterator<Item = KAgent>>(mut self, agents: A) -> Self {
self.agents = Some(agents.into_iter().collect());
self
}
/// Add in an a time window query
pub fn by_window(mut self, window: TimeWindow) -> Self {
self.window = Some(window);
self
}
/// Add in an an arcset query
pub fn by_arq_set(mut self, arq_set: ArqSet) -> Self {
self.arq_set = Some(arq_set);
self
}
/// Specify that the results should be ordered by proximity to this basis
pub fn near_basis(mut self, basis: DhtLocation) -> Self {
self.near_basis = Some(basis);
self
}
/// Limit the number of results
pub fn limit(mut self, limit: u32) -> Self {
self.limit = Some(limit);
self
}
}
/// An exclusive range of timestamps, measured in microseconds
pub type TimeWindow = std::ops::Range<Timestamp>;
/// An inclusive range of timestamps, measured in microseconds
pub type TimeWindowInclusive = std::ops::RangeInclusive<Timestamp>;
/// A time window which covers all of recordable time
pub fn full_time_window() -> TimeWindow {
Timestamp::MIN..Timestamp::MAX
}
/// A time window which inclusively covers all of recordable time
pub fn full_time_window_inclusive() -> TimeWindowInclusive {
Timestamp::MIN..=Timestamp::MAX
}
type KSpace = Arc<super::KitsuneSpace>;
type KAgent = Arc<super::KitsuneAgent>;
pub(crate) type Payload = Vec<u8>;
type Ops = Vec<KOp>;
type MaybeContext = Option<kitsune_p2p_fetch::FetchContext>;
ghost_actor::ghost_chan! {
/// The KitsuneP2pEvent stream allows handling events generated from the
/// KitsuneP2p actor.
pub chan KitsuneP2pEvent<super::KitsuneP2pError> {
/// We need to store signed agent info.
fn put_agent_info_signed(input: PutAgentInfoSignedEvt) -> Vec<kitsune_p2p_types::bootstrap::AgentInfoPut>;
/// We need to get previously stored agent info.
fn query_agents(input: QueryAgentsEvt) -> Vec<crate::types::agent_store::AgentInfoSigned>;
/// Query the peer density of a space for a given [`DhtArc`].
fn query_peer_density(space: KSpace, dht_arc: kitsune_p2p_types::dht_arc::DhtArc) -> kitsune_p2p_types::dht::PeerView;
/// We are receiving a request from a remote node.
fn call(space: KSpace, to_agent: KAgent, payload: Payload) -> Vec<u8>;
/// We are receiving a notification from a remote node.
fn notify(space: KSpace, to_agent: KAgent, payload: Payload) -> ();
/// We have received ops to be integrated,
/// either through gossip or publish.
fn receive_ops(
space: KSpace,
ops: Ops,
context: MaybeContext,
) -> ();
/// Gather a list of op-hashes from our implementor that meet criteria.
/// Get the oldest and newest times for ops within a time window and max number of ops.
// maackle: do we really need to *individually* wrap all these op hashes in Arcs?
fn query_op_hashes(input: QueryOpHashesEvt) -> Option<(Vec<KOpHash>, TimeWindowInclusive)>;
/// Gather all op-hash data for a list of op-hashes from our implementor.
fn fetch_op_data(input: FetchOpDataEvt) -> Vec<(KOpHash, KOp)>;
/// Request that our implementor sign some data on behalf of an agent.
fn sign_network_data(input: SignNetworkDataEvt) -> super::KitsuneSignature;
}
}
/// Receiver type for incoming connection events.
pub type KitsuneP2pEventReceiver = futures::channel::mpsc::Receiver<KitsuneP2pEvent>;