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
pub use podman_api_stubs::models::*;
use crate::{Error, Result};
#[cfg(feature = "chrono")]
use {
crate::util::datetime::*,
chrono::{DateTime, Utc},
};
use hyper::header::HeaderMap;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::string::ToString;
pub type Attributes = HashMap<String, String>;
#[derive(Serialize, Debug)]
pub struct LibpodPingInfo {
pub api_version: String,
pub libpod_api_version: String,
pub libpod_buildah_version: String,
pub buildkit_version: Option<String>,
pub cache_control: String,
pub docker_experimental: bool,
pub pragma: String,
}
impl TryFrom<&HeaderMap> for LibpodPingInfo {
type Error = Error;
fn try_from(value: &HeaderMap) -> Result<Self> {
macro_rules! extract_str {
($id:literal) => {{
if let Some(val) = value.get($id) {
val.to_str().map(ToString::to_string).map_err(|e| {
Error::InvalidResponse(format!(
"failed to convert header to string - {}",
e
))
})?
} else {
return Err(Error::InvalidResponse(format!(
"expected `{}` field in headers",
$id
)));
}
}};
}
Ok(LibpodPingInfo {
api_version: extract_str!("api-version"),
libpod_api_version: extract_str!("libpod-api-version"),
buildkit_version: value
.get("buildkit-version")
.and_then(|v| v.to_str().map(ToString::to_string).ok()),
docker_experimental: extract_str!("docker-experimental").parse().map_err(|e| {
Error::InvalidResponse(format!("expected header value to be bool - {}", e))
})?,
cache_control: extract_str!("cache-control"),
pragma: extract_str!("pragma"),
libpod_buildah_version: extract_str!("libpod-buildah-version"),
})
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Event {
#[serde(rename = "Type")]
pub typ: String,
#[serde(rename = "Action")]
pub action: String,
#[serde(rename = "Actor")]
pub actor: Actor,
pub status: Option<String>,
pub id: Option<String>,
pub from: Option<String>,
#[cfg(feature = "chrono")]
#[serde(deserialize_with = "datetime_from_unix_timestamp")]
pub time: DateTime<Utc>,
#[cfg(not(feature = "chrono"))]
pub time: u64,
#[cfg(feature = "chrono")]
#[serde(deserialize_with = "datetime_from_nano_timestamp", rename = "timeNano")]
pub time_nano: DateTime<Utc>,
#[cfg(not(feature = "chrono"))]
#[serde(rename = "timeNano")]
pub time_nano: u64,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Actor {
#[serde(rename = "ID")]
pub id: String,
#[serde(rename = "Attributes")]
pub attributes: Attributes,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ContainerStatus {
Created,
Configured,
Restarting,
Running,
Removing,
Paused,
Exited,
Dead,
}
impl AsRef<str> for ContainerStatus {
fn as_ref(&self) -> &str {
use ContainerStatus::*;
match &self {
Created => "created",
Configured => "configured",
Restarting => "restarting",
Running => "running",
Removing => "removing",
Paused => "paused",
Exited => "exited",
Dead => "dead",
}
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ContainerHealth {
Starting,
Healthy,
Unhealthy,
None,
}
impl AsRef<str> for ContainerHealth {
fn as_ref(&self) -> &str {
use ContainerHealth::*;
match &self {
Starting => "starting",
Healthy => "healthy",
Unhealthy => "unhealthy",
None => "none",
}
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum PodStatus {
Created,
Dead,
Degraded,
Exited,
Paused,
Running,
Stopped,
}
impl AsRef<str> for PodStatus {
fn as_ref(&self) -> &str {
use PodStatus::*;
match &self {
Created => "created",
Dead => "dead",
Degraded => "degraded",
Exited => "exited",
Paused => "paused",
Running => "running",
Stopped => "stopped",
}
}
}