Documentation
¶
Overview ¶
The model package holds the data model that is common to multiple packages in the project. For example, CliArgs is used in both main and servodserver packages.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CliArgs ¶
type CliArgs struct { // Common input params. // Local log file path. LogPath string // The path (URI) for the servod (containerized or running as a daemon) host. // It can be in IP:PORT format or an absolute path. // For local testing, you can do port forwarding as follows: // ssh -L 9876:localhost:22 root@SERVO_HOST_IP // Then, you can use localhost:9876 as ServoHostPath value. // If cros-servod and docker-servod live on the same host, this parameter // should be empty. ServoHostPath string // The servod Docker container name. ServodDockerContainerName string // The servod Docker image path to pull from GCR. // Example: gcr.io/chromeos-bot/servod@sha256:2d25f6313c7bbac349607 ServodDockerImagePath string // The --PORT parameter value for servod command. ServodPort int32 // The --BOARD parameter value for servod command. Board string // The --MODEL parameter value for servod command. Model string // The --SERIALNAME parameter value for servod command. SerialName string // The --DEBUG parameter value for servod command. Debug string // The --RECOVERY_MODE parameter value for servod command. RecoveryMode string // The --CONFIG parameter value for servod command. Config string // The --ALLOW-DUAL-V4 parameter value for servod command. AllowDualV4 string // The command to execute inside the servod Docker container. Command string // The method to call. Accepted values are doc, get, and set. Method string // The arguments to pass to the method. For the doc and get methods, // there will be a single argument which is the control name // (e.g. cli --method get --args lid_open). For the set method, it will // be the control name and the value separated with a colon and wrapped // inside a quote (e.g. cli --method set --args "lid_open:yes"). If the // control value for the set operation includes non-alphanumeric characters // such as space, it should be wrapped with a single quote (e.g. // cli --method set --args "servo_v4_uart_cmd:'fakedisconnect 100 2000'"). Args string // The port for the servod GRPC server. ServerPort int32 }
CliArgs is a data structure that holds the CLI arguments passed.
type CliSubcommand ¶
type CliSubcommand string
Subcommand for cli.
const ( // This is used when the command value passed in not known by the app. CliUnknown CliSubcommand = "" // CLI subcommand to start servod. CliStartServod CliSubcommand = "start_servod" // CLI subcommand to stop servod. CliStopServod CliSubcommand = "stop_servod" // CLI subcommand to execute a servod command. CliExecCmd CliSubcommand = "exec_cmd" // CLI subcommand to call servod (DOC, GET, and SET). CliCallServod CliSubcommand = "call_servod" )
Click to show internal directories.
Click to hide internal directories.