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
pub use core_model::*;
pub use context::*;
mod context {
use std::fmt;
use std::fmt::Display;
pub type DefaultMetadataContext = MetadataContext<String>;
pub trait MetadataItem: Clone + Default + fmt::Debug + PartialEq {
type UId: PartialEq;
fn uid(&self) -> &Self::UId;
fn is_newer(&self, another: &Self) -> bool;
fn is_being_deleted(&self) -> bool {
false
}
}
impl MetadataItem for u32 {
type UId = u32;
fn uid(&self) -> &Self::UId {
&self
}
fn is_newer(&self, another: &Self) -> bool {
self > another
}
}
impl MetadataItem for u64 {
type UId = u64;
fn uid(&self) -> &Self::UId {
&self
}
fn is_newer(&self, another: &Self) -> bool {
self > another
}
}
#[derive(Default, Debug, Clone, PartialEq)]
pub struct MetadataContext<C> {
item: C,
owner: Option<C>,
}
impl<C> From<C> for MetadataContext<C> {
fn from(item: C) -> Self {
Self { item, owner: None }
}
}
impl<C> MetadataContext<C> {
pub fn new(item: C, owner: Option<C>) -> Self {
Self { item, owner }
}
pub fn item(&self) -> &C {
&self.item
}
pub fn item_mut(&mut self) -> &mut C {
&mut self.item
}
pub fn item_owned(self) -> C {
self.item
}
pub fn owner(&self) -> Option<&C> {
self.owner.as_ref()
}
pub fn set_owner(&mut self, ctx: C) {
self.owner = Some(ctx);
}
}
impl<C> MetadataContext<C>
where
C: MetadataItem,
{
pub fn create_child(&self) -> Self {
Self {
item: C::default(),
owner: Some(self.item.clone()),
}
}
}
impl<C> Display for MetadataContext<C>
where
C: MetadataItem,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:#?}", self.item)
}
}
}
mod core_model {
use std::fmt::Debug;
use std::hash::Hash;
pub trait MetadataStoreDriver {
type Metadata;
}
pub trait Spec: Default + Debug + Clone + PartialEq {
const LABEL: &'static str;
type Status: Status;
type Owner: Spec;
type IndexKey: Debug + Eq + Hash + Clone + ToString;
}
pub trait Status: Default + Debug + Clone + PartialEq {}
pub trait Removable {
type DeleteKey;
}
pub trait Creatable {}
pub struct MetadataObj<S, P>
where
P: MetadataStoreDriver,
S: Spec,
{
pub name: String,
pub metadata: P::Metadata,
pub spec: S,
pub status: S::Status,
}
}