summaryrefslogtreecommitdiff
path: root/theMagicOfAutocomplete.go
blob: 3202af370e105dbb77d863df3d850a067e8450a9 (plain)
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
package prep

// This is where the actual autocomplete happens
// lots of the fun magic is in here

import (
	"os"
	"time"

	"go.wit.com/dev/alexflint/arg"
	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
)

func Autocomplete(dest any) *Auto {
	myAuto = new(AutoArgs)          // todo: redo this
	findAppInfo(dest)               // parses back to main() for argv info
	pb := parseArgv(myAuto.appName) // parses os.Args into a protobuf

	// set the start time of the binary
	now := time.Now()
	pb.Ctime = timestamppb.New(now)

	if pb.SetupAuto {
		// --bash was passed. try to configure bash-completion
		MakeAutocompleteFiles(myAuto.appName)
		os.Exit(0)
	}

	if pb.Debug {
		// dump debug info
		pb.PrintDebug()
	}

	all, err := pb.getHistoryPB() // read in the history protobuf file
	if err != nil {
		// there is no history
	}

	if pb.Debug {
		all.PrintHistory()
	}

	// turn on debugging if duration < 200 milliseconds
	dur := pb.Duration.AsDuration()
	if dur < time.Millisecond*200 {
		pb.Debug = true
		pb.Fast = true
	}

	arg.Register(&argBash)
	flags := []string{}
	for _, s := range pb.Argv {
		if s == "--autodebug" {
			continue
		}
		flags = append(flags, s)
	}
	// pb.Debug = true
	// pb.Debugf("DEBUG: MustParse(%v)", flags)
	myAuto.pp, err = arg.ParseFlags(flags, dest)
	if err != nil {
		pb.Debugf("DEBUG: Parse error: %v", err)
	}

	if myAuto.pp == nil {
		pb.Debugf("DEBUG: myAuto.pp == nil after ParseFlags()")
	} else {
		// pb.Debugf("DEBUG: myAuto.pp is ok after ParseFlags()")
	}

	// not autocompleting. just return to the application
	if !pb.IsAuto {
		arg.Register(&argBash)
		myAuto.pp = arg.MustParse(dest)
		return pb
	}

	// this is a work in progress
	if pb.Last == "--gui" {
		pb.Debugf("DEBUG: last=%s found --gui", pb.Last)
		pb.Autocomplete2("andlabs gogui")
		os.Exit(0)
	} else {
		// pb.Debugf("DEBUG: NO MATCH last='%s' found key '%s' = %s", pb.Last, key, val)
	}

	if myAuto.autoFunc == nil {
		pb.SubCommand(pb.Argv...)
	} else {
		myAuto.autoFunc(pb) // run the autocomplete function the user made for their application
	}
	if pb.Debug {
		// TODO:
		// check here to see if there was any completion text sent
		// if not, send "reset bash newline\n" to cause bash to redraw PS1 for the user
	}
	os.Exit(0)
	return nil
}