Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add buf plugin prune command #3523

Merged
merged 6 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
determinisitic.
- Add `buf plugin push` command to push a plugin to the Buf Schema Registry.
Only WebAssembly check plugins are supported at this time.
- Add `buf plugin update` and `buf plugin prune` command to manage plugins in the `buf.lock`
file. Only WebAssembly check plugins are supported at this time.
- Add `buf registry plugin commit {add-label,info,list,resolve}` to manage BSR plugin commits.
- Add `buf registry plugin label {archive,info,list,unarchive}` to manage BSR plugin commits.

Expand Down
2 changes: 2 additions & 0 deletions private/buf/cmd/buf/buf.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ import (
"github.com/bufbuild/buf/private/buf/cmd/buf/command/mod/modlsbreakingrules"
"github.com/bufbuild/buf/private/buf/cmd/buf/command/mod/modlslintrules"
"github.com/bufbuild/buf/private/buf/cmd/buf/command/mod/modopen"
"github.com/bufbuild/buf/private/buf/cmd/buf/command/plugin/pluginprune"
"github.com/bufbuild/buf/private/buf/cmd/buf/command/plugin/pluginpush"
"github.com/bufbuild/buf/private/buf/cmd/buf/command/plugin/pluginupdate"
"github.com/bufbuild/buf/private/buf/cmd/buf/command/push"
Expand Down Expand Up @@ -191,6 +192,7 @@ func NewRootCommand(name string) *appcmd.Command {
SubCommands: []*appcmd.Command{
pluginpush.NewCommand("push", builder),
pluginupdate.NewCommand("update", builder),
pluginprune.NewCommand("prune", builder),
},
},
{
Expand Down
106 changes: 106 additions & 0 deletions private/buf/cmd/buf/command/plugin/pluginprune/pluginprune.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
// Copyright 2020-2024 Buf Technologies, Inc.
//
// 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 pluginprune

import (
"context"

"github.com/bufbuild/buf/private/buf/bufcli"
"github.com/bufbuild/buf/private/buf/bufworkspace"
"github.com/bufbuild/buf/private/bufpkg/bufparse"
"github.com/bufbuild/buf/private/bufpkg/bufplugin"
"github.com/bufbuild/buf/private/pkg/app/appcmd"
"github.com/bufbuild/buf/private/pkg/app/appext"
"github.com/bufbuild/buf/private/pkg/slicesext"
)

// NewCommand returns a new Command.
func NewCommand(
name string,
builder appext.SubCommandBuilder,
) *appcmd.Command {
return &appcmd.Command{
Use: name + " <directory>",
Short: "Prune unused plugins from buf.lock",
Long: `Plugins that are no longer configured in buf.yaml are removed from the buf.lock file.

The first argument is the directory of your buf.yaml configuration file.
Defaults to "." if no argument is specified.`,
Args: appcmd.MaximumNArgs(1),
Run: builder.NewRunFunc(
func(ctx context.Context, container appext.Container) error {
return run(ctx, container)
},
),
}
}

func run(
ctx context.Context,
container appext.Container,
) error {
dirPath := "."
if container.NumArgs() > 0 {
dirPath = container.Arg(0)
}
controller, err := bufcli.NewController(container)
if err != nil {
return err
}
workspaceDepManager, err := controller.GetWorkspaceDepManager(ctx, dirPath)
if err != nil {
return err
}
configuredRemotePluginRefs, err := workspaceDepManager.ConfiguredRemotePluginRefs(ctx)
if err != nil {
return err
}
return prune(
ctx,
slicesext.Map(
configuredRemotePluginRefs,
func(pluginRef bufparse.Ref) string {
return pluginRef.FullName().String()
},
),
workspaceDepManager,
)
}

func prune(
ctx context.Context,
bufYAMLBasedRemotePluginNames []string,
workspaceDepManager bufworkspace.WorkspaceDepManager,
) error {
bufYAMLRemotePluginNames := slicesext.ToStructMap(bufYAMLBasedRemotePluginNames)
existingRemotePluginKeys, err := workspaceDepManager.ExistingBufLockFileRemotePluginKeys(ctx)
if err != nil {
return err
}
var prunedBufLockPluginKeys []bufplugin.PluginKey
for _, existingRemotePluginKey := range existingRemotePluginKeys {
// Check if an existing plugin key from the buf.lock is confiugred in the buf.yaml.
if _, ok := bufYAMLRemotePluginNames[existingRemotePluginKey.FullName().String()]; ok {
// If yes, then we keep it for the updated buf.lock.
prunedBufLockPluginKeys = append(prunedBufLockPluginKeys, existingRemotePluginKey)
}
}
// We keep the existing dep module keys as-is.
existingDepModuleKeys, err := workspaceDepManager.ExistingBufLockFileDepModuleKeys(ctx)
if err != nil {
return err
}
return workspaceDepManager.UpdateBufLockFile(ctx, existingDepModuleKeys, prunedBufLockPluginKeys)
}
19 changes: 19 additions & 0 deletions private/buf/cmd/buf/command/plugin/pluginprune/usage.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading