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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
use std::collections::HashMap;
use crate::{
client::{Config, ImageLayer},
sha256_digest,
};
pub const WASM_LAYER_MEDIA_TYPE: &str = "application/vnd.wasm.content.layer.v1+wasm";
pub const WASM_CONFIG_MEDIA_TYPE: &str = "application/vnd.wasm.config.v1+json";
pub const IMAGE_MANIFEST_MEDIA_TYPE: &str = "application/vnd.docker.distribution.manifest.v2+json";
pub const IMAGE_MANIFEST_LIST_MEDIA_TYPE: &str =
"application/vnd.docker.distribution.manifest.list.v2+json";
pub const OCI_IMAGE_INDEX_MEDIA_TYPE: &str = "application/vnd.oci.image.index.v1+json";
pub const OCI_IMAGE_MEDIA_TYPE: &str = "application/vnd.oci.image.manifest.v1+json";
pub const IMAGE_CONFIG_MEDIA_TYPE: &str = "application/vnd.oci.image.config.v1+json";
pub const IMAGE_DOCKER_CONFIG_MEDIA_TYPE: &str = "application/vnd.docker.container.image.v1+json";
pub const IMAGE_LAYER_MEDIA_TYPE: &str = "application/vnd.oci.image.layer.v1.tar";
pub const IMAGE_LAYER_GZIP_MEDIA_TYPE: &str = "application/vnd.oci.image.layer.v1.tar+gzip";
pub const IMAGE_DOCKER_LAYER_TAR_MEDIA_TYPE: &str = "application/vnd.docker.image.rootfs.diff.tar";
pub const IMAGE_DOCKER_LAYER_GZIP_MEDIA_TYPE: &str =
"application/vnd.docker.image.rootfs.diff.tar.gzip";
pub const IMAGE_LAYER_NONDISTRIBUTABLE_MEDIA_TYPE: &str =
"application/vnd.oci.image.layer.nondistributable.v1.tar";
pub const IMAGE_LAYER_NONDISTRIBUTABLE_GZIP_MEDIA_TYPE: &str =
"application/vnd.oci.image.layer.nondistributable.v1.tar+gzip";
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
#[serde(untagged)]
pub enum OciManifest {
Image(OciImageManifest),
ImageIndex(OciImageIndex),
}
impl OciManifest {
pub fn content_type(&self) -> &str {
match self {
OciManifest::Image(_) => OCI_IMAGE_MEDIA_TYPE,
OciManifest::ImageIndex(_) => IMAGE_MANIFEST_LIST_MEDIA_TYPE,
}
}
}
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
#[serde(rename_all = "camelCase")]
pub struct OciImageManifest {
pub schema_version: u8,
#[serde(skip_serializing_if = "Option::is_none")]
pub media_type: Option<String>,
pub config: OciDescriptor,
pub layers: Vec<OciDescriptor>,
#[serde(skip_serializing_if = "Option::is_none")]
pub annotations: Option<HashMap<String, String>>,
}
impl Default for OciImageManifest {
fn default() -> Self {
OciImageManifest {
schema_version: 2,
media_type: None,
config: OciDescriptor::default(),
layers: vec![],
annotations: None,
}
}
}
impl OciImageManifest {
pub fn build(
layers: &[ImageLayer],
config: &Config,
annotations: Option<HashMap<String, String>>,
) -> Self {
let mut manifest = OciImageManifest::default();
manifest.config.media_type = config.media_type.to_string();
manifest.config.size = config.data.len() as i64;
manifest.config.digest = sha256_digest(&config.data);
manifest.annotations = annotations;
for layer in layers {
let digest = sha256_digest(&layer.data);
let descriptor = OciDescriptor {
size: layer.data.len() as i64,
digest,
media_type: layer.media_type.to_string(),
annotations: layer.annotations.clone(),
..Default::default()
};
manifest.layers.push(descriptor);
}
manifest
}
}
impl From<OciImageIndex> for OciManifest {
fn from(m: OciImageIndex) -> Self {
Self::ImageIndex(m)
}
}
impl From<OciImageManifest> for OciManifest {
fn from(m: OciImageManifest) -> Self {
Self::Image(m)
}
}
impl std::fmt::Display for OciManifest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
OciManifest::Image(oci_image_manifest) => write!(f, "{}", oci_image_manifest),
OciManifest::ImageIndex(oci_image_index) => write!(f, "{}", oci_image_index),
}
}
}
impl std::fmt::Display for OciImageIndex {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let media_type = self
.media_type
.clone()
.unwrap_or_else(|| String::from("N/A"));
let manifests: Vec<String> = self.manifests.iter().map(|m| m.to_string()).collect();
write!(
f,
"OCI Image Index( schema-version: '{}', media-type: '{}', manifests: '{}' )",
self.schema_version,
media_type,
manifests.join(","),
)
}
}
impl std::fmt::Display for OciImageManifest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let media_type = self
.media_type
.clone()
.unwrap_or_else(|| String::from("N/A"));
let annotations = self.annotations.clone().unwrap_or_default();
let layers: Vec<String> = self.layers.iter().map(|l| l.to_string()).collect();
write!(
f,
"OCI Image Manifest( schema-version: '{}', media-type: '{}', config: '{}', layers: '{:?}', annotations: '{:?}' )",
self.schema_version,
media_type,
self.config,
layers,
annotations,
)
}
}
#[derive(Clone, Debug, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Versioned {
pub schema_version: i32,
#[serde(skip_serializing_if = "Option::is_none")]
pub media_type: Option<String>,
}
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
#[serde(rename_all = "camelCase")]
pub struct OciDescriptor {
pub media_type: String,
pub digest: String,
pub size: i64,
#[serde(skip_serializing_if = "Option::is_none")]
pub urls: Option<Vec<String>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub annotations: Option<HashMap<String, String>>,
}
impl std::fmt::Display for OciDescriptor {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let urls = self.urls.clone().unwrap_or_default();
let annotations = self.annotations.clone().unwrap_or_default();
write!(
f,
"( media-type: '{}', digest: '{}', size: '{}', urls: '{:?}', annotations: '{:?}' )",
self.media_type, self.digest, self.size, urls, annotations,
)
}
}
impl Default for OciDescriptor {
fn default() -> Self {
OciDescriptor {
media_type: IMAGE_CONFIG_MEDIA_TYPE.to_owned(),
digest: "".to_owned(),
size: 0,
urls: None,
annotations: None,
}
}
}
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
#[serde(rename_all = "camelCase")]
pub struct OciImageIndex {
pub schema_version: u8,
#[serde(skip_serializing_if = "Option::is_none")]
pub media_type: Option<String>,
pub manifests: Vec<ImageIndexEntry>,
#[serde(skip_serializing_if = "Option::is_none")]
pub annotations: Option<HashMap<String, String>>,
}
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ImageIndexEntry {
pub media_type: String,
pub digest: String,
pub size: i64,
#[serde(skip_serializing_if = "Option::is_none")]
pub platform: Option<Platform>,
#[serde(skip_serializing_if = "Option::is_none")]
pub annotations: Option<HashMap<String, String>>,
}
impl std::fmt::Display for ImageIndexEntry {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let platform = self
.platform
.clone()
.map(|p| p.to_string())
.unwrap_or_else(|| String::from("N/A"));
let annotations = self.annotations.clone().unwrap_or_default();
write!(
f,
"(media-type: '{}', digest: '{}', size: '{}', platform: '{}', annotations: {:?})",
self.media_type, self.digest, self.size, platform, annotations,
)
}
}
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct Platform {
pub architecture: String,
pub os: String,
#[serde(rename = "os.version")]
#[serde(skip_serializing_if = "Option::is_none")]
pub os_version: Option<String>,
#[serde(rename = "os.features")]
#[serde(skip_serializing_if = "Option::is_none")]
pub os_features: Option<Vec<String>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub variant: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub features: Option<Vec<String>>,
}
impl std::fmt::Display for Platform {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let os_version = self
.os_version
.clone()
.unwrap_or_else(|| String::from("N/A"));
let os_features = self.os_features.clone().unwrap_or_default();
let variant = self.variant.clone().unwrap_or_else(|| String::from("N/A"));
let features = self.os_features.clone().unwrap_or_default();
write!(f, "( architecture: '{}', os: '{}', os-version: '{}', os-features: '{:?}', variant: '{}', features: '{:?}' )",
self.architecture,
self.os,
os_version,
os_features,
variant,
features,
)
}
}
#[cfg(test)]
mod test {
use super::*;
const TEST_MANIFEST: &str = r#"{
"schemaVersion": 2,
"mediaType": "application/vnd.docker.distribution.manifest.v2+json",
"config": {
"mediaType": "application/vnd.docker.container.image.v1+json",
"size": 2,
"digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
},
"layers": [
{
"mediaType": "application/vnd.wasm.content.layer.v1+wasm",
"size": 1615998,
"digest": "sha256:f9c91f4c280ab92aff9eb03b279c4774a80b84428741ab20855d32004b2b983f",
"annotations": {
"org.opencontainers.image.title": "module.wasm"
}
}
]
}
"#;
#[test]
fn test_manifest() {
let manifest: OciImageManifest =
serde_json::from_str(TEST_MANIFEST).expect("parsed manifest");
assert_eq!(2, manifest.schema_version);
assert_eq!(
Some(IMAGE_MANIFEST_MEDIA_TYPE.to_owned()),
manifest.media_type
);
let config = manifest.config;
assert_eq!(IMAGE_DOCKER_CONFIG_MEDIA_TYPE.to_owned(), config.media_type);
assert_eq!(2, config.size);
assert_eq!(
"sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a".to_owned(),
config.digest
);
assert_eq!(1, manifest.layers.len());
let wasm_layer = &manifest.layers[0];
assert_eq!(1_615_998, wasm_layer.size);
assert_eq!(WASM_LAYER_MEDIA_TYPE.to_owned(), wasm_layer.media_type);
assert_eq!(
1,
wasm_layer
.annotations
.as_ref()
.expect("annotations map")
.len()
);
}
}