forked from TrueCloudLab/frostfs-node
Evgenii Stratonikov
dc3bc08c07
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)")
|
|
}
|