代码拉取完成,页面将自动刷新
同步操作将从 OpenHarmony/hiviewdfx_hiview_lite 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* 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_CACHE_H
#define HOS_LITE_HIVIEW_CACHE_H
#include "ohos_types.h"
#include "hiview_util.h"
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif /* End of #ifdef __cplusplus */
typedef enum {
CORE_CACHE = 0,
LOG_CACHE,
JS_LOG_CACHE,
DUMP_CACHE,
FAULT_EVENT_CACHE,
UE_EVENT_CACHE,
STAT_EVENT_CACHE,
} HiviewCacheType;
#pragma pack(1)
typedef struct {
uint16 wCursor; // 0-65535
uint16 usedSize; // 0-65535
uint16 size; // cache size 0-65535
HiviewCacheType type;
uint8 *buffer; // Circular buffer
} HiviewCache;
#pragma pack()
/**
* Initialize the cache object using static memory.
* @param cache Operation object.
* @param type cache type.
* @param buffer External static memory.
* @param size Static memory size.
* @return TRUE/FALSE.
**/
boolean InitHiviewStaticCache(HiviewCache *cache, HiviewCacheType type, uint8 *buffer, uint16 size);
/**
* Initialize the cache object.
* @param cache Operation object.
* @param type cache type.
* @param size cache size.
* @return TRUE/FALSE.
**/
boolean InitHiviewCache(HiviewCache *cache, HiviewCacheType type, uint16 size);
/**
* Write data to cache.
* @param cache Operation object.
* @param data Data to be written to the cache.
* @param wLen The length of the data to be written.
* @return Length write.
**/
int32 WriteToCache(HiviewCache *cache, const uint8 *data, uint16 wLen);
/**
* Read data form cache.
* @param cache Operation object.
* @param data Read buffer.
* @param rLen The length of the data to be read.
* @return Length read.
**/
int32 ReadFromCache(HiviewCache *cache, uint8 *data, uint16 rLen);
/**
* Preread data form cache.
* Use this method when you don't want to modify the read status of the cache.
* @param cache Operation object.
* @param data Read buffer.
* @param rLen The length of the data to be read.
* @return Length read.
* @attention The value of rCursor will not be changed.
**/
int32 PrereadFromCache(HiviewCache *cache, uint8 *data, uint16 rLen);
/**
* Discard all cache data.
* Use this method when an unrecoverable data exception is detected.
* @param cache Operation object.
**/
void DiscardCacheData(HiviewCache *cache);
/**
* Destroy the cache and release the memory.
* @param cache Operation object.
**/
void DestroyCache(HiviewCache *cache);
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* End of #ifdef __cplusplus */
#endif /* End of #ifndef HOS_LITE_HIVIEW_CACHE_H */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。