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.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
6 * (c) 2010-2012, Peter Hofmann
10 local helpers = require("lain.helpers")
11 local naughty = require("naughty")
12 local wibox = require("wibox")
13 local string = { format = string.format, match = string.match }
18 local function factory(args)
19 local net = { widget = wibox.widget.textbox(), devices = {} }
20 local args = args or {}
21 local timeout = args.timeout or 2
22 local units = args.units or 1024 -- KB
23 local notify = args.notify or "on"
24 local screen = args.screen or 1
25 local settings = args.settings or function() end
27 -- Compatibility with old API where iface was a string corresponding to 1 interface
28 net.iface = (args.iface and (type(args.iface) == "string" and {args.iface}) or
29 (type(args.iface) == "table" and args.iface)) or {}
31 function net.get_device()
32 helpers.async(string.format("ip link show", device_cmd), function(ws)
33 ws = ws:match("(%w+): <BROADCAST,MULTICAST,.-UP,LOWER_UP>")
34 net.iface = ws and { ws } or {}
38 if #net.iface == 0 then net.get_device() end
41 -- These are the totals over all specified interfaces
44 -- Bytes since last iteration
49 for i, dev in ipairs(net.iface) do
51 local dev_before = net.devices[dev] or { last_t = 0, last_r = 0 }
52 local now_t = tonumber(helpers.first_line(string.format("/sys/class/net/%s/statistics/tx_bytes", dev)) or 0)
53 local now_r = tonumber(helpers.first_line(string.format("/sys/class/net/%s/statistics/rx_bytes", dev)) or 0)
55 dev_now.carrier = helpers.first_line(string.format("/sys/class/net/%s/carrier", dev)) or "0"
56 dev_now.state = helpers.first_line(string.format("/sys/class/net/%s/operstate", dev)) or "down"
58 dev_now.sent = (now_t - dev_before.last_t) / timeout / units
59 dev_now.received = (now_r - dev_before.last_r) / timeout / units
61 net_now.sent = net_now.sent + dev_now.sent
62 net_now.received = net_now.received + dev_now.received
64 dev_now.sent = string.format("%.1f", dev_now.sent)
65 dev_now.received = string.format("%.1f", dev_now.received)
67 dev_now.last_t = now_t
68 dev_now.last_r = now_r
70 net.devices[dev] = dev_now
72 -- Notify only once when connection is loss
73 if string.match(dev_now.carrier, "0") and notify == "on" and helpers.get_map(dev) then
77 icon = helpers.icons_dir .. "no_net.png",
80 helpers.set_map(dev, false)
81 elseif string.match(dev_now.carrier, "1") then
82 helpers.set_map(dev, true)
85 net_now.carrier = dev_now.carrier
86 net_now.state = dev_now.state
87 net_now.devices[dev] = dev_now
88 -- new_now.sent and net_now.received will be
89 -- the totals across all specified devices
92 net_now.sent = string.format("%.1f", net_now.sent)
93 net_now.received = string.format("%.1f", net_now.received)
99 helpers.newtimer("network", timeout, net.update)