Compare commits

..

No commits in common. "master" and "v0.0.24" have entirely different histories.

6 changed files with 31 additions and 60 deletions

38
argv.go
View File

@ -9,25 +9,18 @@ package main
*/
import (
"fmt"
"os"
"go.wit.com/log"
)
var argv args
type args struct {
Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
Verbose bool `arg:"--verbose" help:"talk more"`
Daemon bool `arg:"--daemon" default:"false" help:"run in daemon mode"`
UseME bool `arg:"--me" help:"use /me to connect"`
Port int `arg:"--port" default:"2522" help:"port to run on"`
URL string `arg:"--url" help:"url to use"`
Config string `arg:"--config" help:"config file (default is ~/.config/cloud/gus.text"`
}
type EmptyCmd struct {
Verbose bool `arg:"--verbose" help:"talk more"`
Daemon bool `arg:"--daemon" default:"false" help:"run in daemon mode"`
UseME bool `arg:"--me" help:"use /me to connect"`
Port int `arg:"--port" default:"2522" help:"port to run on"`
URL string `arg:"--url" help:"url to use"`
Config string `arg:"--config" help:"config file (default is ~/.config/cloud/gus.text"`
}
func (args) Version() string {
@ -55,22 +48,3 @@ func init() {
INFO = log.NewFlag("INFO", false, full, short, "general gus")
WARN = log.NewFlag("WARN", true, full, short, "bad things")
}
/*
handles shell autocomplete
*/
func (a args) DoAutoComplete(argv []string) {
switch argv[0] {
case "playback":
fmt.Println("long --uuid purge last submit")
case "clean":
fmt.Println("")
default:
if argv[0] == ARGNAME {
// list the subcommands here
fmt.Println("--json interact playback clean")
}
}
os.Exit(0)
}

View File

@ -9,6 +9,7 @@ import (
"os"
"time"
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
"go.wit.com/log"
)
@ -27,6 +28,10 @@ func refresh() {
}
func doGui() {
me.myGui = gui.New()
me.myGui.InitEmbed(resources)
me.myGui.Default()
win := gadgets.RawBasicWindow("gus: (squirl your way around networks)")
win.Make()
win.Show()

View File

@ -5,10 +5,10 @@ package gus;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
enum GusEventType {
Connect = 0; // a socket connect attempt
Disconnect = 1; // a socket closed
Enable = 2; // listening on a port was enabled
Disable = 3; // listening on a port was disabled
Connect = 0; // a socket connect attempt
Disconnect = 1; // a socket closed
Enable = 2; // listening on a port was enabled
Disable = 3; // listening on a port was disabled
}
message GusSocket {

View File

@ -6,7 +6,6 @@ package main
import (
"os"
"go.wit.com/gui"
"go.wit.com/log"
)
@ -14,12 +13,12 @@ func okExit(note string) {
if note != "" {
log.Info("gus exit:", note, "ok")
}
gui.StandardExit()
me.myGui.Close()
os.Exit(0)
}
func badExit(err error) {
log.Info("gus failed: ", err)
gui.StandardExit()
me.myGui.Close()
os.Exit(-1)
}

30
main.go
View File

@ -18,7 +18,7 @@ import (
"github.com/google/uuid"
"go.wit.com/dev/alexflint/arg"
"go.wit.com/lib/gui/prep"
"go.wit.com/gui"
"go.wit.com/log"
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
)
@ -26,19 +26,16 @@ import (
var VERSION string
var BUILDTIME string
var ARGNAME string = "gus"
//go:embed resources/*
var resources embed.FS
func main() {
me = new(gusconf)
prep.Bash(ARGNAME, argv.DoAutoComplete) // this line should be: prep.Bash(argv)
me.myGui = prep.Gui() // prepares the GUI package for go-args
me.pp = arg.MustParse(&argv)
var pp *arg.Parser
gui.InitArg()
pp = arg.MustParse(&argv)
if me.pp == nil {
me.pp.WriteHelp(os.Stdout)
if pp == nil {
pp.WriteHelp(os.Stdout)
os.Exit(0)
}
log.Info("tmp hack", uuid.New().String())
@ -69,17 +66,16 @@ func main() {
os.Exit(0)
}
startGus()
if argv.Gui != nil {
me.myGui.Start() // loads the GUI toolkit
doGui() // start making our forge GUI
if gui.NoGui() {
startGus()
startHTTP()
os.Exit(0)
}
startHTTP()
os.Exit(0)
// debug() // sits here forever
startGus()
// go NewWatchdog()
go startHTTP()
doGui()
}
func startGus() {

View File

@ -7,18 +7,15 @@ import (
sync "sync"
"time"
"go.wit.com/dev/alexflint/arg"
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
"go.wit.com/lib/gui/prep"
)
var me *gusconf
// this app's variables
type gusconf struct {
pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
myGui *prep.GuiPrep // the base of the gui
myGui *gui.Node // the base of the gui
portmaps *Portmaps // the portmap window
portwin *stdTableWin // the portwin window
events *Events // the event log