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
use serde::{ Deserialize, Serialize };
use std::collections::HashMap;

#[derive(Serialize, Deserialize, PartialEq, Debug, Default)]
pub struct ImageVersionJSONValue {
    pub image_version: HashMap<String,String>,
}


#[derive(Serialize, Deserialize, PartialEq, Debug, Default)]
pub struct ImageLayerLayerDiffIDToLayerDigestJSONValue {
    pub image_digest_layerdiffid_to_layerdigest: HashMap<String,String>,
}


#[derive(Serialize, Deserialize, PartialEq, Debug, Default)]
pub struct ImageLayerLayerDigestToLayerDiffIDJSONValue {
    pub image_digest_layerdigest_to_layerdiffid: HashMap<String,String>,
}


// 写入数据库格式为image_id:{ layer_diff_id0:level0, layer_diff_id1:level1 }
// level为[0,1,2,3...]
#[derive(Serialize, Deserialize, PartialEq, Debug, Default)]
pub struct ImageLayerLevelJSONValue {
    pub image_layer_level: HashMap<String,String>,
}



// 写入数据库格式为 image_id:{ chainid0:{cacheid0,diffid0,parentchainid0,size0},chainid1:{cacheid1,diffid1,parentchainid1,size1} }
#[derive(Serialize, Deserialize, PartialEq, Debug)]
pub struct ImageChainIDJSONValue {
    pub image_chain_id: HashMap<String,ImageChainIDItemJSONValue>,
}

#[derive(Serialize, Deserialize, PartialEq, Debug, Default)]
pub struct ImageChainIDItemJSONValue {
    pub cache_id: String,
    pub diff_id: String,
    pub parent_chain_id:String,
    pub size:String
}