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
use core::borrow::Borrow;
use dashmap::DashMap;
use std::cell::Cell;
use std::ops::Deref;
use std::sync::Arc;
use serde::{Deserialize, Serialize};
use tokio::sync::{RwLock, watch};
use crate::config::mechtron::MechtronConfig;
use crate::loc::ToSurface;
use crate::particle::Stub;
use crate::substance::Bin;
use crate::wave::core::cmd::CmdMethod;
use crate::wave::exchange::asynch::ProtoTransmitter;
use crate::wave::exchange::asynch::ProtoTransmitterBuilder;
use crate::wave::{DirectedProto, Pong, Wave};
use crate::{BindConfig, SpaceErr, Substance};
use crate::point::Point;
pub mod asynch;
pub mod synch;
#[derive(Clone)]
pub struct ArtRef<A> {
artifact: Arc<A>,
pub point: Point,
}
impl<A> ArtRef<A> {
pub fn new(artifact: Arc<A>, point: Point) -> Self {
Self { artifact, point }
}
}
impl<A> ArtRef<A>
where
A: Clone,
{
pub fn contents(&self) -> A {
(*self.artifact).clone()
}
}
impl<A> ArtRef<A> {
pub fn bundle(&self) -> Point {
self.point.clone().to_bundle().unwrap()
}
pub fn point(&self) -> &Point {
&self.point
}
}
impl<A> Deref for ArtRef<A> {
type Target = Arc<A>;
fn deref(&self) -> &Self::Target {
&self.artifact
}
}
impl<A> Drop for ArtRef<A> {
fn drop(&mut self) {
}
}
pub struct FetchErr {}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Artifact {
pub point: Point,
pub bin: Bin,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArtifactRequest {
pub point: Point,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArtifactResponse {
pub to: Point,
pub payload: Bin,
}