* Copyright (c) 2024-2026 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 "dm_package_common_event.h"
#include <pthread.h>
#include <thread>
#include "common_event_support.h"
#include "dm_anonymous.h"
#include "dm_error_type.h"
#include "dm_log.h"
#if !(defined(__LITEOS_M__) || defined(LITE_DEVICE))
#include "ffrt.h"
#endif
#include "iservice_registry.h"
#include "system_ability_definition.h"
namespace OHOS {
namespace DistributedHardware {
using OHOS::EventFwk::MatchingSkills;
using OHOS::EventFwk::CommonEventManager;
constexpr const char* DEAL_THREAD = "package_common_event";
const std::string APP_ID = "appId";
const std::string ACCESS_TOKEN_ID = "accessTokenId";
constexpr int32_t MAX_TRY_TIMES = 3;
std::vector<std::string> DmPackageEventSubscriber::GetSubscriberEventNameVec() const
{
return eventNameVec_;
}
DmPackageCommonEventManager::~DmPackageCommonEventManager()
{
DmPackageCommonEventManager::UnsubscribePackageCommonEvent();
}
bool DmPackageCommonEventManager::SubscribePackageCommonEvent(const std::vector<std::string> &eventNameVec,
const PackageEventCallback &callback)
{
if (eventNameVec.empty() || callback == nullptr) {
LOGE("eventNameVec is empty or callback is nullptr.");
return false;
}
std::lock_guard<ffrt::mutex> locker(evenSubscriberMutex_);
if (eventValidFlag_) {
LOGE("failed to subscribe package commom eventName size: %{public}zu", eventNameVec.size());
return false;
}
MatchingSkills matchingSkills;
for (auto &item : eventNameVec) {
matchingSkills.AddEvent(item);
}
CommonEventSubscribeInfo subscriberInfo(matchingSkills);
subscriber_ = std::make_shared<DmPackageEventSubscriber>(subscriberInfo, callback, eventNameVec);
auto samgrProxy = SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager();
if (samgrProxy == nullptr) {
LOGE("samgrProxy is nullptr");
subscriber_ = nullptr;
return false;
}
statusChangeListener_ = new (std::nothrow) SystemAbilityStatusChangeListener(subscriber_);
if (statusChangeListener_ == nullptr) {
LOGE("statusChangeListener_ is nullptr");
subscriber_ = nullptr;
return false;
}
int32_t counter = 0;
while (counter <= MAX_TRY_TIMES) {
if (samgrProxy->SubscribeSystemAbility(COMMON_EVENT_SERVICE_ID, statusChangeListener_) == ERR_OK) {
LOGI("SubscribePackageEvent success.");
break;
}
if (++counter == MAX_TRY_TIMES) {
LOGE("SubscribePackageEvent failed.");
}
sleep(1);
}
eventNameVec_ = eventNameVec;
eventValidFlag_ = true;
LOGI("success to subscribe package commom event name size: %{public}zu", eventNameVec.size());
return true;
}
bool DmPackageCommonEventManager::UnsubscribePackageCommonEvent()
{
std::lock_guard<ffrt::mutex> locker(evenSubscriberMutex_);
if (!eventValidFlag_) {
LOGE("failed to unsubscribe package commom event name size: %{public}zu because event is invalid.",
eventNameVec_.size());
return false;
}
if (subscriber_ != nullptr) {
LOGI("start to unsubscribe package commom event name size: %{public}zu", eventNameVec_.size());
if (!CommonEventManager::UnSubscribeCommonEvent(subscriber_)) {
LOGE("failed to unsubscribe package commom event name size: %{public}zu", eventNameVec_.size());
return false;
}
LOGI("success to unsubscribe package commom event name size: %{public}zu", eventNameVec_.size());
subscriber_ = nullptr;
}
if (statusChangeListener_ != nullptr) {
auto samgrProxy = SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager();
if (samgrProxy == nullptr) {
LOGE("samgrProxy is nullptr");
return false;
}
int32_t ret = samgrProxy->UnSubscribeSystemAbility(COMMON_EVENT_SERVICE_ID, statusChangeListener_);
if (ret != ERR_OK) {
LOGE("failed to unsubscribe system ability COMMON_EVENT_SERVICE_ID ret:%{public}d", ret);
return false;
}
statusChangeListener_ = nullptr;
}
LOGI("success to unsubscribe package commom event name size: %{public}zu", eventNameVec_.size());
eventValidFlag_ = false;
return true;
}
void DmPackageEventSubscriber::OnReceiveEvent(const CommonEventData &data)
{
std::string receiveEvent = data.GetWant().GetAction();
std::string appId = data.GetWant().GetStringParam(APP_ID);
int32_t accessTokenId = static_cast<int32_t>(data.GetWant().GetIntParam(ACCESS_TOKEN_ID, 0));
if (accessTokenId == -1 || appId == "") {
LOGE("Invalid parameters: accessTokenId = %{public}s, appId = %{public}s",
GetAnonyInt32(accessTokenId).c_str(), appId.c_str());
return;
}
LOGI("Received package event: %{public}s", receiveEvent.c_str());
if (receiveEvent != EventFwk::CommonEventSupport::COMMON_EVENT_PACKAGE_FULLY_REMOVED &&
receiveEvent != EventFwk::CommonEventSupport::COMMON_EVENT_PACKAGE_REMOVED) {
LOGE("Invalied package type event.");
return;
}
#if !(defined(__LITEOS_M__) || defined(LITE_DEVICE))
ffrt::submit([=]() { callback_(appId, receiveEvent, accessTokenId); }, ffrt::task_attr().name(DEAL_THREAD));
#else
std::thread dealThread([=]() { callback_(appId, receiveEvent, accessTokenId); });
int32_t ret = pthread_setname_np(dealThread.native_handle(), DEAL_THREAD);
if (ret != DM_OK) {
LOGE("dealThread setname failed.");
}
dealThread.detach();
#endif
}
void DmPackageCommonEventManager::SystemAbilityStatusChangeListener::OnAddSystemAbility(
int32_t systemAbilityId, const std::string& deviceId)
{
LOGI("systemAbility is added with said: %{public}d.", systemAbilityId);
if (systemAbilityId != COMMON_EVENT_SERVICE_ID) {
return;
}
if (changeSubscriber_ == nullptr) {
LOGE("failed to subscribe package commom event because changeSubscriber_ is nullptr.");
return;
}
std::vector<std::string> eventNameVec = changeSubscriber_->GetSubscriberEventNameVec();
LOGI("start to subscribe package commom eventName: %{public}zu", eventNameVec.size());
if (!CommonEventManager::SubscribeCommonEvent(changeSubscriber_)) {
LOGE("failed to subscribe package commom event: %{public}zu", eventNameVec.size());
}
}
void DmPackageCommonEventManager::SystemAbilityStatusChangeListener::OnRemoveSystemAbility(
int32_t systemAbilityId, const std::string& deviceId)
{
LOGI("systemAbility is removed with said: %{public}d.", systemAbilityId);
}
}
}