blob: a485bffb169cf1f743e72a95aec15298164969c2 [file]
// Copyright 2021 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"encoding/json"
"fmt"
"io"
"log/slog"
"os"
"runtime"
"strings"
)
type driverResponse struct {
// NotHandled is returned if the request can't be handled by the current
// driver. If an external driver returns a response with NotHandled, the
// rest of the driverResponse is ignored, and go/packages will fallback
// to the next driver. If go/packages is extended in the future to support
// lists of multiple drivers, go/packages will fall back to the next driver.
NotHandled bool
// Compiler and Arch are the arguments pass of types.SizesFor
// to get a types.Sizes to use when type checking.
Compiler string
Arch string
// Roots is the set of package IDs that make up the root packages.
// We have to encode this separately because when we encode a single package
// we cannot know if it is one of the roots as that requires knowledge of the
// graph it is part of.
Roots []string `json:",omitempty"`
// Packages is the full set of packages in the graph.
// The packages are not connected into a graph.
// The Imports if populated will be stubs that only have their ID set.
// Imports will be connected and then type and syntax information added in a
// later pass (see refine).
Packages []*FlatPackage
}
var (
rulesGoRepositoryName = "@io_bazel_rules_go"
goDefaultAspect = rulesGoRepositoryName + "//go/tools/gopackagesdriver:aspect.bzl%go_pkg_info_aspect"
bazelBin = getenvDefault("GOPACKAGESDRIVER_BAZEL", "bazel")
bazelStartupFlags = strings.Fields(os.Getenv("GOPACKAGESDRIVER_BAZEL_FLAGS"))
bazelCommonFlags = strings.Fields(os.Getenv("GOPACKAGESDRIVER_BAZEL_COMMON_FLAGS"))
bazelQueryFlags = strings.Fields(os.Getenv("GOPACKAGESDRIVER_BAZEL_QUERY_FLAGS"))
bazelQueryScope = getenvDefault("GOPACKAGESDRIVER_BAZEL_QUERY_SCOPE", "")
bazelBuildFlags = strings.Fields(os.Getenv("GOPACKAGESDRIVER_BAZEL_BUILD_FLAGS"))
workspaceRoot = os.Getenv("BUILD_WORKSPACE_DIRECTORY")
buildWorkingDirectory = os.Getenv("BUILD_WORKING_DIRECTORY")
additionalAspects = strings.Fields(os.Getenv("GOPACKAGESDRIVER_BAZEL_ADDTL_ASPECTS"))
additionalKinds = strings.Fields(os.Getenv("GOPACKAGESDRIVER_BAZEL_KINDS"))
logPath = os.Getenv("GOPACKAGESDRIVER_LOG")
emptyResponse = &driverResponse{
NotHandled: true,
Compiler: "gc",
Arch: runtime.GOARCH,
Roots: []string{},
Packages: []*FlatPackage{},
}
)
func run(ctx context.Context, in io.Reader, out io.Writer, args []string) (retErr error) {
if logPath != "" {
f, err := os.OpenFile(logPath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0666)
if err != nil {
fmt.Fprintf(os.Stderr, "error opening log file: %v\n", err)
os.Exit(1)
}
defer f.Close()
slog.SetDefault(slog.New(slog.NewJSONHandler(f, nil)).With("pid", os.Getpid()))
} else {
slog.SetDefault(slog.New(slog.DiscardHandler))
}
queries := args
request, err := ReadDriverRequest(in)
if err != nil {
return fmt.Errorf("unable to read request: %w", err)
}
slog.Info("start", "args", args, "request", request)
defer func() {
if retErr != nil {
slog.Error("finish", "error", retErr)
}
}()
bazel, err := NewBazel(ctx, bazelBin, workspaceRoot, buildWorkingDirectory, bazelCommonFlags, bazelStartupFlags)
if err != nil {
return fmt.Errorf("unable to create bazel instance: %w", err)
}
bazelJsonBuilder, err := NewBazelJSONBuilder(bazel, request.Tests)
if err != nil {
return fmt.Errorf("unable to build JSON files: %w", err)
}
labels, err := bazelJsonBuilder.Labels(ctx, queries)
if err != nil {
return fmt.Errorf("unable to lookup package: %w", err)
}
jsonFiles, err := bazelJsonBuilder.Build(ctx, labels, request.Mode)
if err != nil {
return fmt.Errorf("unable to build JSON files: %w", err)
}
driver, err := NewJSONPackagesDriver(jsonFiles, bazelJsonBuilder.PathResolver(), bazel.version, request.Overlay)
if err != nil {
return fmt.Errorf("unable to load JSON files: %w", err)
}
// Note: we are returning all files required to build a specific package.
// For file queries (`file=`), this means that the CompiledGoFiles will
// include more than the only file being specified.
resp := driver.GetResponse(labels)
data, err := json.Marshal(resp)
if err != nil {
return fmt.Errorf("unable to marshal response: %v", err)
}
if _, err = out.Write(data); err != nil {
return fmt.Errorf("writing response: %w", err)
}
slog.Info("finish", "packages", len(resp.Packages))
return nil
}
func main() {
ctx, cancel := signalContext(context.Background(), os.Interrupt)
defer cancel()
if err := run(ctx, os.Stdin, os.Stdout, os.Args[1:]); err != nil {
fmt.Fprintf(os.Stderr, "error: %v", err)
// gopls will check the packages driver exit code, and if there is an
// error, it will fall back to go list. Obviously we don't want that,
// so force a 0 exit code.
os.Exit(0)
}
}