/* * Copyright (c) 2022-2025 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_helper.h" #include "event_log_wrapper.h" #include "event_trace_wrapper.h" #include "hitrace_meter_adapter.h" #include "in_process_call_wrapper.h" #include "iservice_registry.h" #include "static_subscriber_connection.h" #include "system_ability_definition.h" namespace OHOS { namespace EventFwk { namespace { constexpr int32_t DISCONNECT_DELAY_TIME = 15000; // ms constexpr int32_t TIME_UNIT_SIZE = 1000; } AbilityManagerHelper::AbilityManagerHelper() { ffrt_ = std::make_shared("AbilityManagerHelper"); } int AbilityManagerHelper::ConnectAbility( const Want &want, const CommonEventData &event, const sptr &callerToken, const int32_t &userId) { NOTIFICATION_HITRACE(HITRACE_TAG_NOTIFICATION); EVENT_LOGD("enter, target bundle = %{public}s", want.GetBundle().c_str()); int result = -1; ffrt::task_handle handle = ffrt_->submit_h([&]() { std::string connectionKey = want.GetBundle() + "_" + want.GetElement().GetAbilityName() + "_" + std::to_string(userId); if (!GetAbilityMgrProxy()) { result = -1; return; } auto it = subscriberConnection_.find(connectionKey); if (it != subscriberConnection_.end()) { it->second->NotifyEvent(event); EVENT_LOGD("Static cache sends events!"); result = ERR_OK; return; } sptr connection = new (std::nothrow) StaticSubscriberConnection(event, connectionKey); if (connection == nullptr) { EVENT_LOGE("failed to create obj!"); result = -1; return; } result = abilityMgr_->ConnectAbility(want, connection, callerToken, userId); if (result != ERR_OK) { EVENT_LOGE("Connect failed, result=%{public}d", result); return; } subscriberConnection_[connectionKey] = connection; DisconnectServiceAbilityDelay(connection, ""); EVENT_LOGD("Connect success"); }); ffrt_->wait(handle); return result; } bool AbilityManagerHelper::GetAbilityMgrProxy() { if (abilityMgr_ == nullptr) { sptr systemAbilityManager = SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager(); if (systemAbilityManager == nullptr) { EVENT_LOGE("Failed to get system ability mgr."); return false; } sptr remoteObject = systemAbilityManager->GetSystemAbility(ABILITY_MGR_SERVICE_ID); if (remoteObject == nullptr) { EVENT_LOGE("Failed to get ability manager service."); return false; } abilityMgr_ = iface_cast(remoteObject); if ((abilityMgr_ == nullptr) || (abilityMgr_->AsObject() == nullptr)) { EVENT_LOGE("Failed to get system ability manager services ability"); return false; } deathRecipient_ = new (std::nothrow) AbilityManagerDeathRecipient(); if (deathRecipient_ == nullptr) { EVENT_LOGE("Failed to create AbilityManagerDeathRecipient"); return false; } if (!abilityMgr_->AsObject()->AddDeathRecipient(deathRecipient_)) { EVENT_LOGW("Failed to add AbilityManagerDeathRecipient"); } } return true; } void AbilityManagerHelper::Clear() { EVENT_LOGI("enter"); std::lock_guard lock(mutex_); if ((abilityMgr_ != nullptr) && (abilityMgr_->AsObject() != nullptr)) { abilityMgr_->AsObject()->RemoveDeathRecipient(deathRecipient_); } abilityMgr_ = nullptr; } void AbilityManagerHelper::DisconnectServiceAbilityDelay( const sptr &connection, const std::string &action) { EVENT_LOGD("enter"); if (connection == nullptr) { EVENT_LOGW("connection is nullptr"); return; } std::function task = [connection, action, this]() { this->DisconnectAbility(connection, action); }; ffrt_->submit(task, ffrt::task_attr().delay(DISCONNECT_DELAY_TIME * TIME_UNIT_SIZE)); } void AbilityManagerHelper::DisconnectAbility( const sptr &connection, const std::string &action) { EVENT_LOGD("enter"); if (connection == nullptr) { EVENT_LOGW("connection is nullptr"); return; } auto it = std::find_if(subscriberConnection_.begin(), subscriberConnection_.end(), [&connection](const auto &pair) { return pair.second == connection; }); if (it == subscriberConnection_.end()) { EVENT_LOGW("failed to find connection!"); return; } if (connection) { connection->RemoveEvent(action); if (!connection->IsEmptyAction()) { EVENT_LOGD("Event within 15 seconds!"); return; } } IN_PROCESS_CALL_WITHOUT_RET(abilityMgr_->DisconnectAbility(connection)); subscriberConnection_.erase(it); EVENT_LOGD("erase connection!"); } } // namespace EventFwk } // namespace OHOS