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
use serde::Deserialize;
use std::fmt;
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone)]
pub(crate) struct GNS3ResponseVersion {
pub version: String,
pub local: bool,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct GNS3Project {
#[serde(rename = "project_id")]
pub id: String,
pub name: String,
pub path: String,
pub filename: String,
pub status: GNS3ProjectStatus,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, PartialEq, Eq, Clone, Copy)]
pub enum GNS3ProjectStatus {
#[serde(rename = "opened")]
Opened,
#[serde(rename = "closed")]
Closed,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct GNS3Node {
#[serde(rename = "node_id")]
pub id: String,
pub name: String,
pub node_type: String,
#[serde(rename = "console")]
pub port: u16,
pub status: GNS3NodeStatus,
#[serde(rename = "ports")]
pub interfaces: Vec<GNS3Interface>,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, PartialEq, Eq, Clone, Copy)]
pub enum GNS3NodeStatus {
#[serde(rename = "stopped")]
Stopped,
#[serde(rename = "started")]
Started,
#[serde(rename = "suspended")]
Suspended,
}
impl GNS3NodeStatus {
pub fn is_started(&self) -> bool {
matches!(self, Self::Started)
}
pub fn is_stopped(&self) -> bool {
matches!(self, Self::Stopped)
}
pub fn is_suspended(&self) -> bool {
matches!(self, Self::Suspended)
}
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct GNS3Interface {
pub adapter_number: u32,
pub port_number: u32,
pub name: String,
pub short_name: String,
pub link_type: String,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct GNS3Template {
#[serde(rename = "template_id")]
pub id: String,
pub name: String,
pub category: String,
pub template_type: String,
pub hda_disk_image: Option<String>,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct GNS3Link {
#[serde(rename = "link_id")]
pub id: String,
pub nodes: [GNS3LinkEndpoint; 2],
pub capture_file_name: Option<String>,
pub capture_file_path: Option<String>,
pub capturing: bool,
}
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct GNS3LinkEndpoint {
pub node_id: String,
pub adapter_number: u32,
pub port_number: u32,
}
impl GNS3LinkEndpoint {
pub fn from_node(node: &GNS3Node, iface_id: usize) -> Self {
Self {
node_id: node.id.clone(),
adapter_number: node.interfaces.get(iface_id).unwrap().adapter_number,
port_number: node.interfaces.get(iface_id).unwrap().port_number,
}
}
}
impl fmt::Display for GNS3LinkEndpoint {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"{{ \"node_id\": \"{}\", \"adapter_number\": {}, \"port_number\": {} }}",
self.node_id, self.adapter_number, self.port_number
)
}
}