All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 Licensed under GNU General Public License v2
4 * (c) 2013, Luke Bonham
5 * (c) 2010-2012, Peter Hofmann
9 local helpers = require("lain.helpers")
10 local wibox = require("wibox")
11 local math = { ceil = math.ceil }
12 local string = { format = string.format,
13 gmatch = string.gmatch }
14 local tostring = tostring
19 local function factory(args)
20 local cpu = { core = {}, widget = wibox.widget.textbox() }
21 local args = args or {}
22 local timeout = args.timeout or 2
23 local settings = args.settings or function() end
26 -- Read the amount of time the CPUs have spent performing
27 -- different kinds of work. Read the first line of /proc/stat
28 -- which is the sum of all CPUs.
29 local times = helpers.lines_match("cpu","/proc/stat")
31 for index,time in pairs(times) do
32 local coreid = index - 1
33 local core = cpu.core[coreid] or
34 { last_active = 0 , last_total = 0, usage = 0 }
39 for field in string.gmatch(time, "[%s]+([^%s]+)") do
40 -- 4 = idle, 5 = ioWait. Essentially, the CPUs have done
41 -- nothing during these times.
42 if at == 4 or at == 5 then
49 local active = total - idle
51 if core.last_active ~= active or core.last_total ~= total then
52 -- Read current data and calculate relative values.
53 local dactive = active - core.last_active
54 local dtotal = total - core.last_total
55 local usage = math.ceil((dactive / dtotal) * 100)
57 core.last_active = active
58 core.last_total = total
61 -- Save current data for the next run.
62 cpu.core[coreid] = core
67 cpu_now.usage = cpu_now[0].usage
73 helpers.newtimer("cpu", timeout, cpu.update)