/* * 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. */ #include "third_ability.h" #include "app_log_wrapper.h" #include "test_utils.h" namespace OHOS { namespace AppExecFwk { using namespace OHOS::EventFwk; using namespace OHOS::AAFwk; void ThirdAbility::Init(const std::shared_ptr &abilityInfo, const std::shared_ptr &application, std::shared_ptr &handler, const sptr &token) { APP_LOGI("ThirdAbility::Init"); Ability::Init(abilityInfo, application, handler, token); } ThirdAbility::~ThirdAbility() { CommonEventManager::UnSubscribeCommonEvent(subscriber_); } void ThirdAbility::OnStart(const Want &want) { APP_LOGI("ThirdAbility::OnStart"); SubscribeEvent(); Ability::OnStart(want); callbackSeq += "OnStart"; TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, "OnStart"); } void ThirdAbility::OnStop() { APP_LOGI("ThirdAbility::OnStop"); Ability::OnStop(); callbackSeq += "OnStop"; // OnInactiveOnBackgroundOnStop CommonEventManager::UnSubscribeCommonEvent(subscriber_); TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, callbackSeq); callbackSeq = ""; } void ThirdAbility::OnActive() { APP_LOGI("ThirdAbility::OnActive====<"); Ability::OnActive(); callbackSeq += "OnActive"; // OnStartOnActive TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, callbackSeq); callbackSeq = ""; } void ThirdAbility::OnConfigurationUpdated(const Configuration &configuration) { APP_LOGI("ThirdAbility::OnConfigurationUpdated====<"); Ability::OnConfigurationUpdated(configuration); callbackUpdated += "Updated"; // UpdatedUpdated TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, callbackUpdated); } void ThirdAbility::OnInactive() { APP_LOGI("ThirdAbility::OnInactive"); Ability::OnInactive(); callbackSeq += "OnInactive"; TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, "OnInactive"); } void ThirdAbility::OnBackground() { APP_LOGI("ThirdAbility::OnBackground"); Ability::OnBackground(); callbackSeq += "OnBackground"; TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, "OnBackground"); } void ThirdAbility::OnForeground(const Want &want) { APP_LOGI("ThirdAbility::OnForeground"); Ability::OnForeground(want); callbackSeq += "OnForeground"; TestUtils::PublishEvent(g_EVENT_RESP_THIRD_LIFECYCLE, THIRD_ABILITY_CODE, "OnForeground"); } void ThirdAbility::SubscribeEvent() { std::vector eventList = { // g_EVENT_REQU_THIRD, }; MatchingSkills matchingSkills; for (const auto &e : eventList) { matchingSkills.AddEvent(e); } CommonEventSubscribeInfo subscribeInfo(matchingSkills); subscribeInfo.SetPriority(1); subscriber_ = std::make_shared(subscribeInfo); subscriber_->thirdAbility = this; CommonEventManager::SubscribeCommonEvent(subscriber_); } void ThirdAbilityEventSubscriber::OnReceiveEvent(const CommonEventData &data) { APP_LOGI("ThirdAbilityEventSubscriber::OnReceiveEvent:event=%{public}s", data.GetWant().GetAction().c_str()); APP_LOGI("ThirdAbilityEventSubscriber::OnReceiveEvent:data=%{public}s", data.GetData().c_str()); APP_LOGI("ThirdAbilityEventSubscriber::OnReceiveEvent:code=%{public}d", data.GetCode()); auto eventName = data.GetWant().GetAction(); } void ThirdAbility::TestAbility(int apiIndex, int caseIndex, int code) { APP_LOGI("ThirdAbility::TestAbility"); if (mapCase_.find(apiIndex) != mapCase_.end()) { if (caseIndex < (int)mapCase_[apiIndex].size()) { mapCase_[apiIndex][caseIndex](code); } } } REGISTER_AA(ThirdAbility) } // namespace AppExecFwk } // namespace OHOS