2013-09-07 12:06:42 +02:00
|
|
|
--[[
|
2017-09-04 12:43:00 +02:00
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
2017-09-11 06:51:52 +02:00
|
|
|
* (c) 2013, Luca CPZ
|
2017-09-04 12:43:00 +02:00
|
|
|
* (c) 2010-2012, Peter Hofmann
|
|
|
|
|
2013-09-07 12:06:42 +02:00
|
|
|
--]]
|
|
|
|
|
2017-04-02 19:35:03 +02:00
|
|
|
local helpers = require("lain.helpers")
|
|
|
|
local wibox = require("wibox")
|
2018-11-28 20:43:04 +01:00
|
|
|
local math = math
|
|
|
|
local string = string
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
-- CPU usage
|
2017-02-08 14:15:48 +01:00
|
|
|
-- lain.widget.cpu
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2017-02-08 20:45:11 +01:00
|
|
|
local function factory(args)
|
2020-11-29 22:48:32 +01:00
|
|
|
args = args or {}
|
|
|
|
|
2020-10-31 18:11:29 +01:00
|
|
|
local cpu = { core = {}, widget = args.widget or wibox.widget.textbox() }
|
2017-01-07 15:12:41 +01:00
|
|
|
local timeout = args.timeout or 2
|
|
|
|
local settings = args.settings or function() end
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2017-01-27 14:35:27 +01:00
|
|
|
function cpu.update()
|
2013-09-07 12:06:42 +02:00
|
|
|
-- Read the amount of time the CPUs have spent performing
|
2017-01-07 15:12:41 +01:00
|
|
|
-- different kinds of work. Read the first line of /proc/stat
|
|
|
|
-- which is the sum of all CPUs.
|
2019-05-27 14:12:00 +02:00
|
|
|
for index,time in pairs(helpers.lines_match("cpu","/proc/stat")) do
|
2016-03-30 16:34:41 +02:00
|
|
|
local coreid = index - 1
|
2017-01-07 15:12:41 +01:00
|
|
|
local core = cpu.core[coreid] or
|
|
|
|
{ last_active = 0 , last_total = 0, usage = 0 }
|
|
|
|
local at = 1
|
|
|
|
local idle = 0
|
|
|
|
local total = 0
|
|
|
|
|
|
|
|
for field in string.gmatch(time, "[%s]+([^%s]+)") do
|
2016-03-30 16:34:41 +02:00
|
|
|
-- 4 = idle, 5 = ioWait. Essentially, the CPUs have done
|
|
|
|
-- nothing during these times.
|
|
|
|
if at == 4 or at == 5 then
|
|
|
|
idle = idle + field
|
|
|
|
end
|
|
|
|
total = total + field
|
|
|
|
at = at + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
local active = total - idle
|
|
|
|
|
|
|
|
if core.last_active ~= active or core.last_total ~= total then
|
|
|
|
-- Read current data and calculate relative values.
|
|
|
|
local dactive = active - core.last_active
|
|
|
|
local dtotal = total - core.last_total
|
2021-07-01 21:07:07 +02:00
|
|
|
local usage = math.ceil(math.abs((dactive / dtotal) * 100))
|
2016-03-30 16:34:41 +02:00
|
|
|
|
|
|
|
core.last_active = active
|
|
|
|
core.last_total = total
|
|
|
|
core.usage = usage
|
|
|
|
|
|
|
|
-- Save current data for the next run.
|
2017-01-07 15:12:41 +01:00
|
|
|
cpu.core[coreid] = core
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
2016-03-03 12:40:49 +01:00
|
|
|
end
|
2016-03-30 16:34:41 +02:00
|
|
|
|
|
|
|
cpu_now = cpu.core
|
|
|
|
cpu_now.usage = cpu_now[0].usage
|
2017-01-26 20:53:55 +01:00
|
|
|
widget = cpu.widget
|
2016-03-30 16:34:41 +02:00
|
|
|
|
|
|
|
settings()
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
2017-01-27 14:35:27 +01:00
|
|
|
helpers.newtimer("cpu", timeout, cpu.update)
|
2017-01-07 15:12:41 +01:00
|
|
|
|
2017-01-25 17:13:14 +01:00
|
|
|
return cpu
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
2017-04-02 19:35:03 +02:00
|
|
|
return factory
|