/* * Copyright (c) 2021-2024 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. */ #include "ability_manager.h" #include "hilog_tag_wrapper.h" #include "hitrace_meter.h" #include "singleton.h" #include "sys_mgr_client.h" #include "system_ability_definition.h" namespace OHOS { namespace AppExecFwk { AbilityManager &AbilityManager::GetInstance() { static AbilityManager abilityManager; return abilityManager; } void AbilityManager::StartAbility(const Want &want, int requestCode = -1) { TAG_LOGD(AAFwkTag::APPKIT, "%s, %d", __func__, __LINE__); ErrCode error = AAFwk::AbilityManagerClient::GetInstance()->StartAbility(want, requestCode); if (error != ERR_OK) { TAG_LOGE(AAFwkTag::APPKIT, "%s failed, error : %d", __func__, error); } } int32_t AbilityManager::ClearUpApplicationData(const std::string &bundleName) { TAG_LOGI(AAFwkTag::APPKIT, "%s, %d", __func__, __LINE__); auto object = OHOS::DelayedSingleton::GetInstance()->GetSystemAbility(APP_MGR_SERVICE_ID); sptr appMgr_ = iface_cast(object); if (appMgr_ == nullptr) { TAG_LOGE(AAFwkTag::APPKIT, "%s, appMgr_ is nullptr", __func__); return ERR_NULL_OBJECT; } return appMgr_->ClearUpApplicationData(bundleName); } std::vector AbilityManager::GetAllRunningProcesses() { HITRACE_METER_NAME(HITRACE_TAG_ABILITY_MANAGER, __PRETTY_FUNCTION__); TAG_LOGD(AAFwkTag::APPKIT, "%s, %d", __func__, __LINE__); auto object = OHOS::DelayedSingleton::GetInstance()->GetSystemAbility(APP_MGR_SERVICE_ID); sptr appMgr_ = iface_cast(object); std::vector info; if (appMgr_ == nullptr) { TAG_LOGE(AAFwkTag::APPKIT, "%s, appMgr_ is nullptr", __func__); return info; } appMgr_->GetAllRunningProcesses(info); return info; } int AbilityManager::KillProcessesByBundleName(const std::string &bundleName, const bool clearPageStack) { TAG_LOGD(AAFwkTag::APPKIT, "%s, %d", __func__, __LINE__); ErrCode error = AAFwk::AbilityManagerClient::GetInstance()->KillProcess(bundleName, clearPageStack); if (error != ERR_OK) { TAG_LOGE(AAFwkTag::APPKIT, "%s failed, error : %d", __func__, error); return error; } return ERR_OK; } } // namespace AppExecFwk } // namespace OHOS