-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
buf plugin prune
command (#3523)
- Loading branch information
Showing
4 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
private/buf/cmd/buf/command/plugin/pluginprune/pluginprune.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
19
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.
Oops, something went wrong.