Routing table in status

This commit is contained in:
Josh Deprez 2024-04-26 13:13:35 +10:00
parent 8f3780e244
commit cee10fac06
No known key found for this signature in database
3 changed files with 45 additions and 1 deletions

26
main.go
View File

@ -45,6 +45,27 @@ import (
"github.com/sfiera/multitalk/pkg/ethertalk"
)
const routingTableTemplate = `
<table>
<thead><tr>
<th>Network range</th>
<th>Extended?</th>
<th>Distance</th>
<th>Last seen<th>
</tr></thead>
<tbody>
{{range $route := . }}
<tr>
<td>{{$route.NetStart}}{{if not (eq $route.NetStart $route.NetEnd)}} - {{$route.NetEnd}}{{end}}</td>
<td>{{if $route.Extended}}{{else}}{{end}}</td>
<td>{{$route.Distance}}</td>
<td>{{$route.LastSeenAgo}}</td>
</tr>
{{end}}
</tbody>
</table>
`
var hasPortRE = regexp.MustCompile(`:\d+$`)
var configFilePath = flag.String("config", "jrouter.yaml", "Path to configuration file to use")
@ -143,6 +164,11 @@ func main() {
// -------------------------------- Tables --------------------------------
routes := router.NewRoutingTable()
_, done := status.AddItem(ctx, "Routing table", routingTableTemplate, func(context.Context) (any, error) {
return routes.Dump(), nil
})
defer done()
zones := router.NewZoneTable()
zones.Upsert(cfg.EtherTalk.NetStart, cfg.EtherTalk.ZoneName, true)

View File

@ -35,6 +35,13 @@ type Route struct {
LastSeen time.Time
}
func (r Route) LastSeenAgo() string {
if r.LastSeen.IsZero() {
return "never"
}
return fmt.Sprintf("%v ago", time.Since(r.LastSeen).Truncate(time.Millisecond))
}
type RoutingTable struct {
mu sync.Mutex
routes map[*Route]struct{}
@ -46,6 +53,17 @@ func NewRoutingTable() *RoutingTable {
}
}
func (rt *RoutingTable) Dump() []Route {
rt.mu.Lock()
defer rt.mu.Unlock()
table := make([]Route, 0, len(rt.routes))
for r := range rt.routes {
table = append(table, *r)
}
return table
}
func (rt *RoutingTable) LookupRoute(network ddp.Network) *Route {
rt.mu.Lock()
defer rt.mu.Unlock()

View File

@ -229,7 +229,7 @@ func Handle(w http.ResponseWriter, r *http.Request) {
// AddItem adds an item to be displayed on the status page. On each page load,
// the item's callback is called, and the data returned used to fill the
// HTML template in tmpl. The title should be unique (among items under this
// parent.
// parent).
func AddItem(parent context.Context, title, tmpl string, cb func(context.Context) (any, error)) (context.Context, func()) {
if cb == nil {
cb = func(context.Context) (any, error) { return nil, nil }