/* * 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 "amsstabilityr1.h" namespace OHOS { namespace AppExecFwk { void AmsStAbilityR1::Init(const std::shared_ptr &abilityInfo, const std::shared_ptr &application, std::shared_ptr &handler, const sptr &token) { APP_LOGI("AmsStAbilityR1::Init"); Ability::Init(abilityInfo, application, handler, token); pageAbilityEvent.SubscribeEvent(STEventName::g_eventList, shared_from_this()); std::string eventData = GetAbilityName() + STEventName::g_abilityStateInit; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnStartCount(), eventData); std::this_thread::sleep_for(std::chrono::milliseconds(STEventName::LOAD_TIMEOUT)); } void AmsStAbilityR1::OnStart(const Want &want) { GetWantInfo(want); APP_LOGI("AmsStAbilityR1::onStart"); Ability::OnStart(want); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnStart; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnStartCount(), eventData); } void AmsStAbilityR1::OnNewWant(const Want &want) { APP_LOGI("AmsStAbilityR1::OnNewWant"); Ability::OnNewWant(want); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnNewWant; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnNewWantCount(), eventData); } void AmsStAbilityR1::OnForeground(const Want &want) { APP_LOGI("AmsStAbilityR1::OnForeground"); Ability::OnForeground(want); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnForeground; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnForegroundCount(), eventData); } void AmsStAbilityR1::OnStop() { APP_LOGI("AmsStAbilityR1::onStop"); Ability::OnStop(); pageAbilityEvent.UnsubscribeEvent(); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnStop; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnStopCount(), eventData); } void AmsStAbilityR1::OnActive() { APP_LOGI("AmsStAbilityR1::OnActive"); Ability::OnActive(); std::string startBundleName = this->Split(targetBundle, ","); std::string startAbilityName = this->Split(targetAbility, ","); if (!startBundleName.empty() && !startAbilityName.empty()) { Want want; want.SetElementName(startBundleName, startAbilityName); want.SetParam("shouldReturn", shouldReturn); if (!targetBundle.empty() && !targetAbility.empty()) { want.SetParam("targetBundle", targetBundle); want.SetParam("targetAbility", targetAbility); } StartAbility(want); } if (std::string::npos != shouldReturn.find(GetAbilityName())) { TerminateAbility(); } Clear(); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnActive; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnActiveCount(), eventData); } void AmsStAbilityR1::OnInactive() { APP_LOGI("AmsStAbilityR1::OnInactive"); Ability::OnInactive(); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnInactive; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnInactiveCount(), eventData); } void AmsStAbilityR1::OnBackground() { APP_LOGI("AmsStAbilityR1::OnBackground"); Ability::OnBackground(); std::string eventData = GetAbilityName() + STEventName::g_abilityStateOnBackground; pageAbilityEvent.PublishEvent(STEventName::g_eventName, pageAbilityEvent.GetOnBackgroundCount(), eventData); } void AmsStAbilityR1::Clear() { shouldReturn = ""; targetBundle = ""; targetAbility = ""; } void AmsStAbilityR1::GetWantInfo(const Want &want) { Want mWant(want); shouldReturn = mWant.GetStringParam("shouldReturn"); targetBundle = mWant.GetStringParam("targetBundle"); targetAbility = mWant.GetStringParam("targetAbility"); } std::string AmsStAbilityR1::Split(std::string &str, std::string delim) { std::string result; if (!str.empty()) { size_t index = str.find(delim); if (index != std::string::npos) { result = str.substr(0, index); str = str.substr(index + delim.size()); } else { result = str; str = ""; } } return result; } REGISTER_AA(AmsStAbilityR1); } // namespace AppExecFwk } // namespace OHOS