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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
// 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/gui/prep"
"go.wit.com/log"
)
var argv args
type args struct {
Git *GitCmd `arg:"subcommand:git" help:"git stuff"`
Build *BuildCmd `arg:"subcommand:build" help:"build and install things"`
ListPkgs *EmptyCmd `arg:"subcommand:list" help:"list all the packages on mirrors.wit.com"`
Clone *CloneCmd `arg:"subcommand:clone" help:"go-clone from a gowebd repomap"`
Rdate *EmptyCmd `arg:"subcommand:rdate" help:"standard rdate"`
Zoo *EmptyCmd `arg:"subcommand:zoo" help:"WIT Private Cloud info"`
Upgrade *UpgradeCmd `arg:"subcommand:upgrade" help:"apt upgrade packages installed from mirrors.wit.com"`
Publish *EmptyCmd `arg:"subcommand:publish" help:"publish packages"`
RepoMap string `arg:"--repomap" help:"location of the repomap"`
DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
Install bool `arg:"--install" help:"go install the binaries first"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
Force bool `arg:"--force" help:"rebuild everything"`
Recursive bool `arg:"--recursive" help:"go-clone --recursive"`
WITCOM bool `arg:"--witcom" help:"add the GPL header"`
Max int32 `arg:"--max" help:"stop building after max builds"`
}
type BuildCmd struct {
Debian *DebianCmd `arg:"subcommand:debian" help:"build missing .deb packages"`
MacBuild *EmptyCmd `arg:"subcommand:macos" help:"build macos packages"`
Install *DefaultCmd `arg:"subcommand:install" help:"run make install in each repo"`
}
type DebianCmd struct {
Release bool `arg:"--release" help:"use go-deb --release"`
DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
Force bool `arg:"--force" help:"rebuild everything"`
Quick bool `arg:"--quick" help:"only build repos with new versions"`
}
type CloneCmd struct {
Check *EmptyCmd `arg:"subcommand:check" help:"check urls against the repomap"`
Fix *EmptyCmd `arg:"subcommand:fix" help:"fix urls from the repomap"`
Repomap *EmptyCmd `arg:"subcommand:repomap" help:"make updated repomap"`
DryRun bool `arg:"--dry-run" help:"show what has not yet come to pass"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
}
type UpgradeCmd struct {
List *EmptyCmd `arg:"subcommand:list" help:"fix urls from the repomap"`
All bool `arg:"--all" help:"show all the packages"`
DryRun bool `arg:"--dry-run" help:"don't really do anything"`
Force bool `arg:"--force" help:"force un-install and re-install each package"`
}
type DefaultCmd struct {
DryRun bool `arg:"--dry-run" help:"show what has not yet come to pass"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
Force bool `arg:"--force" help:"rebuild everything"`
}
type GitCmd struct {
Log *EmptyCmd `arg:"subcommand:log" help:"git log"`
Who *EmptyCmd `arg:"subcommand:who" help:"git who"`
Tag *EmptyCmd `arg:"subcommand:tag" help:"show tags"`
Pull *EmptyCmd `arg:"subcommand:pull" help:"pull the wit standard paths"`
Push *EmptyCmd `arg:"subcommand:push" help:"push the wit standard paths"`
}
type EmptyCmd struct {
}
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 ARGNAME
}
func (a args) DoAutoComplete(pb *prep.Auto) {
base := []string{"--version", "build", "upgrade", "git", "publish", "--force"}
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, "clone")
}
if areSuperuser() {
base = append(base, "upgrade")
base = append(base, "rdate")
}
if pb.Cmd == "" {
pb.Autocomplete3(base)
} else {
pb.SubCommand(pb.Goargs...)
}
os.Exit(0)
}
|