lain/widget/cpu.lua

76 lines
2.2 KiB
Lua
Raw Normal View History

2013-09-07 12:06:42 +02:00
--[[
Licensed under GNU General Public License v2
* (c) 2013, Luca CPZ
* (c) 2010-2012, Peter Hofmann
2013-09-07 12:06:42 +02:00
--]]
local helpers = require("lain.helpers")
local wibox = require("wibox")
local math = math
local string = string
local tostring = tostring
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)
2013-09-10 23:02:11 +02:00
local args = args or {}
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.
for index,time in pairs(helpers.lines_match("cpu","/proc/stat")) do
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
-- 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
2017-01-07 15:12:41 +01:00
local usage = math.ceil((dactive / dtotal) * 100)
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
cpu_now = cpu.core
cpu_now.usage = cpu_now[0].usage
2017-01-26 20:53:55 +01:00
widget = cpu.widget
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
return factory