mirror of
https://github.com/openharmony/resourceschedule_qos_manager.git
synced 2026-07-01 04:18:38 -04:00
e23e8df39f
Signed-off-by: liuchungang <liuchungang@hisilicon.com>
151 lines
4.2 KiB
C++
151 lines
4.2 KiB
C++
/*
|
|
* Copyright (c) 2023 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 <cstdlib>
|
|
#include <unistd.h>
|
|
#include "concurrent_task_log.h"
|
|
#if !defined(CROSS_PLATFORM)
|
|
#include "parameters.h"
|
|
#endif
|
|
#include "qos_interface.h"
|
|
#include "qos.h"
|
|
using namespace OHOS::ConcurrentTask;
|
|
|
|
static constexpr int ERROR_NUM = -1;
|
|
|
|
namespace OHOS {
|
|
namespace QOS {
|
|
QosController& QosController::GetInstance()
|
|
{
|
|
static QosController instance;
|
|
return instance;
|
|
}
|
|
|
|
int QosController::SetThreadQosForOtherThread(enum QosLevel level, int tid)
|
|
{
|
|
#if !defined(CROSS_PLATFORM)
|
|
bool qosEnable = OHOS::system::GetBoolParameter("persist.qosmanager.setQos.on", true);
|
|
if (!qosEnable) {
|
|
CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d disable", static_cast<int>(level), tid);
|
|
return 0;
|
|
}
|
|
#endif
|
|
int qos = static_cast<int>(level);
|
|
if (level < QosLevel::QOS_BACKGROUND || level >= QosLevel::QOS_MAX) {
|
|
CONCUR_LOGE("[Qos] invalid qos level %{public}d", qos);
|
|
return ERROR_NUM;
|
|
}
|
|
int ret = QosApplyForOther(qos, tid);
|
|
if (ret == 0) {
|
|
CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d success", qos, tid);
|
|
} else {
|
|
CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d failure", qos, tid);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int QosController::ResetThreadQosForOtherThread(int tid)
|
|
{
|
|
#if !defined(CROSS_PLATFORM)
|
|
bool qosEnable = OHOS::system::GetBoolParameter("persist.qosmanager.setQos.on", true);
|
|
if (!qosEnable) {
|
|
CONCUR_LOGD("[Qos] qoslevel reset disable for tid %{public}d.", tid);
|
|
return 0;
|
|
}
|
|
#endif
|
|
int ret = QosLeaveForOther(tid);
|
|
if (ret == 0) {
|
|
CONCUR_LOGD("[Qos] qoslevel reset for tid %{public}d success", tid);
|
|
} else {
|
|
CONCUR_LOGD("[Qos] qoslevel reset for tid %{public}d failure", tid);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int QosController::GetThreadQosForOtherThread(enum QosLevel &level, int tid)
|
|
{
|
|
int qos = -1;
|
|
int ret = QosGetForOther(tid, qos);
|
|
if (ret == 0) {
|
|
if (qos < static_cast<int>(QosLevel::QOS_BACKGROUND) ||
|
|
qos >= static_cast<int>(QosLevel::QOS_MAX)) {
|
|
CONCUR_LOGE("[Qos] not set qoslevel for tid %{public}d", tid);
|
|
return ERROR_NUM;
|
|
}
|
|
CONCUR_LOGD("[Qos] qoslevel get for tid %{public}d success", tid);
|
|
level = static_cast<QosLevel>(qos);
|
|
return ret;
|
|
} else {
|
|
CONCUR_LOGD("[Qos] qoslevel get for tid %{public}d failure", tid);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
int SetThreadQos(enum QosLevel level)
|
|
{
|
|
int tid = gettid();
|
|
return QosController::GetInstance().SetThreadQosForOtherThread(level, tid);
|
|
}
|
|
|
|
int SetQosForOtherThread(enum QosLevel level, int tid)
|
|
{
|
|
return QosController::GetInstance().SetThreadQosForOtherThread(level, tid);
|
|
}
|
|
|
|
int ResetThreadQos()
|
|
{
|
|
int tid = gettid();
|
|
return QosController::GetInstance().ResetThreadQosForOtherThread(tid);
|
|
}
|
|
|
|
int ResetQosForOtherThread(int tid)
|
|
{
|
|
return QosController::GetInstance().ResetThreadQosForOtherThread(tid);
|
|
}
|
|
|
|
int GetThreadQos(enum QosLevel &level)
|
|
{
|
|
return QosController::GetInstance().GetThreadQosForOtherThread(level, gettid());
|
|
}
|
|
|
|
int GetQosForOtherThread(enum QosLevel &level, int tid)
|
|
{
|
|
return QosController::GetInstance().GetThreadQosForOtherThread(level, tid);
|
|
}
|
|
|
|
int AddThreadToProcRtg([[maybe_unused]] int tid)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int AddThreadsToProcRtg([[maybe_unused]] int tid[5], [[maybe_unused]] int size)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int RemoveThreadFromProcRtg([[maybe_unused]] int tid)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int RemoveThreadsFromProcRtg([[maybe_unused]] int tid[5], [[maybe_unused]] int size)
|
|
{
|
|
return 0;
|
|
}
|
|
} // namespace QOS
|
|
} // namespace OHOS
|