All checks were successful
DCO action / DCO (pull_request) Successful in 3m30s
Build / Build Components (1.21) (pull_request) Successful in 5m53s
Build / Build Components (1.20) (pull_request) Successful in 6m3s
Vulncheck / Vulncheck (pull_request) Successful in 5m26s
Tests and linters / Tests (1.20) (pull_request) Successful in 6m59s
Tests and linters / Staticcheck (pull_request) Successful in 6m57s
Tests and linters / Tests (1.21) (pull_request) Successful in 7m10s
Tests and linters / Lint (pull_request) Successful in 7m33s
Tests and linters / Tests with -race (pull_request) Successful in 8m50s
Typo from 1a0cb0f34a
.
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
package common
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
const (
|
|
flagAddress = "address"
|
|
flagEnginePath = "path"
|
|
flagOutFile = "out"
|
|
flagDBType = "dbtype"
|
|
)
|
|
|
|
// AddAddressFlag adds the address flag to the passed cobra command.
|
|
func AddAddressFlag(cmd *cobra.Command, v *string) {
|
|
cmd.Flags().StringVar(v, flagAddress, "", "Object address")
|
|
_ = cmd.MarkFlagRequired(flagAddress)
|
|
}
|
|
|
|
// AddComponentPathFlag adds the path-to-component flag to the
|
|
// passed cobra command.
|
|
func AddComponentPathFlag(cmd *cobra.Command, v *string) {
|
|
cmd.Flags().StringVar(v, flagEnginePath, "",
|
|
"Path to storage engine component",
|
|
)
|
|
_ = cmd.MarkFlagFilename(flagEnginePath)
|
|
_ = cmd.MarkFlagRequired(flagEnginePath)
|
|
}
|
|
|
|
// AddOutputFileFlag adds the output file flag to the passed cobra
|
|
// command.
|
|
func AddOutputFileFlag(cmd *cobra.Command, v *string) {
|
|
cmd.Flags().StringVar(v, flagOutFile, "",
|
|
"File to save object payload")
|
|
_ = cmd.MarkFlagFilename(flagOutFile)
|
|
}
|
|
|
|
// AddDBTypeFlag adds the DB type flag to the passed cobra command.
|
|
func AddDBTypeFlag(cmd *cobra.Command, v *string) {
|
|
cmd.Flags().StringVar(v, flagDBType, "bbolt",
|
|
"Type of DB used by write cache (default: bbolt)")
|
|
}
|