Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
5e02675b
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
1 年多 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5e02675b
编写于
5月 12, 2022
作者:
M
Mupceet
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:xts bug
Signed-off-by:
N
Mupceet
<
laiguizhong@huawei.com
>
上级
c6f0dced
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
26 addition
and
9 deletion
+26
-9
interfaces/innerkits/syspara/param_comm.c
interfaces/innerkits/syspara/param_comm.c
+8
-0
interfaces/innerkits/syspara/param_comm.h
interfaces/innerkits/syspara/param_comm.h
+1
-0
interfaces/innerkits/syspara/param_wrapper.cpp
interfaces/innerkits/syspara/param_wrapper.cpp
+17
-9
未找到文件。
interfaces/innerkits/syspara/param_comm.c
浏览文件 @
5e02675b
...
...
@@ -31,6 +31,14 @@
static
const
char
*
g_emptyStr
=
""
;
int
IsValidValue
(
const
char
*
value
,
unsigned
int
len
)
{
if
((
value
==
NULL
)
||
!
strlen
(
value
)
||
(
strlen
(
value
)
+
1
>
len
))
{
return
0
;
}
return
1
;
}
int
HalGetParameter
(
const
char
*
key
,
const
char
*
def
,
char
*
value
,
uint32_t
len
)
{
if
((
key
==
NULL
)
||
(
value
==
NULL
))
{
...
...
interfaces/innerkits/syspara/param_comm.h
浏览文件 @
5e02675b
...
...
@@ -39,6 +39,7 @@ const char *GetProductModel_(void);
const
char
*
GetManufacture_
(
void
);
const
char
*
GetSerial_
(
void
);
int
GetDevUdid_
(
char
*
udid
,
int
size
);
int
IsValidValue
(
const
char
*
value
,
unsigned
int
len
);
#ifdef __cplusplus
#if __cplusplus
...
...
interfaces/innerkits/syspara/param_wrapper.cpp
浏览文件 @
5e02675b
...
...
@@ -67,14 +67,20 @@ std::string GetParameter(const std::string& key, const std::string& def)
uint32_t
size
=
0
;
int
ret
=
SystemReadParam
(
key
.
c_str
(),
NULL
,
&
size
);
if
(
ret
!=
0
)
{
return
std
::
string
(
def
);
if
(
IsValidValue
(
def
.
c_str
(),
def
.
size
())
==
1
)
{
return
std
::
string
(
def
);
}
return
""
;
}
std
::
vector
<
char
>
value
(
size
+
1
);
ret
=
SystemReadParam
(
key
.
c_str
(),
value
.
data
(),
&
size
);
if
(
ret
==
0
)
{
return
std
::
string
(
value
.
data
());
}
return
std
::
string
(
def
);
if
(
IsValidValue
(
def
.
c_str
(),
def
.
size
())
==
1
)
{
return
std
::
string
(
def
);
}
return
""
;
}
bool
GetBoolParameter
(
const
std
::
string
&
key
,
bool
def
)
...
...
@@ -99,16 +105,18 @@ int GetStringParameter(const std::string key, std::string &value, const std::str
{
uint32_t
size
=
0
;
int
ret
=
SystemReadParam
(
key
.
c_str
(),
NULL
,
&
size
);
if
(
ret
!=
0
)
{
value
=
def
;
return
EC_FAILURE
;
}
value
.
resize
(
size
+
1
);
ret
=
SystemReadParam
(
key
.
c_str
(),
const_cast
<
char
*>
(
value
.
data
()),
&
size
);
if
(
ret
==
0
)
{
std
::
vector
<
char
>
value
(
size
+
1
);
ret
=
SystemReadParam
(
key
.
c_str
(),
value
.
data
(),
&
size
);
if
(
ret
==
0
)
{
value
=
std
::
string
(
value
.
data
());
return
EC_SUCCESS
;
}
}
if
(
IsValidValue
(
def
.
c_str
(),
def
.
size
())
==
1
)
{
value
=
std
::
string
(
def
);
return
EC_SUCCESS
;
}
value
=
def
;
return
EC_FAILURE
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录