add "uplink" indicator

- currently shows ssid and signal strength, if wlan
- for lan, should show interface name (not tested)

plan to enhance with
- lan speed, for wired ethernet
- wwan support
This commit is contained in:
Daniel Barlow 2022-04-03 18:09:02 +01:00
parent da00b8a3a5
commit 229ba07b80
3 changed files with 44 additions and 12 deletions

View File

@ -3,6 +3,7 @@
(local iostream (require :iostream)) (local iostream (require :iostream))
(local metric (require :metric)) (local metric (require :metric))
(local uplink (require :uplink))
(stylesheet "licht.css") (stylesheet "licht.css")
@ -16,7 +17,6 @@
; 0xf377 ; glyph not present in font-awesome free ; 0xf377 ; glyph not present in font-awesome free
)) ))
(fn spawn [] (fn spawn []
true) true)
@ -41,6 +41,25 @@
{:text v}) {:text v})
})) }))
(let [uplink (uplink.new)
input (iostream.from-descriptor uplink.fd)]
(indicator {
:wait-for {
:input [input]
:interval (* 4 1000)
}
:refresh
#(let [status (uplink:status)]
(if status
{:text (.. (or status.ssid status.name "?")
" "
(if status.quality
(tostring (+ status.quality 100))
""))}
{:text "no internet"}
))
}))
(let [f (iostream.open "/tmp/statuspipe" :r)] (let [f (iostream.open "/tmp/statuspipe" :r)]
(indicator { (indicator {
;; this is a guide to tell blinkenlicht when it might ;; this is a guide to tell blinkenlicht when it might

View File

@ -1,16 +1,23 @@
(local posix (require :posix)) (local posix (require :posix))
(local fcntl (require :posix.fcntl)) (local fcntl (require :posix.fcntl))
(fn from-descriptor [fd]
{
:read #(posix.unistd.read fd $2) ;XXX needs to check for eof
:close #(posix.unistd.close fd)
:fileno fd
})
(fn open [name direction] (fn open [name direction]
(let [flags (match direction (let [flags (match direction
:r posix.O_RDONLY :r posix.O_RDONLY
:w (+ posix.O_WRONLY posix.O_CREAT)) :w (+ posix.O_WRONLY posix.O_CREAT))
fd (posix.open name flags)] fd (posix.open name flags)]
(fcntl.fcntl fd fcntl.F_SETFL fcntl.O_NONBLOCK) (fcntl.fcntl fd fcntl.F_SETFL fcntl.O_NONBLOCK)
{ (from-descriptor fd)))
:read #(posix.unistd.read fd $2) ;XXX needs to check for eof
:close #(posix.unistd.close fd)
:fileno fd
}))
{: open } {
: open
: from-descriptor
}

View File

@ -58,8 +58,7 @@
)) ))
event) event)
(fn uplink []
(fn netlunk []
(let [links {} (let [links {}
routes {} routes {}
sock (nl.socket)] sock (nl.socket)]
@ -83,17 +82,20 @@
:refresh #(each [_ event (ipairs (sock:event))] :refresh #(each [_ event (ipairs (sock:event))]
(handle-event event)) (handle-event event))
:fd (sock:fd) :fd (sock:fd)
:uplink (fn [self] :status (fn [self]
(self:refresh)
(let [defaultroute routes.default (let [defaultroute routes.default
interface (and defaultroute interface (and defaultroute
(. links defaultroute.index))] (. links defaultroute.index))]
(and interface (= interface.running "yes") (and interface (= interface.running "yes")
(get-network-info interface)))) (get-network-info interface))))
:wait #(sock:poll 1000) :wait #(sock:poll 1000)
:interface (fn [self ifnum] (. links ifnum)) :interface (fn [self ifnum]
(. links ifnum))
} }
)) ))
(comment
(let [nl (netlunk)] (let [nl (netlunk)]
(while (or (nl:wait) true) (while (or (nl:wait) true)
(nl:refresh) (nl:refresh)
@ -102,4 +104,8 @@
(print "default route through " (view interface)) (print "default route through " (view interface))
nil nil
(print "no default route") (print "no default route")
))) ))))
{
:new uplink
}