File: constraints.go

package info (click to toggle)
golang-github-cue-lang-cue 0.12.0.-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,072 kB
  • sloc: sh: 57; makefile: 17
file content (61 lines) | stat: -rw-r--r-- 1,554 bytes parent folder | download | duplicates (3)
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
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package cache

import (
	"go/ast"
	"go/build/constraint"
	"go/parser"
	"go/token"
)

// isStandaloneFile reports whether a file with the given contents should be
// considered a 'standalone main file', meaning a package that consists of only
// a single file.
func isStandaloneFile(src []byte, standaloneTags []string) bool {
	f, err := parser.ParseFile(token.NewFileSet(), "", src, parser.PackageClauseOnly|parser.ParseComments)
	if err != nil {
		return false
	}

	if f.Name == nil || f.Name.Name != "main" {
		return false
	}

	found := false
	walkConstraints(f, func(c constraint.Expr) bool {
		if tag, ok := c.(*constraint.TagExpr); ok {
			for _, t := range standaloneTags {
				if t == tag.Tag {
					found = true
					return false
				}
			}
		}
		return true
	})

	return found
}

// walkConstraints calls f for each constraint expression in the file, until
// all constraints are exhausted or f returns false.
func walkConstraints(file *ast.File, f func(constraint.Expr) bool) {
	for _, cg := range file.Comments {
		// Even with PackageClauseOnly the parser consumes the semicolon following
		// the package clause, so we must guard against comments that come after
		// the package name.
		if cg.Pos() > file.Name.Pos() {
			continue
		}
		for _, comment := range cg.List {
			if c, err := constraint.Parse(comment.Text); err == nil {
				if !f(c) {
					return
				}
			}
		}
	}
}