1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  | 
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
package main
/*
	this parses the command line arguements
	this enables command line options from other packages like 'gui' and 'log'
*/
import (
	"os"
	"go.wit.com/lib/debugger"
	"go.wit.com/lib/fhelp"
	"go.wit.com/lib/gui/logsettings"
	"go.wit.com/lib/protobuf/argvpb"
	"go.wit.com/log"
)
// sent via -ldflags
var VERSION string
var BUILDTIME string
// used for shell auto completion
var APPNAME string = "wit" // todo: get this from $0 ?
func init() {
	if debugger.ArgDebug() {
		log.Info("cmd line --debugger == true")
		go func() {
			log.Sleep(2)
			debugger.DebugWindow()
		}()
	}
	if debugger.ArgLogger() {
		log.Info("cmd line --loggger == true")
		go func() {
			log.Sleep(4)
			logsettings.LogWindow()
			logsettings.LogWindow()
		}()
	}
}
func (args) Buildtime() (string, string) {
	return BUILDTIME, VERSION
}
func (args) Version() string {
	return "wit-test " + VERSION + "    Built on " + BUILDTIME
}
/*
	handles shell autocomplete
*/
func (args) Appname() string {
	return APPNAME
}
func (args) ArgvGui() error {
	me.myGui = fhelp.Gui() // adds the GUI package argv support
	return nil
}
func (a args) DoAutoComplete(pb *argvpb.Argv) {
	base := []string{"build", "upgrade", "git", "publish", "pb", "linux", "droplet", "test"}
	base = append(base, "--version", "--force", "--all", "--dry-run")
	// add these only if installed
	if _, err := fhelp.CheckCmd("zood"); err == nil {
		base = append(base, "zoo")
	}
	if _, err := fhelp.CheckCmd("forge"); err == nil {
		base = append(base, "forge")
	}
	if _, err := fhelp.CheckCmd("go-clone"); err == nil {
		base = append(base, "go-clone")
	}
	if areSuperuser() {
		base = append(base, "upgrade")
		base = append(base, "rdate")
	}
	if pb.GetCmd() == "" {
		pb.SendStrings(base)
	} else {
		pb.SubCommand(pb.Goargs...)
	}
	os.Exit(0)
}
  |