2024-10-12 12:45:43 -05:00
|
|
|
package main
|
|
|
|
|
2024-10-24 18:55:35 -05:00
|
|
|
/*
|
|
|
|
All the information is defined by protobuf files
|
|
|
|
|
|
|
|
The config files written out by default into
|
|
|
|
~/.config/virtigo/
|
|
|
|
|
|
|
|
protobuf definitions are by nature non-relational
|
|
|
|
so each protobuf is written out as a seperate file.
|
|
|
|
|
|
|
|
This seems like the simpilist way to handle this.
|
|
|
|
*/
|
|
|
|
|
2024-10-12 12:45:43 -05:00
|
|
|
import (
|
2024-10-23 01:12:19 -05:00
|
|
|
"errors"
|
2024-10-22 15:16:37 -05:00
|
|
|
"fmt"
|
2024-10-12 12:45:43 -05:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2024-10-13 03:04:46 -05:00
|
|
|
"time"
|
2024-10-12 12:45:43 -05:00
|
|
|
|
2024-10-22 15:16:37 -05:00
|
|
|
pb "go.wit.com/lib/protobuf/virtbuf"
|
2024-10-12 12:45:43 -05:00
|
|
|
"go.wit.com/log"
|
|
|
|
)
|
|
|
|
|
2024-10-23 01:12:19 -05:00
|
|
|
var ErrorNoFile error = errors.New("missing file")
|
2024-10-23 01:31:17 -05:00
|
|
|
var ErrorParseJSON error = errors.New("invalid json")
|
|
|
|
var ErrorParseXML error = errors.New("invalid xml")
|
2024-10-23 01:12:19 -05:00
|
|
|
|
2024-10-23 01:31:17 -05:00
|
|
|
// something is wrong somewhere and sometimes the
|
2024-10-23 01:12:19 -05:00
|
|
|
// protobuf json files get written out with garbage
|
|
|
|
func cfgfile() {
|
|
|
|
err := readConfigFile("virtigo.json")
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
2024-10-23 01:31:17 -05:00
|
|
|
if err == ErrorParseJSON {
|
2024-10-23 01:12:19 -05:00
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
err = readConfigFile("virtigo.json.last")
|
|
|
|
if err == nil {
|
|
|
|
log.Info("read json failed", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
if err == ErrorNoFile {
|
|
|
|
log.Info("no config file created yet", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func readConfigFile(filename string) error {
|
2024-10-22 17:27:24 -05:00
|
|
|
me.cluster = new(pb.Cluster)
|
2024-10-23 01:12:19 -05:00
|
|
|
fullname := filepath.Join(os.Getenv("VIRTIGO_HOME"), filename)
|
2024-10-22 15:16:37 -05:00
|
|
|
pfile, err := os.ReadFile(fullname)
|
|
|
|
if err != nil {
|
|
|
|
log.Info("open config file :", err)
|
2024-10-23 02:56:55 -05:00
|
|
|
return err
|
2024-10-22 15:16:37 -05:00
|
|
|
}
|
2024-10-22 17:27:24 -05:00
|
|
|
err = me.cluster.UnmarshalJSON(pfile)
|
2024-10-22 15:16:37 -05:00
|
|
|
if err != nil {
|
2024-10-22 18:58:47 -05:00
|
|
|
log.Info("read json failed", err)
|
|
|
|
os.Exit(-1)
|
2024-10-23 02:56:55 -05:00
|
|
|
return err
|
2024-10-22 15:16:37 -05:00
|
|
|
}
|
2024-10-22 19:34:50 -05:00
|
|
|
|
|
|
|
// initialize each hypervisor
|
|
|
|
for _, pbh := range me.cluster.Hypervisors {
|
|
|
|
h := findHypervisor(pbh.Hostname)
|
|
|
|
if h != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// this is a new unknown droplet (not in the config file)
|
|
|
|
h = new(HyperT)
|
|
|
|
h.pb = pbh
|
|
|
|
|
|
|
|
h.lastpoll = time.Now()
|
2024-10-22 19:55:32 -05:00
|
|
|
|
2024-10-22 19:34:50 -05:00
|
|
|
me.hypers = append(me.hypers, h)
|
|
|
|
log.Log(EVENT, "config new hypervisors", h.pb.Hostname)
|
|
|
|
}
|
|
|
|
|
2024-10-25 15:27:10 -05:00
|
|
|
var total int
|
2024-10-22 19:34:50 -05:00
|
|
|
// initialize values for each droplet
|
2024-10-22 18:58:47 -05:00
|
|
|
for _, pbd := range me.cluster.Droplets {
|
|
|
|
d := findDroplet(pbd.Hostname)
|
|
|
|
if d != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// this is a new unknown droplet (not in the config file)
|
|
|
|
d = new(DropletT)
|
|
|
|
d.pb = pbd
|
|
|
|
me.droplets = append(me.droplets, d)
|
|
|
|
log.Log(EVENT, "config new droplet", d.pb.Hostname, d.pb.StartState, d.pb.PreferredHypervisor)
|
2024-10-25 15:27:10 -05:00
|
|
|
total += 1
|
2024-10-22 18:58:47 -05:00
|
|
|
}
|
2024-10-25 15:27:10 -05:00
|
|
|
log.Log(EVENT, "Total Droplet count:", total)
|
2024-10-23 01:12:19 -05:00
|
|
|
|
|
|
|
return nil
|
2024-10-22 15:16:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func writeConfigFile() {
|
2024-10-24 09:27:23 -05:00
|
|
|
// Get the current time
|
|
|
|
now := time.Now()
|
|
|
|
|
|
|
|
// Format the time to match your desired format: YYYY.MM.DD.HHMMSS
|
|
|
|
timestamp := now.Format("2006.01.02.150405")
|
|
|
|
|
|
|
|
filename := "virtigo.json.new." + timestamp
|
|
|
|
if !writeConfigFileTmp(filename) {
|
2024-10-23 21:46:18 -05:00
|
|
|
log.Println("config file write error")
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
origname := filepath.Join(os.Getenv("VIRTIGO_HOME"), "virtigo.json")
|
|
|
|
newname := filepath.Join(os.Getenv("VIRTIGO_HOME"), "virtigo.json.old")
|
|
|
|
err := os.Rename(origname, newname)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("rename fail: %s", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
2024-10-24 09:27:23 -05:00
|
|
|
|
|
|
|
if !writeConfigFileTmp("virtigo.json") {
|
|
|
|
log.Println("config file write error")
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
2024-10-25 07:24:41 -05:00
|
|
|
|
|
|
|
if me.events.WriteConfigJSON() {
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
if me.events.WriteConfigTEXT() {
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2024-10-25 14:05:40 -05:00
|
|
|
if me.cluster.Droplets.WriteConfigJSON() {
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
if me.cluster.Droplets.WriteConfigTEXT() {
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
2024-10-25 07:24:41 -05:00
|
|
|
*/
|
2024-10-23 21:46:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func writeConfigFileTmp(filename string) bool {
|
2024-10-24 09:27:23 -05:00
|
|
|
fullname := filepath.Join(os.Getenv("VIRTIGO_HOME"), filename)
|
2024-10-22 15:16:37 -05:00
|
|
|
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE, 0666)
|
2024-10-22 19:19:22 -05:00
|
|
|
defer cfgfile.Close()
|
2024-10-22 15:16:37 -05:00
|
|
|
if err != nil {
|
|
|
|
log.Info("open config file :", err)
|
2024-10-23 21:46:18 -05:00
|
|
|
return false
|
2024-10-22 15:16:37 -05:00
|
|
|
}
|
2024-10-22 17:27:24 -05:00
|
|
|
json := me.cluster.FormatJSON()
|
2024-10-22 15:16:37 -05:00
|
|
|
fmt.Fprintln(cfgfile, json)
|
2024-10-23 00:48:35 -05:00
|
|
|
log.Info("Write:", fullname, "OK")
|
2024-10-23 21:46:18 -05:00
|
|
|
return true
|
2024-10-23 00:48:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func writeConfigFileDroplets() {
|
|
|
|
fullname := filepath.Join(os.Getenv("VIRTIGO_HOME"), "droplets.text")
|
|
|
|
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE, 0666)
|
|
|
|
defer cfgfile.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Info("open config file :", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// text := me.cluster.Droplets.FormatTEXT()
|
|
|
|
text := me.cluster.FormatTEXT()
|
|
|
|
fmt.Fprintln(cfgfile, text)
|
|
|
|
log.Info("Write:", fullname, "OK")
|
2024-10-22 15:16:37 -05:00
|
|
|
}
|