Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
iSulad
提交
b2e6e449
I
iSulad
项目概览
openeuler
/
iSulad
通知
15
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
I
iSulad
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b2e6e449
编写于
5月 06, 2020
作者:
H
haozi007
提交者:
lifeng68
7月 25, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor lookup api
Signed-off-by:
N
haozi007
<
liuhao27@huawei.com
>
上级
092665a5
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
26 addition
and
11 deletion
+26
-11
src/image/oci/storage/layer_store/layer_store.c
src/image/oci/storage/layer_store/layer_store.c
+12
-6
src/image/oci/storage/layer_store/layer_store.h
src/image/oci/storage/layer_store/layer_store.h
+1
-1
test/image/oci/storage/layers/storage_layers_llt.cc
test/image/oci/storage/layers/storage_layers_llt.cc
+13
-4
未找到文件。
src/image/oci/storage/layer_store/layer_store.c
浏览文件 @
b2e6e449
...
...
@@ -1198,23 +1198,29 @@ struct layer** layer_store_by_uncompress_digest(const char *digest, size_t *laye
return
layers_by_digest_map
(
g_metadata
.
by_uncompress_digest
,
digest
,
layers_len
);
}
cha
r
*
layer_store_lookup
(
const
char
*
name
)
struct
laye
r
*
layer_store_lookup
(
const
char
*
name
)
{
char
*
resul
t
=
NULL
;
struct
layer
*
re
t
=
NULL
;
layer_t
*
l
=
NULL
;
if
(
name
==
NULL
)
{
return
result
;
return
ret
;
}
ret
=
util_common_calloc_s
(
sizeof
(
struct
layer
));
if
(
ret
==
NULL
)
{
ERROR
(
"Out of memory"
);
return
ret
;
}
l
=
lookup_with_lock
(
name
);
if
(
l
==
NULL
)
{
return
re
sul
t
;
return
ret
;
}
layer_lock
(
l
);
result
=
util_strdup_s
(
l
->
slayer
->
id
);
copy_json_to_layer
(
l
,
ret
);
layer_unlock
(
l
);
layer_ref_dec
(
l
);
return
re
sul
t
;
return
ret
;
}
static
char
*
mount_helper
(
layer_t
*
l
,
const
struct
layer_store_mount_opts
*
opts
)
...
...
src/image/oci/storage/layer_store/layer_store.h
浏览文件 @
b2e6e449
...
...
@@ -57,7 +57,7 @@ struct layer** layer_store_list(size_t *layers_len);
bool
layer_store_is_used
(
const
char
*
id
);
struct
layer
**
layer_store_by_compress_digest
(
const
char
*
digest
,
size_t
*
layers_len
);
struct
layer
**
layer_store_by_uncompress_digest
(
const
char
*
digest
,
size_t
*
layers_len
);
cha
r
*
layer_store_lookup
(
const
char
*
name
);
struct
laye
r
*
layer_store_lookup
(
const
char
*
name
);
char
*
layer_store_mount
(
const
char
*
id
,
const
struct
layer_store_mount_opts
*
opts
);
int
layer_store_umount
(
const
char
*
id
,
bool
force
);
int
layer_store_mounted
(
const
char
*
id
);
...
...
test/image/oci/storage/layers/storage_layers_llt.cc
浏览文件 @
b2e6e449
...
...
@@ -179,10 +179,19 @@ TEST_F(StorageImagesUnitTest, test_layer_store_lookup)
std
::
string
id
{
"ac86325a0e6384e251f2f4418d7b36321ad6811f9ba8a3dc87e13d634b0ec1d1"
};
std
::
string
name
{
"689feccc14f14112b43b1fbf7dc14c3426e4fdd6e2bff462ec70b9f6ee4b3fae-layer"
};
std
::
string
incorrectId
{
"4db68de4ff27"
};
ASSERT_STREQ
(
layer_store_lookup
(
name
.
c_str
()),
id
.
c_str
());
ASSERT_STREQ
(
layer_store_lookup
(
id
.
c_str
()),
id
.
c_str
());
ASSERT_EQ
(
layer_store_lookup
(
incorrectId
.
c_str
()),
nullptr
);
struct
layer
*
l
=
NULL
;
l
=
layer_store_lookup
(
name
.
c_str
());
ASSERT_NE
(
l
,
nullptr
);
ASSERT_STREQ
(
l
->
id
,
id
.
c_str
());
free_layer
(
l
);
l
=
layer_store_lookup
(
id
.
c_str
());
ASSERT_NE
(
l
,
nullptr
);
ASSERT_STREQ
(
l
->
id
,
id
.
c_str
());
free_layer
(
l
);
l
=
layer_store_lookup
(
incorrectId
.
c_str
());
ASSERT_EQ
(
l
->
id
,
nullptr
);
free_layer
(
l
);
}
TEST_F
(
StorageImagesUnitTest
,
test_layer_store_exists
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录