edgeboxctl/cmd/sysctl/main.go

101 lines
2.1 KiB
Go
Raw Normal View History

package main
2020-11-08 23:48:45 +01:00
import (
"flag"
"fmt"
"log"
"os"
"os/signal"
"time"
2021-02-11 21:31:32 +01:00
"github.com/edgebox-iot/sysctl/internal/diagnostics"
)
func main() {
2020-11-08 23:48:45 +01:00
// load command line arguments
2021-02-11 21:31:32 +01:00
version := flag.Bool("version", false, "Get the version info")
name := flag.String("name", "edgebox", "name for the service")
flag.Parse()
2021-02-11 21:31:32 +01:00
if *version {
printVersion()
os.Exit(0)
}
2021-02-11 21:31:32 +01:00
log.Printf("Starting Sysctl service for %s", *name)
// setup signal catching
sigs := make(chan os.Signal, 1)
// catch all signals since not explicitly listing
signal.Notify(sigs)
// Cathing specific signals can be done with:
//signal.Notify(sigs,syscall.SIGQUIT)
// method invoked upon seeing signal
go func() {
s := <-sigs
log.Printf("RECEIVED SIGNAL: %s", s)
2021-02-11 21:31:32 +01:00
appCleanup()
os.Exit(1)
}()
// infinite loop
for {
log.Printf("Executing instruction %s", *name)
systemIterator()
}
}
// AppCleanup : cleanup app state before exit
2021-02-11 21:31:32 +01:00
func appCleanup() {
log.Println("Cleaning up app status before exit")
}
2021-02-11 21:31:32 +01:00
func printVersion() {
2021-02-11 21:38:43 +01:00
fmt.Printf(
2021-02-11 21:31:32 +01:00
"version: %s\ncommit: %s\nbuild time: %s",
diagnostics.Version, diagnostics.Commit, diagnostics.BuildDate,
)
}
// IsSystemReady : Checks hability of the service to execute commands (Only after "edgebox --build" is ran at least once via SSH, or if built for distribution)
func isSystemReady() bool {
_, err := os.Stat("/home/system/components/ws")
return !os.IsNotExist(err)
}
// IsDatabaseReady : Checks is it can successfully connect to the task queue db
func isDatabaseReady() bool {
return false
}
// getNextInstruction : Retrieves next instruction from the database
func getNextInstruction() string {
return "Test Instruction Command"
}
func executeInstruction(string) string {
}
func systemIterator() {
if !isSystemReady() {
// Wait about 60 seconds before trying again.
log.Printf("System not ready. Next try will be executed in 60 seconds")
time.Sleep(time.Millisecond * time.Duration(60000))
} else {
// Wait about 1 second before resumming operations.
log.Printf("Next instruction will be executed 1 second")
time.Sleep(time.Millisecond * time.Duration(1000))
}
}