zookeeper/structs.go

51 lines
1.7 KiB
Go
Raw Normal View History

2025-02-15 09:11:45 -06:00
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
2024-11-15 18:49:52 -06:00
package main
import (
"time"
2025-02-15 03:45:32 -06:00
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
2024-11-15 18:49:52 -06:00
"go.wit.com/lib/protobuf/zoopb"
)
var me *zookeep
2024-11-15 18:49:52 -06:00
// this app's variables
type zookeep struct {
hostname string // my fqdn dns zookeeper hostname
pollDelay time.Duration // how often to report our status
dog *time.Ticker // the watchdog timer
dogchan chan bool // can kill the watchdog
distro string // debian,redhat,gentoo,macos,wincrap
packages *zoopb.Packages // installed packages and versions
machines *zoopb.Machines // every machine that has reported itself to the zookeeper
machines2 *zoopb.Machines // every machine that has reported itself to the zookeeper
targets map[string]string // what versions the machines should be running
upgrade map[string]bool // use this to trigger builds
myGui *gui.Node // the gui toolkit handle
machinesWin *gadgets.GenericWindow // the machines gui window
machinesBox *gui.Node // the machines gui parent box widget
machinesTB *zoopb.MachinesTable // the machines gui table buffer
2025-03-06 04:36:07 -06:00
zood *stdTableWin // the zood version window
}
type stdTableWin struct {
win *gadgets.GenericWindow // the machines gui window
box *gui.Node // the machines gui parent box widget
TB *zoopb.MachinesTable // the machines gui table buffer
update bool // if the window should be updated
}
func (w *stdTableWin) Toggle() {
if w == nil {
return
}
if w.win == nil {
return
}
w.win.Toggle()
2024-11-15 18:49:52 -06:00
}