aboutsummaryrefslogtreecommitdiff
path: root/cpu.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-07-29 17:59:32 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-07-29 17:59:32 +0200
commit98e26ee0436822b00d4a6e707d86cf33d24bc00f (patch)
treea2a77a85453835d6235b9a4ee8a4044433c37151 /cpu.lua
downloadvicious-legacy-98e26ee0436822b00d4a6e707d86cf33d24bc00f.tar.xz
Import of vicious source tree.v1.0.0
Vicious is a modular widget library for 'awesome' window manager, derived from the 'Wicked' widget library. Summary of changes: * Original wicked code modularized * Widgets ported from Wicked: - CPU, MEM, FS, NET, Date, Uptime, MPD * CPU widget rewritten, uses pattern matching * MEM widget rewritten, uses pattern matching - Swap widget merged with MEM widget type * FS widget rewritten, uses pattern matching - Also fixed padding in the process * NET widget rewritten, uses pattern matching * MPD widget rewritten, a bit more versatile * Removed deprecated helper functions * Widgets written for Vicious: - Thermal, Battery, Mbox, OrgMode, Volume, Entropy, Disk I/O, System Load, Wireless, Pacman, Maildir
Diffstat (limited to 'cpu.lua')
-rw-r--r--cpu.lua95
1 files changed, 95 insertions, 0 deletions
diff --git a/cpu.lua b/cpu.lua
new file mode 100644
index 0000000..5112253
--- /dev/null
+++ b/cpu.lua
@@ -0,0 +1,95 @@
+----------------------------------------------------------
+-- Licensed under the GNU General Public License version 2
+-- * Copyright (C) 2009 Adrian C. <anrxc_sysphere_org>
+----------------------------------------------------------
+
+-- {{{ Grab environment
+local type = type
+local pairs = pairs
+local ipairs = ipairs
+local io = { open = io.open }
+local math = { floor = math.floor }
+local table = { insert = table.insert }
+local helpers = require("vicious.helpers")
+-- }}}
+
+
+-- Cpu: provides CPU usage for all available CPUs/cores
+module("vicious.cpu")
+
+
+-- Initialise function tables
+local cpu_usage = {}
+local cpu_total = {}
+local cpu_active = {}
+
+-- {{{ CPU widget type
+function worker(format, padding)
+ -- Get /proc/stat
+ local f = io.open("/proc/stat")
+ local cpu_lines = {}
+
+ -- Format data
+ for line in f:lines() do
+ if line:find("^cpu") then
+ if #cpu_lines < 1 then cpuid = 1
+ else cpuid = #cpu_lines + 1 end
+
+ cpu_lines[cpuid] = {}
+ for match in line:gmatch("[%s]+([%d]+)") do
+ table.insert(cpu_lines[cpuid], match)
+ end
+ end
+ end
+ f:close()
+
+ -- Ensure tables are initialized correctly
+ while #cpu_total < #cpu_lines do
+ table.insert(cpu_total, 0)
+ end
+ while #cpu_active < #cpu_lines do
+ table.insert(cpu_active, 0)
+ end
+ while #cpu_usage < #cpu_lines do
+ table.insert(cpu_usage, 0)
+ end
+
+ -- Setup tables
+ local total_new = {}
+ local active_new = {}
+ local diff_total = {}
+ local diff_active = {}
+
+ for i, v in ipairs(cpu_lines) do
+ -- Calculate totals
+ total_new[i] = 0
+ for j = 1, #v do
+ total_new[i] = total_new[i] + v[j]
+ end
+ active_new[i] = v[1] + v[2] + v[3]
+
+ -- Calculate percentage
+ diff_total[i] = total_new[i] - cpu_total[i]
+ diff_active[i] = active_new[i] - cpu_active[i]
+ cpu_usage[i] = math.floor(diff_active[i] / diff_total[i] * 100)
+
+ -- Store totals
+ cpu_total[i] = total_new[i]
+ cpu_active[i] = active_new[i]
+ end
+
+ if padding ~= nil then
+ for k, v in pairs(cpu_usage) do
+ if type(padding) == "table" then
+ p = padding[k]
+ else
+ p = padding
+ end
+
+ cpu_usage[k] = helpers.padd(cpu_usage[k], p)
+ end
+ end
+
+ return cpu_usage
+end
+-- }}}