2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
--[[
|
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2013, Luke Bonham
|
|
|
|
* (c) 2010-2012, Peter Hofmann
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
local first_line = require("lain.helpers").first_line
|
2013-09-10 23:02:11 +02:00
|
|
|
local newtimer = require("lain.helpers").newtimer
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
local wibox = require("wibox")
|
|
|
|
|
|
|
|
local math = { ceil = math.ceil }
|
|
|
|
local string = { format = string.format,
|
|
|
|
gmatch = string.gmatch }
|
2013-09-10 23:02:11 +02:00
|
|
|
local tostring = tostring
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
|
|
|
|
-- CPU usage
|
|
|
|
-- lain.widgets.cpu
|
|
|
|
local cpu = {
|
|
|
|
last_total = 0,
|
|
|
|
last_active = 0
|
|
|
|
}
|
|
|
|
|
2013-09-10 23:02:11 +02:00
|
|
|
local function worker(args)
|
|
|
|
local args = args or {}
|
|
|
|
local timeout = args.timeout or 5
|
|
|
|
local settings = args.settings or function() end
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
cpu.widget = wibox.widget.textbox('')
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-13 00:07:44 +02:00
|
|
|
function update()
|
2013-09-07 12:06:42 +02:00
|
|
|
-- Read the amount of time the CPUs have spent performing
|
|
|
|
-- different kinds of work. Read the first line of /proc/stat
|
|
|
|
-- which is the sum of all CPUs.
|
|
|
|
local times = first_line("/proc/stat")
|
|
|
|
local at = 1
|
|
|
|
local idle = 0
|
|
|
|
local total = 0
|
|
|
|
for field in string.gmatch(times, "[%s]+([^%s]+)")
|
|
|
|
do
|
2014-04-29 12:58:25 +02:00
|
|
|
-- 4 = idle, 5 = ioWait. Essentially, the CPUs have done
|
2013-09-07 12:06:42 +02:00
|
|
|
-- nothing during these times.
|
2014-04-29 12:58:25 +02:00
|
|
|
if at == 4 or at == 5
|
2013-09-07 12:06:42 +02:00
|
|
|
then
|
|
|
|
idle = idle + field
|
|
|
|
end
|
|
|
|
total = total + field
|
|
|
|
at = at + 1
|
|
|
|
end
|
|
|
|
local active = total - idle
|
|
|
|
|
|
|
|
-- Read current data and calculate relative values.
|
|
|
|
local dactive = active - cpu.last_active
|
|
|
|
local dtotal = total - cpu.last_total
|
|
|
|
|
2014-08-07 23:13:32 +02:00
|
|
|
cpu_now = {}
|
2013-09-13 18:15:25 +02:00
|
|
|
cpu_now.usage = tostring(math.ceil((dactive / dtotal) * 100))
|
2013-09-10 23:02:11 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
widget = cpu.widget
|
2013-09-10 23:02:11 +02:00
|
|
|
settings()
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
-- Save current data for the next run.
|
|
|
|
cpu.last_active = active
|
|
|
|
cpu.last_total = total
|
|
|
|
end
|
|
|
|
|
2013-09-13 00:07:44 +02:00
|
|
|
newtimer("cpu", timeout, update)
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
return cpu.widget
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(cpu, { __call = function(_, ...) return worker(...) end })
|