1/* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"), 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16import { ElementName } from '../bundleManager/ElementName'; 17import bundle from '../@ohos.bundle.bundleManager'; 18 19/** 20 * The class of an extension running information. 21 * 22 * @since 9 23 * @syscap SystemCapability.Ability.AbilityRuntime.Core 24 * @systemapi hide this for inner system use 25 * @permission N/A 26 */ 27export interface ExtensionRunningInfo { 28 /** 29 * @default Indicates the extension of the extension info 30 * @since 9 31 * @syscap SystemCapability.Ability.AbilityRuntime.Core 32 * @systemapi hide this for inner system use 33 */ 34 extension: ElementName; 35 36 /** 37 * @default process id 38 * @since 9 39 * @syscap SystemCapability.Ability.AbilityRuntime.Core 40 * @systemapi hide this for inner system use 41 */ 42 pid: number; 43 44 /** 45 * @default user id 46 * @since 9 47 * @syscap SystemCapability.Ability.AbilityRuntime.Core 48 * @systemapi hide this for inner system use 49 */ 50 uid: number; 51 52 /** 53 * @default the name of the process 54 * @since 9 55 * @syscap SystemCapability.Ability.AbilityRuntime.Core 56 * @systemapi hide this for inner system use 57 */ 58 processName: string; 59 60 /** 61 * @default ability start time 62 * @since 9 63 * @syscap SystemCapability.Ability.AbilityRuntime.Core 64 * @systemapi hide this for inner system use 65 */ 66 startTime: number; 67 68 /** 69 * @default All package names under the current process 70 * @since 9 71 * @syscap SystemCapability.Ability.AbilityRuntime.Core 72 * @systemapi hide this for inner system use 73 */ 74 clientPackage: Array<String>; 75 76 /** 77 * @default Enumerates types of the extension info 78 * @since 9 79 * @syscap SystemCapability.Ability.AbilityRuntime.Core 80 * @systemapi hide this for inner system use 81 */ 82 type: bundle.ExtensionAbilityType; 83}