/* * Copyright (c) 2021 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 OHOS_AAFWK_ABILITY_MANAGER_ERRORS_H #define OHOS_AAFWK_ABILITY_MANAGER_ERRORS_H #include "errors.h" namespace OHOS { namespace AAFwk { enum { /** * Module type: Ability Manager Service side */ ABILITY_MODULE_TYPE_SERVICE = 0, /** * Module type: ABility Kit side */ ABILITY_MODULE_TYPE_KIT = 1 }; // offset of aafwk error, only be used in this file. constexpr ErrCode AAFWK_SERVICE_ERR_OFFSET = ErrCodeOffset(SUBSYS_AAFWK, ABILITY_MODULE_TYPE_SERVICE); enum { /** * Result(2097152) for StartAbility: An error of the Want could not be resolved * to ability info from BMS or DistributedMS. */ RESOLVE_ABILITY_ERR = AAFWK_SERVICE_ERR_OFFSET, /** * Result(2097153) for Connect: An error of the get ability service. */ GET_ABILITY_SERVICE_FAILED, /** * Result(2097154) for Connect State: An error of the the ability service not connect. */ ABILITY_SERVICE_NOT_CONNECTED, /** * Result(2097155) for StartAbility: An error of the Want could not be resolved * to app info from BMS or DistributedMS. */ RESOLVE_APP_ERR, /** * Result(2097156) for StartAbility: An error of getting ability stack manager object. */ STACK_MANAGER_NOT_EXIST, /** * Result(2097157) for StartAbility: The ability to start is already at the top. */ ABILITY_EXISTED, /** * Result(2097158) for StartAbility: An error to create mission stack. */ CREATE_MISSION_STACK_FAILED, /** * Result(2097159) for StartAbility: An error to create mission record. */ CREATE_MISSION_RECORD_FAILED, /** * Result(2097160) for StartAbility: An error to create ability record. */ CREATE_ABILITY_RECORD_FAILED, /** * Result(2097161) for StartAbility: The ability to start is waiting. */ START_ABILITY_WAITING, /** * Result(2097162) for TerminateAbility: Don't allow to terminate launcher. */ TERMINATE_LAUNCHER_DENIED, /** * Result(2097163) for DisconnectAbility: Connection not exist. */ CONNECTION_NOT_EXIST, /** * Result(2097164) for DisconnectAbility:Connection is invalid state. */ INVALID_CONNECTION_STATE, /** * Result(2097165) for LoadctAbility:LoadAbility timeout. */ LOAD_ABILITY_TIMEOUT, /** * Result(2097166) for DisconnectAbility:Connection timeout. */ CONNECTION_TIMEOUT, /** * Result(2097167) for start service: An error of the get BundleManagerService. */ GET_BUNDLE_MANAGER_SERVICE_FAILED, /** * Result(2097168) for Remove mission: target mission is not in default stack. */ REMOVE_MISSION_ID_NOT_EXIST, /** * Result(2097169) for Remove mission: Don't allow to remove mission which has launcher ability. */ REMOVE_MISSION_LAUNCHER_DENIED, /** * Result(2097170) for Remove mission: Don't allow to remove mission which has active ability. */ REMOVE_MISSION_ACTIVE_DENIED, /** * Result(2097171) for Remove mission: An error of removing mission. */ REMOVE_MISSION_FAILED, /** * Result(2097172) for All: An error occurs in server. */ INNER_ERR, /** * Result(2097173) for Get recent mission: get recent missions failed */ GET_RECENT_MISSIONS_FAILED, /** * Result(2097174) for Remove stack: Don't allow to remove stack which has launcher ability. */ REMOVE_STACK_LAUNCHER_DENIED, /** * Result(2097175) for Remove stack: An error of removing stack. */ REMOVE_STACK_FAILED, /** * Result(2097176) for Remove stack: mission stack is empty */ MISSION_STACK_LIST_IS_EMPTY, /** * Result(2097177) for Remove stack: target stack is not exist. */ REMOVE_STACK_ID_NOT_EXIST, /** * Result(2097178) for ConnectAbility:target ability is not service ability. */ TARGET_ABILITY_NOT_SERVICE, /** * Result(2097179) for TerminateAbility:target service has a record of connect. It cannot be stopped. */ TERMINATE_SERVICE_IS_CONNECTED, /** * Result(2097180) for StartAbility:The ability to start is already activing.. */ START_SERVICE_ABILITY_ACTIVING, /** * Result(2097181) for move mission to top: An error of moving stack. */ MOVE_MISSION_FAILED, /** * Result(2097182) for kill process: An error of kill process. */ KILL_PROCESS_FAILED, /** * Result(2097183) for uninstall app: An error of uninstall app. */ UNINSTALL_APP_FAILED, /** * Result(2097184) for terminate ability result: An error of terminate servce. */ TERMINATE_ABILITY_RESULT_FAILED, /** * Result(2097185) for check permission failed. */ CHECK_PERMISSION_FAILED, /** * Result(2097186) for waiting ability lifecycle complete. */ POWER_OFF_WAITING, /** * Result(2097187) for power off failed. */ POWER_OFF_FAILED, /** * Result(2097188) for power on failed. */ POWER_ON_FAILED, /** * Result(2097189) for ability no first in mission. */ NO_FIRST_IN_MISSION, /** * Result(2097190) for lock mission errors. */ LOCK_MISSION_DENY_FAILED, /** * Result(2097191) for unlock mission errors. */ UNLOCK_MISSION_DENY_FAILED, /** * Result(2097192) for set mission info errors. */ SET_MISSION_INFO_FAILED, /** * Result(2097193) for system is lock mission state. */ LOCK_MISSION_STATE_DENY_REQUEST, /** * Result(2097194) for move mission to stack: out of size of moving mission. */ MOVE_MISSION_TO_STACK_OUT_OF_SIZE, /** * Result(2097195) for move mission to stack: moving missions are not same window mode. */ MOVE_MISSION_TO_STACK_NOT_SAME_WIN_MODE, /** * Result(2097196) for move mission to stack: moving mission is not exist. */ MOVE_MISSION_TO_STACK_NOT_EXIST_MISSION, /** * Result(2097197) for move mission to stack: target mission or ability can't support multi window display. */ MOVE_MISSION_TO_STACK_NOT_SUPPORT_MULTI_WIN, /** * Result(2097198) for move mission to stack: target mission stack size is overflow. */ MOVE_MISSION_TO_STACK_TARGET_STACK_OVERFLOW, /** * Result(2097199) for move mission to stack: already in moving state, request is denied. */ MOVE_MISSION_TO_STACK_MOVING_DENIED, /** * Result(2097200) for minimize multi window failed. */ MINIMIZE_MULTI_WINDOW_FAILED, /** * Result(2097201) for maximize multiwindow: target mission is not exist in multiwindow stack. */ MAXIMIZE_MULTIWINDOW_NOT_EXIST, /** * Result(2097202) for maximize multi window failed. */ MAXIMIZE_MULTIWINDOW_FAILED, /** * Result(2097203) for change focus ability failed. */ CHANGE_FOCUS_ABILITY_FAILED, /** * Result(2097204) for get floating stack failed */ GET_FLOATING_STACK_FAILED, /** * Result(2097205) for close mutli window failed */ CLOSE_MULTI_WINDOW_FAILED, /** * Result(2097202) for start ability by setting failed */ START_ABILITY_SETTING_FAILED, /** * Result(2097206) for start ability by setting ,the ability not support multiwindow. */ START_ABILITY_SETTING_NOT_SUPPORT_MULTI_WIN, /** * Result(2097207) for no found abilityrecord by caller */ NO_FOUND_ABILITY_BY_CALLER, /** * Result(2097208) for ability visible attribute is false. */ ABILITY_VISIBLE_FALSE_DENY_REQUEST, /** * Result(2097209) for caller is not systemapp. */ CALLER_ISNOT_SYSTEMAPP, }; enum { /** * Flag for use with {@link #GetRecentMissions}: return all missions */ RECENT_WITH_EXCLUDED = 0x0001, /** * Provides a list that does not contain any * recent missions that currently are not available to the user. */ RECENT_IGNORE_UNAVAILABLE = 0x0002, }; } // namespace AAFwk } // namespace OHOS #endif // OHOS_AAFWK_ABILITY_MANAGER_ERRORS_H