2015-04-11 21:45:29 +00:00
|
|
|
package goadb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
"github.com/zach-klippenstein/goadb/util"
|
2015-04-11 21:45:29 +00:00
|
|
|
"github.com/zach-klippenstein/goadb/wire"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
2015-04-12 20:34:20 +00:00
|
|
|
HostClient communicates with host services on the adb server.
|
2015-04-11 21:45:29 +00:00
|
|
|
|
|
|
|
Eg.
|
2015-09-07 23:06:20 +00:00
|
|
|
StartServer()
|
2015-04-12 20:34:20 +00:00
|
|
|
client := NewHostClient()
|
|
|
|
client.ListDevices()
|
2015-04-11 21:45:29 +00:00
|
|
|
|
|
|
|
See list of services at https://android.googlesource.com/platform/system/core/+/master/adb/SERVICES.TXT.
|
|
|
|
*/
|
2015-04-12 20:34:20 +00:00
|
|
|
// TODO(z): Finish implementing host services.
|
2015-04-11 21:45:29 +00:00
|
|
|
type HostClient struct {
|
2015-07-11 21:32:04 +00:00
|
|
|
config ClientConfig
|
2015-04-12 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
2015-07-11 21:32:04 +00:00
|
|
|
func NewHostClient(config ClientConfig) *HostClient {
|
|
|
|
return &HostClient{config.sanitized()}
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetServerVersion asks the ADB server for its internal version number.
|
|
|
|
func (c *HostClient) GetServerVersion() (int, error) {
|
2015-07-11 21:32:04 +00:00
|
|
|
resp, err := roundTripSingleResponse(c.config.Dialer, "host:version")
|
2015-04-11 21:45:29 +00:00
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return 0, wrapClientError(err, c, "GetServerVersion")
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
version, err := c.parseServerVersion(resp)
|
|
|
|
if err != nil {
|
|
|
|
return 0, wrapClientError(err, c, "GetServerVersion")
|
|
|
|
}
|
|
|
|
return version, nil
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
KillServer tells the server to quit immediately.
|
|
|
|
|
|
|
|
Corresponds to the command:
|
|
|
|
adb kill-server
|
|
|
|
*/
|
|
|
|
func (c *HostClient) KillServer() error {
|
2015-07-11 21:32:04 +00:00
|
|
|
conn, err := c.config.Dialer.Dial()
|
2015-04-11 21:45:29 +00:00
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return wrapClientError(err, c, "KillServer")
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
2015-04-12 20:34:20 +00:00
|
|
|
if err = wire.SendMessageString(conn, "host:kill"); err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return wrapClientError(err, c, "KillServer")
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
ListDeviceSerials returns the serial numbers of all attached devices.
|
|
|
|
|
|
|
|
Corresponds to the command:
|
|
|
|
adb devices
|
|
|
|
*/
|
|
|
|
func (c *HostClient) ListDeviceSerials() ([]string, error) {
|
2015-07-11 21:32:04 +00:00
|
|
|
resp, err := roundTripSingleResponse(c.config.Dialer, "host:devices")
|
2015-04-11 21:45:29 +00:00
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, wrapClientError(err, c, "ListDeviceSerials")
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
devices, err := parseDeviceList(string(resp), parseDeviceShort)
|
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, wrapClientError(err, c, "ListDeviceSerials")
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
serials := make([]string, len(devices))
|
|
|
|
for i, dev := range devices {
|
|
|
|
serials[i] = dev.Serial
|
|
|
|
}
|
|
|
|
return serials, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
ListDevices returns the list of connected devices.
|
|
|
|
|
|
|
|
Corresponds to the command:
|
|
|
|
adb devices -l
|
|
|
|
*/
|
2015-04-12 20:34:20 +00:00
|
|
|
func (c *HostClient) ListDevices() ([]*DeviceInfo, error) {
|
2015-07-11 21:32:04 +00:00
|
|
|
resp, err := roundTripSingleResponse(c.config.Dialer, "host:devices-l")
|
2015-04-11 21:45:29 +00:00
|
|
|
if err != nil {
|
2015-07-12 06:18:58 +00:00
|
|
|
return nil, wrapClientError(err, c, "ListDevices")
|
|
|
|
}
|
|
|
|
|
|
|
|
devices, err := parseDeviceList(string(resp), parseDeviceLong)
|
|
|
|
if err != nil {
|
|
|
|
return nil, wrapClientError(err, c, "ListDevices")
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|
2015-07-12 06:18:58 +00:00
|
|
|
return devices, nil
|
|
|
|
}
|
2015-04-11 21:45:29 +00:00
|
|
|
|
2015-07-12 06:18:58 +00:00
|
|
|
func (c *HostClient) parseServerVersion(versionRaw []byte) (int, error) {
|
|
|
|
versionStr := string(versionRaw)
|
|
|
|
version, err := strconv.ParseInt(versionStr, 16, 32)
|
|
|
|
if err != nil {
|
|
|
|
return 0, util.WrapErrorf(err, util.ParseError,
|
|
|
|
"error parsing server version: %s", versionStr)
|
|
|
|
}
|
|
|
|
return int(version), nil
|
2015-04-11 21:45:29 +00:00
|
|
|
}
|