2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
|
|
|
-- Licensed under the GNU General Public License v2
|
|
|
|
-- * (c) 2009, Adrian C. <anrxc.sysphere.org>
|
|
|
|
-- * (c) Wicked, Lucas de Vries
|
|
|
|
---------------------------------------------------
|
Import of vicious source tree.
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
2009-07-29 17:59:32 +02:00
|
|
|
|
|
|
|
-- {{{ Grab environment
|
|
|
|
local ipairs = ipairs
|
|
|
|
local io = { open = io.open }
|
2009-08-01 23:11:41 +02:00
|
|
|
local setmetatable = setmetatable
|
Import of vicious source tree.
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
2009-07-29 17:59:32 +02:00
|
|
|
local math = { floor = math.floor }
|
|
|
|
local table = { insert = table.insert }
|
2009-10-05 00:10:47 +02:00
|
|
|
local string = {
|
|
|
|
find = string.find,
|
|
|
|
gmatch = string.gmatch
|
|
|
|
}
|
Import of vicious source tree.
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
2009-07-29 17:59:32 +02:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- 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
|
2009-08-07 17:41:10 +02:00
|
|
|
local function worker(format)
|
Import of vicious source tree.
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
2009-07-29 17:59:32 +02:00
|
|
|
-- Get /proc/stat
|
|
|
|
local f = io.open("/proc/stat")
|
|
|
|
local cpu_lines = {}
|
|
|
|
|
|
|
|
for line in f:lines() do
|
2009-10-05 00:10:47 +02:00
|
|
|
if string.find(line, "^cpu") then
|
Import of vicious source tree.
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
2009-07-29 17:59:32 +02:00
|
|
|
if #cpu_lines < 1 then cpuid = 1
|
|
|
|
else cpuid = #cpu_lines + 1 end
|
|
|
|
|
|
|
|
cpu_lines[cpuid] = {}
|
2009-10-05 00:10:47 +02:00
|
|
|
for i in string.gmatch(line, "[%s]+([%d]+)") do
|
|
|
|
table.insert(cpu_lines[cpuid], i)
|
Import of vicious source tree.
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
2009-07-29 17:59:32 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
return cpu_usage
|
|
|
|
end
|
|
|
|
-- }}}
|
2009-08-01 23:11:41 +02:00
|
|
|
|
|
|
|
setmetatable(_M, { __call = function(_, ...) return worker(...) end })
|