1 Star 0 Fork 101

gaoliang_0311 / hiviewdfx_hiview_lite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
hiview_def.h 2.46 KB
一键复制 编辑 原始数据 按行查看 历史
mamingshuai 提交于 2021-03-11 18:40 . update openharmony 1.0.1
/*
* Copyright (c) 2020 Huawei Device Co., Ltd.
* 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.
*/
#ifndef HOS_LITE_HIVIEW_DEF_H
#define HOS_LITE_HIVIEW_DEF_H
#include "ohos_types.h"
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif /* End of #ifdef __cplusplus */
#define HIVIEW_SERVICE "hiview"
#define LOG_INFO_HEAD 0xEC
#define EVENT_INFO_HEAD 0xEA
#define MS_PER_SECOND 1000
#define SECONDS_PER_DAY 86400
#define SECONDS_PER_HOUR 3600
#define SECONDS_PER_MINUTE 60
#define LOG_FMT_MAX_LEN 128
#define LOG_CONTENT_MAX_LEN 96
#define LOG_MODULE_NAME_LEN 16
#define LOG_TIME_STR_SIZE 10
#define TAIL_LINE_BREAK 2
#define READ_FILE_BUF_MAX_SIZE 1024
/**
* Event id : eventPrefix + eventId
* eventPrefix: 9520/9521/9522
* eventId: 0-65535
**/
#define FAULT_EVENT_PREFIX 9520
#define UE_EVENT_PREFIX 9521
#define STAT_EVENT_PREFIX 9522
typedef enum {
LOG_MULTI_PARA_0 = 0,
LOG_MULTI_PARA_1 = 1,
LOG_MULTI_PARA_2 = 2,
LOG_MULTI_PARA_3 = 3,
LOG_MULTI_PARA_4 = 4,
LOG_MULTI_PARA_5 = 5,
LOG_MULTI_PARA_MAX = 6
} LogMultiParaIndex;
#pragma pack(1)
typedef struct {
uint8 id;
const char *name; /* LOG_MODULE_NAME_LEN */
} HiLogModuleInfo;
typedef struct {
uint8 head;
uint8 module;
uint8 level : 4;
uint8 valueNumber : 4;
uint8 task;
uint32 time; /* seconds */
const char *fmt;
} HiLogCommon;
typedef struct {
HiLogCommon commonContent;
uint32 values[LOG_MULTI_PARA_MAX];
} HiLogContent;
#pragma pack()
typedef struct {
uint8 last : 1; /* Indicates whether the last parameter. */
uint8 id : 4;
uint8 len : 3;
} HiEventTag;
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* End of #ifdef __cplusplus */
#endif /* End of #ifndef HOS_LITE_HIVIEW_DEF_H */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaoliang_0311/hiviewdfx_hiview_lite.git
git@gitee.com:gaoliang_0311/hiviewdfx_hiview_lite.git
gaoliang_0311
hiviewdfx_hiview_lite
hiviewdfx_hiview_lite
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891