summaryrefslogtreecommitdiff
path: root/gocomplete/pkgs.go
blob: b223ea94d3129a7a1f8e5f6b318f9a33b0d2a2cd (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
package main

import (
	"bytes"
	"encoding/json"
	"os/exec"
	"strings"

	"github.com/posener/complete"
)

const goListFormat = `'{"name": "{{.Name}}", "dir": "{{.Dir}}"}'`

func predictPackages(packageName string) complete.Predictor {
	return complete.PredictFunc(func(a complete.Args) (prediction []string) {
		dir := a.Directory()
		dir = strings.TrimRight(dir, "/.") + "/..."

		pkgs := listPackages(dir)

		files := make([]string, 0, len(pkgs))
		for _, p := range pkgs {
			if packageName != "" && p.Name != packageName {
				continue
			}
			files = append(files, p.Path)
		}
		return complete.PredictFilesSet(files).Predict(a)
	})
}

type pack struct {
	Name string
	Path string
}

func listPackages(dir string) (pkgs []pack) {
	out, err := exec.Command("go", "list", "-f", goListFormat, dir).Output()
	if err != nil {
		return
	}
	lines := bytes.Split(out, []byte("\n"))
	for _, line := range lines {
		var p pack
		if err := json.Unmarshal(line, &p); err == nil {
			pkgs = append(pkgs, p)
		}
	}
	return
}