goadb/util.go

41 lines
791 B
Go
Raw Normal View History

package adb
import (
2015-07-12 06:18:58 +00:00
"fmt"
"reflect"
"regexp"
2015-07-12 06:18:58 +00:00
"strings"
"github.com/zach-klippenstein/goadb/internal/errors"
)
var (
whitespaceRegex = regexp.MustCompile(`^\s*$`)
)
func containsWhitespace(str string) bool {
return strings.ContainsAny(str, " \t\v")
}
func isBlank(str string) bool {
return whitespaceRegex.MatchString(str)
}
2015-07-12 06:18:58 +00:00
func wrapClientError(err error, client interface{}, operation string, args ...interface{}) error {
if err == nil {
return nil
}
if _, ok := err.(*errors.Err); !ok {
panic("err is not a *Err: " + err.Error())
2015-07-12 06:18:58 +00:00
}
clientType := reflect.TypeOf(client)
return &errors.Err{
Code: err.(*errors.Err).Code,
2015-07-12 06:18:58 +00:00
Cause: err,
Message: fmt.Sprintf("error performing %s on %s", fmt.Sprintf(operation, args...), clientType),
Details: client,
}
}