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
/*
   Copyright The containerd Authors.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

// Forked from https://github.com/pwFoo/rust-runc/blob/313e6ae5a79b54455b0a242a795c69adf035141a/src/lib.rs

/*
 * Copyright 2020 fsyncd, Berlin, Germany.
 * Additional material, copyright of the containerd authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

use std::collections::HashMap;

use serde::{Deserialize, Serialize};
use time::serde::timestamp;
use time::OffsetDateTime;

/// Information for runc container
#[derive(Debug, Serialize, Deserialize)]
pub struct Container {
    pub id: String,
    pub pid: usize,
    pub status: String,
    pub bundle: String,
    pub rootfs: String,
    #[serde(with = "timestamp")]
    pub created: OffsetDateTime,
    pub annotations: HashMap<String, String>,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn serde_test() {
        let j = r#"
            {
                "id": "fake",
                "pid": 1000,
                "status": "RUNNING",
                "bundle": "/path/to/bundle",
                "rootfs": "/path/to/rootfs",
                "created": 1431684000,
                "annotations": {
                    "foo": "bar"
                }
            }"#;

        let c: Container = serde_json::from_str(j).unwrap();
        assert_eq!(c.id, "fake");
        assert_eq!(c.pid, 1000);
        assert_eq!(c.status, "RUNNING");
        assert_eq!(c.bundle, "/path/to/bundle");
        assert_eq!(c.rootfs, "/path/to/rootfs");
        assert_eq!(
            c.created,
            OffsetDateTime::from_unix_timestamp(1431684000).unwrap()
        );
        assert_eq!(c.annotations.get("foo"), Some(&"bar".to_string()));
        assert_eq!(c.annotations.get("bar"), None);
    }
}