goadb/cmd/adb/main.go

213 lines
5.7 KiB
Go
Raw Normal View History

package main
import (
"fmt"
2015-12-28 07:39:28 +00:00
"io"
"os"
2015-12-28 07:39:28 +00:00
"path/filepath"
"time"
2015-12-28 07:39:28 +00:00
"github.com/cheggaaa/pb"
"github.com/zach-klippenstein/goadb"
2015-12-28 07:39:28 +00:00
"github.com/zach-klippenstein/goadb/util"
"gopkg.in/alecthomas/kingpin.v2"
)
var (
2015-12-28 07:39:28 +00:00
serial = kingpin.Flag("serial", "Connect to device by serial number.").Short('s').String()
shellCommand = kingpin.Command("shell", "Run a shell command on the device.")
shellCommandArg = shellCommand.Arg("command", "Command to run on device.").Strings()
2015-12-28 07:39:28 +00:00
devicesCommand = kingpin.Command("devices", "List devices.")
devicesLongFlag = devicesCommand.Flag("long", "Include extra detail about devices.").Short('l').Bool()
2015-12-28 07:39:28 +00:00
pullCommand = kingpin.Command("pull", "Pull a file from the device.")
pullProgressFlag = pullCommand.Flag("progress", "Show progress.").Short('p').Bool()
pullRemoteArg = pullCommand.Arg("remote", "Path of source file on device.").Required().String()
pullLocalArg = pullCommand.Arg("local", "Path of destination file.").String()
pushCommand = kingpin.Command("push", "Push a file to the device.")
2015-12-28 07:39:28 +00:00
pushProgressFlag = pushCommand.Flag("progress", "Show progress.").Short('p').Bool()
pushLocalArg = pushCommand.Arg("local", "Path of source file.").Required().File()
2015-12-28 07:39:28 +00:00
pushRemoteArg = pushCommand.Arg("remote", "Path of destination file on device.").Required().String()
)
func main() {
var exitCode int
switch kingpin.Parse() {
case "devices":
exitCode = listDevices(*devicesLongFlag)
case "shell":
exitCode = runShellCommand(*shellCommandArg, parseDevice())
2015-12-28 07:39:28 +00:00
case "pull":
exitCode = pull(*pullProgressFlag, *pullRemoteArg, *pullLocalArg, parseDevice())
case "push":
exitCode = push(*pushProgressFlag, *pushLocalArg, *pushRemoteArg, parseDevice())
}
os.Exit(exitCode)
}
func parseDevice() goadb.DeviceDescriptor {
if *serial != "" {
return goadb.DeviceWithSerial(*serial)
}
return goadb.AnyDevice()
}
func listDevices(long bool) int {
client := goadb.NewHostClient(goadb.ClientConfig{})
devices, err := client.ListDevices()
if err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
}
for _, device := range devices {
if long {
if device.Usb == "" {
fmt.Printf("%s\tproduct:%s model:%s device:%s\n",
device.Serial, device.Product, device.Model, device.DeviceInfo)
} else {
fmt.Printf("%s\tusb:%s product:%s model:%s device:%s\n",
device.Serial, device.Usb, device.Product, device.Model, device.DeviceInfo)
}
} else {
fmt.Println(device.Serial)
}
}
return 0
}
func runShellCommand(commandAndArgs []string, device goadb.DeviceDescriptor) int {
if len(commandAndArgs) == 0 {
fmt.Fprintln(os.Stderr, "error: no command")
kingpin.Usage()
return 1
}
command := commandAndArgs[0]
var args []string
if len(commandAndArgs) > 1 {
args = commandAndArgs[1:]
}
client := goadb.NewDeviceClient(goadb.ClientConfig{}, device)
output, err := client.RunCommand(command, args...)
if err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
return 1
}
fmt.Print(output)
return 0
}
2015-12-28 07:39:28 +00:00
func pull(showProgress bool, remotePath, localPath string, device goadb.DeviceDescriptor) int {
if remotePath == "" {
fmt.Fprintln(os.Stderr, "error: must specify remote file")
kingpin.Usage()
return 1
}
if localPath == "" {
localPath = filepath.Base(remotePath)
}
client := goadb.NewDeviceClient(goadb.ClientConfig{}, device)
info, err := client.Stat(remotePath)
if util.HasErrCode(err, util.FileNoExistError) {
fmt.Fprintln(os.Stderr, "remote file does not exist:", remotePath)
return 1
} else if err != nil {
fmt.Fprintf(os.Stderr, "error reading remote file %s: %s\n", remotePath, err)
return 1
}
remoteFile, err := client.OpenRead(remotePath)
if err != nil {
fmt.Fprintf(os.Stderr, "error opening remote file %s: %s\n", remotePath, util.ErrorWithCauseChain(err))
2015-12-28 07:39:28 +00:00
return 1
}
defer remoteFile.Close()
localFile, err := os.Create(localPath)
if err != nil {
fmt.Fprintf(os.Stderr, "error opening local file %s: %s\n", localPath, err)
return 1
}
defer localFile.Close()
if err := copyWithProgressAndStats(localFile, remoteFile, int(info.Size), showProgress); err != nil {
fmt.Fprintln(os.Stderr, "error pulling file:", err)
return 1
}
return 0
}
func push(showProgress bool, localFile *os.File, remotePath string, device goadb.DeviceDescriptor) int {
if remotePath == "" {
fmt.Fprintln(os.Stderr, "error: must specify remote file")
kingpin.Usage()
return 1
}
client := goadb.NewDeviceClient(goadb.ClientConfig{}, device)
info, err := os.Stat(localFile.Name())
if err != nil {
fmt.Fprintf(os.Stderr, "error reading local file %s: %s\n", localFile.Name(), err)
return 1
}
writer, err := client.OpenWrite(remotePath, info.Mode(), info.ModTime())
if err != nil {
fmt.Fprintf(os.Stderr, "error opening remote file %s: %s\n", remotePath, err)
return 1
}
defer writer.Close()
if err := copyWithProgressAndStats(writer, localFile, int(info.Size()), showProgress); err != nil {
fmt.Fprintln(os.Stderr, "error pushing file:", err)
return 1
}
return 0
}
func copyWithProgressAndStats(dst io.Writer, src io.Reader, size int, showProgress bool) error {
var progress *pb.ProgressBar
2015-12-28 07:39:28 +00:00
if showProgress {
progress = pb.New(size)
progress.SetUnits(pb.U_BYTES)
progress.SetRefreshRate(100 * time.Millisecond)
progress.ShowSpeed = true
progress.ShowPercent = true
progress.ShowTimeLeft = true
progress.Start()
dst = io.MultiWriter(dst, progress)
2015-12-28 07:39:28 +00:00
}
startTime := time.Now()
copied, err := io.Copy(dst, src)
2015-12-28 07:39:28 +00:00
if progress != nil {
// Force progress update if the transfer was really fast.
progress.Update()
}
2015-12-28 07:39:28 +00:00
if err != nil {
return err
2015-12-28 07:39:28 +00:00
}
duration := time.Now().Sub(startTime)
rate := int64(float64(copied) / duration.Seconds())
fmt.Printf("%d B/s (%d bytes in %s)\n", rate, copied, duration)
return nil
2015-12-28 07:39:28 +00:00
}