-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathapi.rs
266 lines (242 loc) · 8.67 KB
/
api.rs
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*********************************************************************************
* Copyright (c) 2018,2020 ADLINK Technology Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache Software License 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
* Contributors:
* ADLINK fog05 team, <fog05@adlink-labs.tech>
*********************************************************************************/
#![allow(unused)]
use uuid::Uuid;
use rand::seq::SliceRandom;
use async_std::sync::Arc;
use zenoh::net::Session;
use crate::agent::orchestrator::AgentOrchestratorInterfaceClient;
use crate::fresult::FResult;
use crate::im;
use crate::zconnector::ZConnector;
pub struct FDUApi {
pub zenoh: Arc<zenoh::net::Session>,
pub zconnector: Arc<ZConnector>,
}
impl FDUApi {
pub fn new(zconnector: Arc<ZConnector>, zenoh: Arc<zenoh::net::Session>) -> Self {
Self { zenoh, zconnector }
}
pub async fn onboard_fdu(&self, fdu: im::fdu::FDUDescriptor) -> FResult<Uuid> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.onboard_fdu(fdu).await? {
Ok(fdu_uuid) => Ok(fdu_uuid),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
pub async fn define_fdu(
&self,
fdu_uuid: Uuid,
node_uuid: Option<Uuid>,
) -> FResult<im::fdu::FDURecord> {
let entry_point = match node_uuid {
None => {
let nodes = self.zconnector.global.get_all_nodes().await?;
let ep = nodes.choose(&mut rand::thread_rng()).unwrap();
(&*ep).clone()
}
Some(node_uuid) => {
let ni = self.zconnector.global.get_node_info(node_uuid).await?;
ni
}
};
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_uuid {
None => match node_client.schedule_fdu(fdu_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
},
Some(_) => match node_client.define_fdu(fdu_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
},
}
}
pub async fn configure_fdu(&self, instance_uuid: Uuid) -> FResult<im::fdu::FDURecord> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.configure_fdu(instance_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
pub async fn start_fdu(&self, instance_uuid: Uuid) -> FResult<im::fdu::FDURecord> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.start_fdu(instance_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
pub async fn stop_fdu(&self, instance_uuid: Uuid) -> FResult<im::fdu::FDURecord> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.stop_fdu(instance_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
pub async fn clean_fdu(&self, instance_uuid: Uuid) -> FResult<im::fdu::FDURecord> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.clean_fdu(instance_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
pub async fn undefine_fdu(&self, instance_uuid: Uuid) -> FResult<im::fdu::FDURecord> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.undefine_fdu(instance_uuid).await? {
Ok(instance) => Ok(instance),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
pub async fn offload_fdu(&self, fdu_uuid: Uuid) -> FResult<Uuid> {
let nodes = self.zconnector.global.get_all_nodes().await?;
let entry_point = nodes.choose(&mut rand::thread_rng()).unwrap();
log::trace!(
"Selected node entry point: {}",
entry_point.agent_service_uuid
);
let node_client = AgentOrchestratorInterfaceClient::new(
self.zenoh.clone(),
entry_point.agent_service_uuid,
);
match node_client.offload_fdu(fdu_uuid).await? {
Ok(id) => Ok(id),
Err(e) => {
log::error!("Error occured: {}", e);
Err(e)
}
}
}
}
pub struct NodeApi {
pub zenoh: Arc<zenoh::net::Session>,
pub zconnector: Arc<ZConnector>,
}
impl NodeApi {
pub fn new(zconnector: Arc<ZConnector>, zenoh: Arc<zenoh::net::Session>) -> Self {
Self { zenoh, zconnector }
}
pub async fn list(&self) -> FResult<Vec<im::node::NodeInfo>> {
self.zconnector.global.get_all_nodes().await
}
pub async fn info(&self, node_uuid: Uuid) -> FResult<im::node::NodeInfo> {
self.zconnector.global.get_node_info(node_uuid).await
}
pub async fn status(&self, node_uuid: Uuid) -> FResult<im::node::NodeStatus> {
self.zconnector.global.get_node_status(node_uuid).await
}
}
pub struct NetworkApi {
pub zenoh: Arc<zenoh::net::Session>,
pub zconnector: Arc<ZConnector>,
}
pub struct FIMApi {
pub zenoh: Arc<zenoh::net::Session>,
pub zconnector: Arc<ZConnector>,
pub fdu: FDUApi,
pub node: NodeApi,
}
impl FIMApi {
pub fn new(zconnector: Arc<ZConnector>, zenoh: Arc<zenoh::net::Session>) -> Self {
Self {
zenoh: zenoh.clone(),
zconnector: zconnector.clone(),
fdu: FDUApi::new(zconnector.clone(), zenoh.clone()),
node: NodeApi::new(zconnector, zenoh),
}
}
}