Question
I have found a lot of development information about cobra on the Internet, most of which are copied The tutorials on the official website are extremely lacking in reference value; so after developing the project, prepare to write a cobra development tutorial yourself.
Cobra Overview
Cobra is a library that provides a simple interface for creating powerful modern CLIs The interface is similar to git and go tools.
Cobra provides:
Simple subcommand-based CLI: app server
,app fetch
, etc.Fully compliant POSIX flags (including short and long versions) Nested subcommands -
Global, local and cascading flags Sage advice ( app srver
...you meanapp server
?)Automatic help generation for commands and flags -h
,--help Automatic help flag recognition for
etc.Automatically generate shell for your application Autocomplete function (bash, zsh, fish, powershell) -
Automatically generated man pages for your application Command aliases so you can change them without breaking them -
Flexibility to define your own help, usage, etc. Optional seamless integration with viper[1] for 12-factor applications.
Installation
Using Cobra is easy. First, use go get
to install the latest version of the library.
go get -u github.com/spf13/cobra@latest
Next, include Cobra in your application:
import "github.com/spf13/cobra"
用法
使用 cobra 自带的 cli 工具 生成项目
安装 cli 工具
go install github.com/spf13/cobra-cli@latest
使用方式
创建一个新的文件夹 cd
到这个文件夹里面去运行 go mod init <modname> </modname>
来创建一个go mod 项目
例如:
cd $HOME/code mkdir myapp cd myapp go mod init github.com/spf13/myapp
初始化 Cobra CLI 应用程序
从 Go 模块中运行 cobra-cli init
。这将创建一个新的基本项目让您修改。
您将需要打开并编辑 cmd/root.go
并提供您自己的描述和逻辑。
例如:
cd $HOME/code/myapp cobra-cli init go run main.go
将命令添加到项目
初始化 cobra 应用程序后,您可以继续使用 Cobra 生成器向您的应用程序添加其他命令。执行此操作的命令是cobra-cli add
.
在您的项目目录(您的 main.go 文件所在的位置)中,您将运行以下命令:
cobra-cli add serve cobra-cli add config cobra-cli add create -p 'configCmd'
其中还有很多标志我这里就不在细说了,需要了解的可以访问 cobra-cli[2] 自行查看。
采用手动进行项目开发
我们先来看一下 cobra 推荐的项目目录结构
▾ appName/ ▾ cmd/ add.go your.go commands.go here.go main.go
并且在main.go 中应该非常的简单:
package main import ( "{pathToYourApp}/cmd" ) func main() { cmd.Execute() }
然后需要创建一个 rootCmd 来当做 命令的入口 (在 cmd/root.go
中)
var rootCmd = &cobra.Command{ Use: "hugo", Short: "Hugo is a very fast static site generator", Long: `A Fast and Flexible Static Site Generator built with love by spf13 and friends in Go. Complete documentation is available at http://hugo.spf13.com`, Run: func(cmd *cobra.Command, args []string) { // Do Stuff Here }, } func Execute() { if err := rootCmd.Execute(); err != nil { fmt.Fprintln(os.Stderr, err) os.Exit(1) } }
您将在 init() 函数中另外定义标志和句柄配置。
package cmd import ( "fmt" "os" "github.com/spf13/cobra" "github.com/spf13/viper" ) var ( // Used for flags. cfgFile string userLicense string rootCmd = &cobra.Command{} ) // Execute executes the root command. func Execute() error { return rootCmd.Execute() } func init() { cobra.OnInitialize(initConfig) rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)") rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution") rootCmd.PersistentFlags().StringVarP(&userLicense, "license", "l", "", "name of license for the project") rootCmd.PersistentFlags().Bool("viper", true, "use Viper for configuration") viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author")) viper.BindPFlag("useViper", rootCmd.PersistentFlags().Lookup("viper")) viper.SetDefault("author", "NAME HERE <EMAIL ADDRESS>") viper.SetDefault("license", "apache") rootCmd.AddCommand(addCmd) rootCmd.AddCommand(initCmd) } func initConfig() { if cfgFile != "" { // Use config file from the flag. viper.SetConfigFile(cfgFile) } else { // Find home directory. home, err := os.UserHomeDir() cobra.CheckErr(err) // Search config in home directory with name ".cobra" (without extension). viper.AddConfigPath(home) viper.SetConfigType("yaml") viper.SetConfigName(".cobra") } viper.AutomaticEnv() if err := viper.ReadInConfig(); err == nil { fmt.Println("Using config file:", viper.ConfigFileUsed()) } }
接下来就是开发 配置各种 cobra cmd 的参数,在配置之前,我们先来熟悉一下 cmd 的内容。
type Command struct { // 使用是单行使用消息。 // 推荐的语法如下: // [ ] 标识一个可选参数。未括在括号中的参数是必需的。 // ... 表示您可以为前一个参数指定多个值。 // |表示互斥信息。您可以使用分隔符左侧的参数或分隔符右侧的参数。您不能在一次使用该命令时同时使用这两个参数。 // { } 分隔一组互斥参数,当需要其中一个参数时。如果参数是可选的,则将它们括在方括号 ([ ]) 中。 // 示例:add [-F file | -D dir]... [-f format] profile Use string // Aliases 是一个别名数组,可以用来代替 Use 中的第一个单词。 Aliases []string // SuggestFor 是一个命令名称数组,将为其建议该命令 - 类似于别名,但只是建议。 SuggestFor []string // Short 是“帮助”输出中显示的简短描述。 Short string // Long 是“help <this-command>”输出中显示的长消息。 Long string // Example is examples of how to use the command. Example string // ValidArgs 是 shell 完成中接受的所有有效非标志参数的列表,(提供的自动补全的参数) ValidArgs []string // ValidArgsFunction 是一个可选函数,它为 shell 完成提供有效的非标志参数。 // 它是使用 ValidArgs 的动态版本。只有 ValidArgs 和 ValidArgsFunction 之一可用于命令。 ValidArgsFunction func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) // 判断参数的格式,内置多种验证格式。 Args PositionalArgs // ArgAliases 是 ValidArgs 的别名列表。这些不是在 shell 完成中向用户建议的,但如果手动输入则接受。 ArgAliases []string // BashCompletionFunction 是传统 bash 自动完成生成器使用的自定义 bash 函数。 // 为了与其他 shell 的可移植性,建议改用 ValidArgsFunction BashCompletionFunction string // Deprecated defines, if this command is deprecated and should print this string when used. Deprecated string // Annotations are key/value pairs that can be used by applications to identify or // group commands. Annotations map[string]string // Version defines the version for this command. If this value is non-empty and the command does not // define a "version" flag, a "version" boolean flag will be added to the command and, if specified, // will print content of the "Version" variable. A shorthand "v" flag will also be added if the // command does not define one. Version string // Run 函数按以下顺序执行: // * PersistentPreRun() // * PreRun() // * Run() // * PostRun() // * PersistentPostRun() // 所有函数都获得相同的参数,即命令名称后面的参数。 // // PersistentPreRun: 该命令的子级将继承并执行。 PersistentPreRun func(cmd *Command, args []string) // PersistentPreRunE: 上面的返回错误形式 PersistentPreRunE func(cmd *Command, args []string) error // PreRun: 此命令的子级不会继承。 PreRun func(cmd *Command, args []string) // PreRunE: 上面的返回错误形式 PreRunE func(cmd *Command, args []string) error // Run: 通常是实际的功函数。大多数命令只会实现这一点。 Run func(cmd *Command, args []string) // RunE: 上面返回错误的形式 RunE func(cmd *Command, args []string) error // PostRun: 在 run 命令之后运行。 PostRun func(cmd *Command, args []string) // PostRunE: 上面返回错误的形式。 PostRunE func(cmd *Command, args []string) error // PersistentPostRun: 该命令的子命令将在 PostRun 之后继承并执行。 PersistentPostRun func(cmd *Command, args []string) // PersistentPostRunE: 上面返回错误的形式。 PersistentPostRunE func(cmd *Command, args []string) error ... //FParseErrWhitelist flag parse errors to be ignored FParseErrWhitelist FParseErrWhitelist // CompletionOptions 是一组用于控制 shell 完成处理的选项 (下面给出了对应的结构体) CompletionOptions CompletionOptions ... // TraverseChildren 在执行子命令之前解析所有父项的标志。 TraverseChildren bool // Hidden defines, 如果此命令被隐藏并且不应该出现在可用命令列表中。 Hidden bool ... }
// CompletionOptions are the options to control shell completion type CompletionOptions struct { // DisableDefaultCmd 防止 Cobra 创建默认的“完成”命令 (禁用这么默认的 cmd 命令) DisableDefaultCmd bool // 防止 Cobra 为支持完成描述的 shell 创建“--no-descriptions”标志 DisableNoDescFlag bool // DisableDescriptions 关闭支持它们的 shell 的所有完成描述 DisableDescriptions bool // HiddenDefaultCmd 隐藏默认的“完成”命令 (一般情况下,采用隐藏这个 cmd ) HiddenDefaultCmd bool }
这里大概就看了 Cmd 的大概使用的结构体和字段,在开发的时候对应需要的东西,直接设置对应的值即可。
Short 的描述使用 shell 自动完成提示信息使用。
Long 的描述用于 -h
或 help
打印使用。
生成自动提示命令的功能
具体的操作步骤可以看 生成外壳完成[3]
在这里需要说一句的是:使用命令生成的时候默认是打印在 控制台,需要自己重定义在指定的目录文件中去。
在根据不同的平台终端,配置好这个文件,然后就可以使用 自动提示完成的 功能了。
The above is the detailed content of Cobra command line development. For more information, please follow other related articles on the PHP Chinese website!

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
