2015-04-12 20:34:20 +00:00
|
|
|
package goadb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"strings"
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
"github.com/zach-klippenstein/goadb/util"
|
2015-04-12 20:34:20 +00:00
|
|
|
"github.com/zach-klippenstein/goadb/wire"
|
|
|
|
)
|
|
|
|
|
2015-04-24 13:20:47 +00:00
|
|
|
// DeviceClient communicates with a specific Android device.
|
2015-04-12 20:34:20 +00:00
|
|
|
type DeviceClient struct {
|
2015-07-11 21:32:04 +00:00
|
|
|
config ClientConfig
|
|
|
|
descriptor DeviceDescriptor
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewDeviceClient(config ClientConfig, descriptor DeviceDescriptor) *DeviceClient {
|
|
|
|
return &DeviceClient{
|
|
|
|
config: config.sanitized(),
|
|
|
|
descriptor: descriptor,
|
|
|
|
}
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) String() string {
|
|
|
|
return c.descriptor.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// get-product is documented, but not implemented in the server.
|
|
|
|
// TODO(z): Make getProduct exported if get-product is ever implemented in adb.
|
|
|
|
func (c *DeviceClient) getProduct() (string, error) {
|
2015-07-12 06:18:58 +00:00
|
|
|
attr, err := c.getAttribute("get-product")
|
|
|
|
return attr, wrapClientError(err, c, "GetProduct")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) GetSerial() (string, error) {
|
2015-07-12 06:18:58 +00:00
|
|
|
attr, err := c.getAttribute("get-serialno")
|
|
|
|
return attr, wrapClientError(err, c, "GetSerial")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) GetDevicePath() (string, error) {
|
2015-07-12 06:18:58 +00:00
|
|
|
attr, err := c.getAttribute("get-devpath")
|
|
|
|
return attr, wrapClientError(err, c, "GetDevicePath")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) GetState() (string, error) {
|
2015-07-12 06:18:58 +00:00
|
|
|
attr, err := c.getAttribute("get-state")
|
|
|
|
return attr, wrapClientError(err, c, "GetState")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
RunCommand runs the specified commands on a shell on the device.
|
|
|
|
|
|
|
|
From the Android docs:
|
|
|
|
Run 'command arg1 arg2 ...' in a shell on the device, and return
|
|
|
|
its output and error streams. Note that arguments must be separated
|
|
|
|
by spaces. If an argument contains a space, it must be quoted with
|
|
|
|
double-quotes. Arguments cannot contain double quotes or things
|
|
|
|
will go very wrong.
|
|
|
|
|
|
|
|
Note that this is the non-interactive version of "adb shell"
|
|
|
|
Source: https://android.googlesource.com/platform/system/core/+/master/adb/SERVICES.TXT
|
|
|
|
|
|
|
|
This method quotes the arguments for you, and will return an error if any of them
|
|
|
|
contain double quotes.
|
|
|
|
*/
|
|
|
|
func (c *DeviceClient) RunCommand(cmd string, args ...string) (string, error) {
|
|
|
|
cmd, err := prepareCommandLine(cmd, args...)
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", wrapClientError(err, c, "RunCommand")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
conn, err := c.dialDevice()
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", wrapClientError(err, c, "RunCommand")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
req := fmt.Sprintf("shell:%s", cmd)
|
|
|
|
|
|
|
|
// Shell responses are special, they don't include a length header.
|
|
|
|
// We read until the stream is closed.
|
|
|
|
// So, we can't use conn.RoundTripSingleResponse.
|
|
|
|
if err = conn.SendMessage([]byte(req)); err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", wrapClientError(err, c, "RunCommand")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
2015-04-29 17:23:51 +00:00
|
|
|
if err = wire.ReadStatusFailureAsError(conn, req); err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", wrapClientError(err, c, "RunCommand")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := conn.ReadUntilEof()
|
2015-07-12 06:18:58 +00:00
|
|
|
return string(resp), wrapClientError(err, c, "RunCommand")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Remount, from the docs,
|
|
|
|
Ask adbd to remount the device's filesystem in read-write mode,
|
|
|
|
instead of read-only. This is usually necessary before performing
|
|
|
|
an "adb sync" or "adb push" request.
|
|
|
|
This request may not succeed on certain builds which do not allow
|
|
|
|
that.
|
|
|
|
Source: https://android.googlesource.com/platform/system/core/+/master/adb/SERVICES.TXT
|
|
|
|
*/
|
|
|
|
func (c *DeviceClient) Remount() (string, error) {
|
|
|
|
conn, err := c.dialDevice()
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", wrapClientError(err, c, "Remount")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
resp, err := conn.RoundTripSingleResponse([]byte("remount"))
|
2015-07-12 06:18:58 +00:00
|
|
|
return string(resp), wrapClientError(err, c, "Remount")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) ListDirEntries(path string) (*DirEntries, error) {
|
|
|
|
conn, err := c.getSyncConn()
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, wrapClientError(err, c, "ListDirEntries(%s)", path)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
entries, err := listDirEntries(conn, path)
|
|
|
|
return entries, wrapClientError(err, c, "ListDirEntries(%s)", path)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) Stat(path string) (*DirEntry, error) {
|
|
|
|
conn, err := c.getSyncConn()
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, wrapClientError(err, c, "Stat(%s)", path)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
entry, err := stat(conn, path)
|
|
|
|
return entry, wrapClientError(err, c, "Stat(%s)", path)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DeviceClient) OpenRead(path string) (io.ReadCloser, error) {
|
|
|
|
conn, err := c.getSyncConn()
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, wrapClientError(err, c, "OpenRead(%s)", path)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
reader, err := receiveFile(conn, path)
|
|
|
|
return reader, wrapClientError(err, c, "OpenRead(%s)", path)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getAttribute returns the first message returned by the server by running
|
|
|
|
// <host-prefix>:<attr>, where host-prefix is determined from the DeviceDescriptor.
|
|
|
|
func (c *DeviceClient) getAttribute(attr string) (string, error) {
|
2015-07-11 21:32:04 +00:00
|
|
|
resp, err := roundTripSingleResponse(c.config.Dialer,
|
2015-04-12 20:34:20 +00:00
|
|
|
fmt.Sprintf("%s:%s", c.descriptor.getHostPrefix(), attr))
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return string(resp), nil
|
|
|
|
}
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
func (c *DeviceClient) getSyncConn() (*wire.SyncConn, error) {
|
|
|
|
conn, err := c.dialDevice()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch the connection to sync mode.
|
|
|
|
if err := wire.SendMessageString(conn, "sync:"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := wire.ReadStatusFailureAsError(conn, "sync"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return conn.NewSyncConn(), nil
|
|
|
|
}
|
|
|
|
|
2015-04-12 20:34:20 +00:00
|
|
|
// dialDevice switches the connection to communicate directly with the device
|
|
|
|
// by requesting the transport defined by the DeviceDescriptor.
|
|
|
|
func (c *DeviceClient) dialDevice() (*wire.Conn, error) {
|
2015-07-11 21:32:04 +00:00
|
|
|
conn, err := c.config.Dialer.Dial()
|
2015-04-12 20:34:20 +00:00
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, err
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
req := fmt.Sprintf("host:%s", c.descriptor.getTransportDescriptor())
|
|
|
|
if err = wire.SendMessageString(conn, req); err != nil {
|
|
|
|
conn.Close()
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, util.WrapErrf(err, "error connecting to device '%s'", c.descriptor)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 17:23:51 +00:00
|
|
|
if err = wire.ReadStatusFailureAsError(conn, req); err != nil {
|
2015-04-12 20:34:20 +00:00
|
|
|
conn.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepareCommandLine validates the command and argument strings, quotes
|
|
|
|
// arguments if required, and joins them into a valid adb command string.
|
|
|
|
func prepareCommandLine(cmd string, args ...string) (string, error) {
|
|
|
|
if isBlank(cmd) {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", util.AssertionErrorf("command cannot be empty")
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, arg := range args {
|
|
|
|
if strings.ContainsRune(arg, '"') {
|
2015-07-12 06:18:58 +00:00
|
|
|
return "", util.Errorf(util.ParseError, "arg at index %d contains an invalid double quote: %s", i, arg)
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
if containsWhitespace(arg) {
|
|
|
|
args[i] = fmt.Sprintf("\"%s\"", arg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-11 21:32:04 +00:00
|
|
|
// Prepend the command to the args array.
|
2015-04-12 20:34:20 +00:00
|
|
|
if len(args) > 0 {
|
|
|
|
cmd = fmt.Sprintf("%s %s", cmd, strings.Join(args, " "))
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd, nil
|
|
|
|
}
|