/* * Copyright (c) 2022 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. */ #ifdef RESOURCESCHEDULE_BGTASKMGR_ENABLE #include "scheduler_bg_task_subscriber.h" #include "resource_type.h" #include "resource_callback_info.h" #include "work_scheduler_service.h" #include "work_sched_hilog.h" namespace OHOS { namespace WorkScheduler { using namespace OHOS::BackgroundTaskMgr; void SchedulerBgTaskSubscriber::OnProcEfficiencyResourcesApply( const std::shared_ptr &resourceInfo) { WS_HILOGD("OnProcEfficiencyResourcesApply called"); if (!resourceInfo || (resourceInfo->GetResourceNumber() & BackgroundTaskMgr::ResourceType::WORK_SCHEDULER) == 0) { WS_HILOGD("called with null efficiency callback info"); return; } int32_t uid = resourceInfo->GetUid(); DelayedSingleton::GetInstance()->UpdateEffiResApplyInfo(uid, true); } void SchedulerBgTaskSubscriber::OnProcEfficiencyResourcesReset( const std::shared_ptr &resourceInfo) { WS_HILOGD("OnProcEfficiencyResourcesReset called"); if (!resourceInfo || (resourceInfo->GetResourceNumber() & BackgroundTaskMgr::ResourceType::WORK_SCHEDULER) == 0) { WS_HILOGD("called with null efficiency callback info"); return; } int32_t uid = resourceInfo->GetUid(); DelayedSingleton::GetInstance()->UpdateEffiResApplyInfo(uid, false); } void SchedulerBgTaskSubscriber::OnAppEfficiencyResourcesApply( const std::shared_ptr &resourceInfo) { OnProcEfficiencyResourcesApply(resourceInfo); } void SchedulerBgTaskSubscriber::OnAppEfficiencyResourcesReset( const std::shared_ptr &resourceInfo) { OnProcEfficiencyResourcesReset(resourceInfo); } void SchedulerBgTaskSubscriber::OnRemoteDied(const wptr &object) { WS_HILOGE("called"); } } // namespace Memory } // namespace OHOS #endif