18 Star 1 Fork 4

openKylin / kylin-app-cgroupd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
processreclaimer.cpp 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
Airuike521 提交于 2023-04-24 16:18 . update license and README.md
/*
* Copyright 2023 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "processreclaimer.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
ProcessReclaimer::ProcessReclaimer(QObject *parent)
: QObject{parent},
m_isAvailable(false)
{
if (access("/proc/1/reclaim",F_OK) != -1) {
m_isAvailable = true;
}
}
bool ProcessReclaimer::isAvailable()
{
return access("/proc/1/reclaim", F_OK) != -1;
}
common::DBusResult ProcessReclaimer::reclaimProcesses(const QList<int> pids)
{
auto result = common::initDbusResult();
if (pids.isEmpty()) {
result[common::kDbusErrMsg] = "The pids is empty!";
result[common::kDbusResult] = false;
return result;
}
const char *content = "all";
for (auto const &pid : qAsConst(pids)) {
QString api = QString("/proc/%1/reclaim").arg(pid);
QByteArray ba = api.toLocal8Bit();
int fd = open(ba.data(), O_RDWR | O_NONBLOCK);
if (fd < 0) {
result[common::kDbusErrMsg] = "Open api file " + api + " failed, " + strerror(errno);
result[common::kDbusResult] = false;
return result;
}
if (write(fd, content, strlen(content) + 1) < 0) {
result[common::kDbusErrMsg] = "Write api file " + api + " failed, " + strerror(errno);
result[common::kDbusResult] = false;
return result;
}
}
result[common::kDbusResult] = true;
return result;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openkylin/kylin-app-cgroupd.git
git@gitee.com:openkylin/kylin-app-cgroupd.git
openkylin
kylin-app-cgroupd
kylin-app-cgroupd
openkylin/yangtze

搜索帮助

344bd9b3 5694891 D2dac590 5694891