2022-02-12 14:20:21 +01:00
|
|
|
import std/os
|
|
|
|
import std/osproc
|
|
|
|
import std/re
|
|
|
|
import strutils
|
|
|
|
import i3bar_base
|
2022-03-07 10:37:31 +01:00
|
|
|
import std/math
|
2022-02-12 14:20:21 +01:00
|
|
|
|
2022-02-12 16:36:19 +01:00
|
|
|
const host: string = "web.wilde.cloud"
|
2022-02-26 22:44:00 +01:00
|
|
|
const cmd: string = "ping -4 -c 1 " & host
|
2022-02-12 14:20:21 +01:00
|
|
|
const time_secs: int = 4
|
|
|
|
|
2022-02-12 16:36:19 +01:00
|
|
|
let ping_re = re(r"time=[0-9.]+")
|
2022-02-12 14:20:21 +01:00
|
|
|
|
2022-02-12 16:36:19 +01:00
|
|
|
proc get_ping(): float =
|
2022-03-07 10:37:31 +01:00
|
|
|
var ping: float = -1
|
2022-02-12 14:20:21 +01:00
|
|
|
let cmdOut = execCmdEx(cmd)
|
|
|
|
let lines = splitLines(cmdOut.output)
|
|
|
|
let ping_line = lines[1]
|
|
|
|
let bounds = findBounds(ping_line, ping_re)
|
|
|
|
if bounds.first > 0:
|
2022-03-07 10:37:31 +01:00
|
|
|
let png = ping_line[bounds.first+5..bounds.last]
|
|
|
|
ping = parseFloat(png)
|
2022-03-21 16:59:52 +01:00
|
|
|
return ping
|
2022-02-12 16:36:19 +01:00
|
|
|
|
|
|
|
proc getObject(ping: float): i3barData =
|
2022-03-21 16:59:52 +01:00
|
|
|
let niceping = $round(ping,1)
|
|
|
|
var text = "🏓 " & niceping & " ms"
|
2022-02-12 16:36:19 +01:00
|
|
|
var col = foreground
|
|
|
|
if ping < 0:
|
|
|
|
text = "❌ No Pong"
|
|
|
|
col = yellow
|
|
|
|
else:
|
|
|
|
case ping:
|
|
|
|
of 0..100:
|
|
|
|
col = foreground
|
|
|
|
of 101..400:
|
|
|
|
col = yellow
|
|
|
|
of 401..1000:
|
|
|
|
col = alert
|
|
|
|
else:
|
|
|
|
col = red
|
2022-02-12 14:20:21 +01:00
|
|
|
|
|
|
|
let data = i3barData(
|
2022-02-12 16:36:19 +01:00
|
|
|
full_text: text,
|
|
|
|
color: col,
|
|
|
|
border: blue,
|
|
|
|
background: black
|
2022-02-12 14:20:21 +01:00
|
|
|
)
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
proc main() =
|
2022-02-12 16:36:19 +01:00
|
|
|
var last_ping: float = 0
|
2022-02-12 14:20:21 +01:00
|
|
|
while true:
|
2022-02-12 16:36:19 +01:00
|
|
|
let ping = get_ping()
|
2022-02-12 16:19:43 +01:00
|
|
|
if ping != last_ping:
|
|
|
|
let data = getObject(ping)
|
|
|
|
outputJSON(data)
|
|
|
|
last_ping = ping
|
2022-02-12 14:20:21 +01:00
|
|
|
|
|
|
|
sleep(time_secs * 1000)
|
|
|
|
|
|
|
|
main()
|