aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_rules/go/tools/filter_tags/filter_tags.go
blob: 44ca6bd0b95b5280639377431f5f688c5e7e5a65 (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
package main

import (
	"flag"
	"fmt"
	"go/build"
	"log"
	"path/filepath"
	"strings"
)

// Returns an array of strings containing only the filenames that should build
// according to the Context given.
func filterFilenames(bctx build.Context, inputs []string) ([]string, error) {
	outputs := []string{}

	for _, filename := range inputs {
		fullPath, err := filepath.Abs(filename)
		if err != nil {
			return nil, err
		}
		dir, base := filepath.Split(fullPath)

		matches, err := bctx.MatchFile(dir, base)
		if err != nil {
			return nil, err
		}

		if matches {
			outputs = append(outputs, filename)
		}
	}
	return outputs, nil
}

func main() {
	cgo := flag.Bool("cgo", false, "Sets whether cgo-using files are allowed to pass the filter.")
	tags := flag.String("tags", "", "Only pass through files that match these tags.")
	flag.Parse()

	bctx := build.Default
	bctx.BuildTags = strings.Split(*tags, ",")
	bctx.CgoEnabled = *cgo // Worth setting? build.MatchFile ignores this.

	outputs, err := filterFilenames(bctx, flag.Args())
	if err != nil {
		log.Fatalf("build_tags error: %v\n", err)
	}

	fmt.Println(strings.Join(outputs, " "))
}