Skip to content

Commit

Permalink
added gsa
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Dec 3, 2024
1 parent d182eba commit 67ba14d
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
63 changes: 63 additions & 0 deletions completers/gsa_completer/cmd/root.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package cmd

import (
"github.com/carapace-sh/carapace"
"github.com/carapace-sh/carapace-bin/pkg/actions/net"
"github.com/spf13/cobra"
)

var rootCmd = &cobra.Command{
Use: "gsa <file> [<diff file>]",
Short: "A tool for analyzing the size of compiled Go binaries",
Long: "https://github.com/Zxilly/go-size-analyzer",
Run: func(cmd *cobra.Command, args []string) {},
}

func Execute() error {
return rootCmd.Execute()
}
func init() {
carapace.Gen(rootCmd).Standalone()

rootCmd.Flags().Bool("compact", false, "Hide function details, replacement with size")
rootCmd.Flags().StringP("format", "f", "", "Output format")
rootCmd.Flags().String("height", "", "Height of the svg treemap")
rootCmd.Flags().BoolP("help", "h", false, "Show context-sensitive help")
rootCmd.Flags().Bool("hide-main", false, "Hide main package")
rootCmd.Flags().Bool("hide-sections", false, "Hide sections")
rootCmd.Flags().Bool("hide-std", false, "Hide standard library")
rootCmd.Flags().String("indent", "", "Indentation for json output")
rootCmd.Flags().String("listen", "", "listen address")
rootCmd.Flags().String("margin-box", "", "Margin between boxes")
rootCmd.Flags().Bool("no-disasm", false, "Skip disassembly pass")
rootCmd.Flags().Bool("no-dwarf", false, "Skip dwarf pass")
rootCmd.Flags().Bool("no-symbol", false, "Skip symbol pass")
rootCmd.Flags().Bool("open", false, "Open browser")
rootCmd.Flags().StringP("output", "o", "", "Write to file")
rootCmd.Flags().String("padding-box", "", "Padding between box border and content")
rootCmd.Flags().String("padding-root", "", "Padding around root content")
rootCmd.Flags().Bool("tui", false, "use terminal interface to explore the details")
rootCmd.Flags().Bool("update-cache", false, "Update the cache file for the web UI")
rootCmd.Flags().Bool("verbose", false, "Verbose output")
rootCmd.Flags().Bool("version", false, "Show version")
rootCmd.Flags().Bool("web", false, "use web interface to explore the details")
rootCmd.Flags().String("width", "", "Width of the svg treemap")

carapace.Gen(rootCmd).FlagCompletion(carapace.ActionMap{
"format": carapace.ActionValues("text", "json", "html", "svg"),
"listen": carapace.ActionMultiPartsN(":", 2, func(c carapace.Context) carapace.Action {
switch len(c.Parts) {
case 0:
return net.ActionHosts().Suffix(":")
default:
return net.ActionPorts()
}
}),
"output": carapace.ActionFiles(),
})

carapace.Gen(rootCmd).PositionalCompletion(
carapace.ActionFiles(),
carapace.ActionFiles(),
)
}
7 changes: 7 additions & 0 deletions completers/gsa_completer/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "github.com/carapace-sh/carapace-bin/completers/gsa_completer/cmd"

func main() {
cmd.Execute()
}

0 comments on commit 67ba14d

Please sign in to comment.