ladybird/Userland/Libraries/LibGUI/RunningProcessesModel.cpp
Tom 7e77a2ec40 Everywhere: Improve CPU usage calculation
As threads come and go, we can't simply account for how many time
slices the threads at any given point may have been using. We need to
also account for threads that have since disappeared. This means we
also need to track how many time slices we have expired globally.

However, because this doesn't account for context switches outside of
the system timer tick values may still be under-reported. To solve this
we will need to track more accurate time information on each context
switch.

This also fixes top's cpu usage calculation which was still based on
the number of context switches.

Fixes #6473
2021-07-18 22:08:26 +02:00

97 lines
2.2 KiB
C++

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/ProcessStatisticsReader.h>
#include <LibGUI/FileIconProvider.h>
#include <LibGUI/RunningProcessesModel.h>
namespace GUI {
NonnullRefPtr<RunningProcessesModel> RunningProcessesModel::create()
{
return adopt_ref(*new RunningProcessesModel);
}
RunningProcessesModel::RunningProcessesModel()
{
}
RunningProcessesModel::~RunningProcessesModel()
{
}
void RunningProcessesModel::update()
{
m_processes.clear();
auto all_processes = Core::ProcessStatisticsReader::get_all();
if (all_processes.has_value()) {
for (auto& it : all_processes.value().processes) {
Process process;
process.pid = it.pid;
process.uid = it.uid;
process.icon = FileIconProvider::icon_for_executable(it.executable).bitmap_for_size(16);
process.name = it.name;
m_processes.append(move(process));
}
}
did_update();
}
int RunningProcessesModel::row_count(const GUI::ModelIndex&) const
{
return m_processes.size();
}
int RunningProcessesModel::column_count(const GUI::ModelIndex&) const
{
return Column::__Count;
}
String RunningProcessesModel::column_name(int column_index) const
{
switch (column_index) {
case Column::Icon:
return {};
case Column::PID:
return "PID";
case Column::UID:
return "UID";
case Column::Name:
return "Name";
}
VERIFY_NOT_REACHED();
}
GUI::Variant RunningProcessesModel::data(const GUI::ModelIndex& index, GUI::ModelRole role) const
{
auto& process = m_processes[index.row()];
if (role == ModelRole::Custom) {
return process.pid;
}
if (role == ModelRole::Display) {
switch (index.column()) {
case Column::Icon:
if (!process.icon)
return GUI::Icon();
return GUI::Icon(*process.icon);
case Column::PID:
return process.pid;
case Column::UID:
return process.uid;
case Column::Name:
return process.name;
}
VERIFY_NOT_REACHED();
}
return {};
}
}