interface_sdk-js/api/@ohos.faultLogger.d.ts
zhupu 4af3769b33 API version modify
Signed-off-by: zhupu <zhupu5@huawei.com>
2025-03-03 10:35:01 +08:00

204 lines
5.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (C) 2021-2022 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.
*/
/**
* @file
* @kit PerformanceAnalysisKit
*/
import type { AsyncCallback } from './@ohos.base';
/**
* This module provides the capability to query faultlog data.
* This module is deprecated since 18, please use hiAppEvent to monitor APP_CRASH and APP_FREEZE event
* @namespace FaultLogger
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
* @useinstead ohos.hiviewdfx.hiAppEvent
*/
declare namespace FaultLogger {
/**
* The type of fault type.
* @enum { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
enum FaultType {
/**
* NO_SPECIFIC log type not distinguished.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
NO_SPECIFIC = 0,
/**
* CPP_CRASH CPP crash log type.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
CPP_CRASH = 2,
/**
* JS_CRASH JS crash log type.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
JS_CRASH = 3,
/**
* APP_FREEZE app freeze log type.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
APP_FREEZE = 4,
}
/**
* Query the result of the current application FaultLog in callback Mode.
* @param { FaultType } faultType - Fault type to query
* @param { AsyncCallback<Array<FaultLogInfo>> } callback - Faultlog information data callback function
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 9
* @useinstead ohos.faultlogger/FaultLogger#query
*/
function querySelfFaultLog(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
/**
* Query the result of the current application FaultLog in return promise mode.
* @param { FaultType } faultType - Fault type to query
* @returns { Promise<Array<FaultLogInfo>> } return faultlog information data by promise
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 9
* @useinstead ohos.faultlogger/FaultLogger#query
*/
function querySelfFaultLog(faultType: FaultType): Promise<Array<FaultLogInfo>>;
/**
* Query the result of the current application FaultLog in callback Mode.
* @param { FaultType } faultType - Fault type to query
* @param { AsyncCallback<Array<FaultLogInfo>> } callback - Faultlog information data callback function
* @throws { BusinessError } 401 - The parameter check failed, Parameter type error
* @throws { BusinessError } 801 - The specified SystemCapability name was not found
* @throws { BusinessError } 10600001 - The service is not started or is faulty
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 9
* @deprecated since 18
*/
function query(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
/**
* Query the result of the current application FaultLog in return promise mode.
* @param { FaultType } faultType - Fault type to query
* @returns { Promise<Array<FaultLogInfo>> } return faultlog information data by promise
* @throws { BusinessError } 401 - The parameter check failed, Parameter type error
* @throws { BusinessError } 801 - The specified SystemCapability name was not found
* @throws { BusinessError } 10600001 - The service is not started or is faulty
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 9
* @deprecated since 18
*/
function query(faultType: FaultType): Promise<Array<FaultLogInfo>>;
/**
* FaultLog information data structure.
* @interface FaultLogInfo
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
interface FaultLogInfo {
/**
* Process id.
* @type { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
pid: number;
/**
* User id.
* @type { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
uid: number;
/**
* Fault type.
* @type { FaultType }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
type: FaultType;
/**
* Second level timestamp.
* @type { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
timestamp: number;
/**
* Fault reason.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
reason: string;
/**
* Fault module.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
module: string;
/**
* Fault summary.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
summary: string;
/**
* Fault log.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
fullLog: string;
}
}
export default FaultLogger;