Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
fdf1a131
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看板
提交
fdf1a131
编写于
6月 27, 2022
作者:
M
Mupceet
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
log整改
Signed-off-by:
N
Mupceet
<
laiguizhong@huawei.com
>
上级
647e000c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
30 addition
and
27 deletion
+30
-27
interfaces/innerkits/BUILD.gn
interfaces/innerkits/BUILD.gn
+1
-0
interfaces/innerkits/include/beget_ext.h
interfaces/innerkits/include/beget_ext.h
+1
-0
services/log/init_log.c
services/log/init_log.c
+28
-27
未找到文件。
interfaces/innerkits/BUILD.gn
浏览文件 @
fdf1a131
...
...
@@ -28,6 +28,7 @@ config("exported_header_files") {
"//base/startup/init_lite/interfaces/innerkits/include/fs_manager",
"//base/startup/init_lite/interfaces/innerkits/include/token",
"//base/startup/init_lite/interfaces/innerkits/include/sandbox/include",
"//base/startup/init_lite/services/include",
]
}
...
...
interfaces/innerkits/include/beget_ext.h
浏览文件 @
fdf1a131
...
...
@@ -17,6 +17,7 @@
#define BEGET_EXT_API_H
#include <stdint.h>
#include <stdarg.h>
#include <string.h>
#ifdef __cplusplus
#if __cplusplus
...
...
services/log/init_log.c
浏览文件 @
fdf1a131
...
...
@@ -34,7 +34,6 @@
#endif
#define DEF_LOG_SIZE 128
#define MAX_LOG_SIZE 1024
#define BASE_YEAR 1900
static
InitLogLevel
g_logLevel
=
INIT_INFO
;
...
...
@@ -81,21 +80,38 @@ void LogToDmesg(InitLogLevel logLevel, const char *tag, const char *info)
return
;
}
}
char
logInfo
[
MAX_LOG_SIZE
]
;
if
(
snprintf_s
(
logInfo
,
MAX_LOG_SIZE
,
MAX_LOG_SIZE
-
1
,
"%s[pid=%d
%d][%s][%s]%s"
,
LOG_KLEVEL_STR
[
logLevel
],
getpid
(),
getppid
(),
tag
,
LOG_LEVEL_STR
[
logLevel
],
info
)
==
-
1
)
{
close
(
g_fd
);
g_fd
=
-
1
;
char
logInfo
[
DEF_LOG_SIZE
+
DEF_LOG_SIZE
]
=
{
0
}
;
if
(
snprintf_s
(
logInfo
,
sizeof
(
logInfo
),
sizeof
(
logInfo
)
-
1
,
"%s[pid=
%d][%s][%s]%s"
,
LOG_KLEVEL_STR
[
logLevel
],
getpid
(),
tag
,
LOG_LEVEL_STR
[
logLevel
],
info
)
==
-
1
)
{
logInfo
[
sizeof
(
logInfo
)
-
2
]
=
'\n'
;
// 2 add \n to tail
logInfo
[
sizeof
(
logInfo
)
-
1
]
=
'\0'
;
return
;
}
if
(
write
(
g_fd
,
logInfo
,
strlen
(
logInfo
))
<
0
)
{
close
(
g_fd
);
g_fd
=
-
1
;
printf
(
"%s
\n
"
,
logInfo
);
}
return
;
}
#endif
static
void
PrintLog
(
InitLogLevel
logLevel
,
unsigned
int
domain
,
const
char
*
tag
,
const
char
*
logInfo
)
{
#ifdef OHOS_LITE
static
const
LogLevel
LOG_LEVEL
[]
=
{
LOG_DEBUG
,
LOG_INFO
,
LOG_WARN
,
LOG_ERROR
,
LOG_FATAL
};
(
void
)
HiLogPrint
(
INIT_LOG_INIT
,
LOG_LEVEL
[
logLevel
],
domain
,
tag
,
"%{public}s"
,
logInfo
);
#endif
#ifdef INIT_DMESG
LogToDmesg
(
logLevel
,
tag
,
logInfo
);
#endif
#ifdef INIT_AGENT
static
const
LogLevel
LOG_LEVEL
[]
=
{
LOG_DEBUG
,
LOG_INFO
,
LOG_WARN
,
LOG_ERROR
,
LOG_FATAL
};
HiLogBasePrint
(
LOG_CORE
,
LOG_LEVEL
[
logLevel
],
domain
,
tag
,
"%{public}s"
,
logInfo
);
#endif
#ifdef INIT_FILE
LogToFile
(
INIT_LOG_PATH
"begetctl.log"
,
tag
,
logInfo
);
#endif
}
static
void
InitLog
(
InitLogLevel
logLevel
,
unsigned
int
domain
,
const
char
*
tag
,
const
char
*
fmt
,
va_list
vargs
)
{
if
(
g_logLevel
>
logLevel
)
{
...
...
@@ -103,27 +119,12 @@ static void InitLog(InitLogLevel logLevel, unsigned int domain, const char *tag,
}
char
tmpFmt
[
DEF_LOG_SIZE
]
=
{
0
};
if
(
vsnprintf_s
(
tmpFmt
,
sizeof
(
tmpFmt
),
sizeof
(
tmpFmt
)
-
1
,
fmt
,
vargs
)
==
-
1
)
{
#ifdef OHOS_LITE
static
LogLevel
LOG_LEVEL
[]
=
{
LOG_DEBUG
,
LOG_INFO
,
LOG_WARN
,
LOG_ERROR
,
LOG_FATAL
};
(
void
)
HiLogPrint
(
INIT_LOG_INIT
,
LOG_LEVEL
[
logLevel
],
domain
,
tag
,
"%{public}s"
,
fmt
);
#endif
tmpFmt
[
sizeof
(
tmpFmt
)
-
2
]
=
'\n'
;
// 2 add \n to tail
tmpFmt
[
sizeof
(
tmpFmt
)
-
1
]
=
'\0'
;
PrintLog
(
logLevel
,
domain
,
tag
,
tmpFmt
);
return
;
}
#ifdef OHOS_LITE
static
LogLevel
LOG_LEVEL
[]
=
{
LOG_DEBUG
,
LOG_INFO
,
LOG_WARN
,
LOG_ERROR
,
LOG_FATAL
};
(
void
)
HiLogPrint
(
INIT_LOG_INIT
,
LOG_LEVEL
[
logLevel
],
domain
,
tag
,
"%{public}s"
,
tmpFmt
);
#endif
#ifdef INIT_DMESG
LogToDmesg
(
logLevel
,
tag
,
tmpFmt
);
#endif
#ifdef INIT_AGENT
static
LogLevel
LOG_LEVEL
[]
=
{
LOG_DEBUG
,
LOG_INFO
,
LOG_WARN
,
LOG_ERROR
,
LOG_FATAL
};
HiLogBasePrint
(
LOG_CORE
,
LOG_LEVEL
[
logLevel
],
domain
,
tag
,
"%{public}s"
,
tmpFmt
);
#ifdef INIT_FILE
LogToFile
(
INIT_LOG_PATH
"begetctl.log"
,
tag
,
tmpFmt
);
#endif
#endif
PrintLog
(
logLevel
,
domain
,
tag
,
tmpFmt
);
}
INIT_PUBLIC_API
void
EnableInitLog
(
InitLogLevel
level
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录