Documentation ¶
Index ¶
- Variables
- func Checksum(file string) (string, error)
- func CopyFile(src, dst string) error
- func CreateDir(path string) error
- func CurrentUser() string
- func IsTimeoutOrMaxRetry(err error) bool
- func JoinInt(nums []int, delim string) string
- func Move(src, dst string) error
- func ParseTopologyYaml(file string, out interface{}) error
- func Retry(doFunc func() error, opts ...RetryOption) error
- func UserHome() string
- func ValidateClusterNameOrError(n string) error
- type HTTPClient
- type RetryOption
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrTopologyReadFailed is ErrTopologyReadFailed ErrTopologyReadFailed = errNSTopolohy.NewType("read_failed", errutil.ErrTraitPreCheck) // ErrTopologyParseFailed is ErrTopologyParseFailed ErrTopologyParseFailed = errNSTopolohy.NewType("parse_failed", errutil.ErrTraitPreCheck) )
View Source
var ( // ErrInvalidClusterName is an error for invalid cluster name. You should use `ValidateClusterNameOrError()` // to generate this error. ErrInvalidClusterName = errorx.CommonErrors.NewType("invalid_cluster_name", errutil.ErrTraitPreCheck) )
Functions ¶
func IsTimeoutOrMaxRetry ¶ added in v0.5.0
IsTimeoutOrMaxRetry return true if it's timeout or reach max retry.
func ParseTopologyYaml ¶
ParseTopologyYaml read yaml content from `file` and unmarshal it to `out`
func Retry ¶
func Retry(doFunc func() error, opts ...RetryOption) error
Retry retries the func until it returns no error or reaches attempts limit or timed out, either one is earlier
func UserHome ¶ added in v0.6.0
func UserHome() string
UserHome returns home directory of current user
func ValidateClusterNameOrError ¶
ValidateClusterNameOrError validates a cluster name and returns error if the name is invalid.
Types ¶
type HTTPClient ¶
type HTTPClient struct {
// contains filtered or unexported fields
}
HTTPClient is a wrap of http.Client
func NewHTTPClient ¶
func NewHTTPClient(timeout time.Duration, tlsConfig *tls.Config) *HTTPClient
NewHTTPClient returns a new HTTP client with timeout and HTTPS support
func (*HTTPClient) Delete ¶
Delete send a DELETE request to the url and returns the response and status code.
Source Files ¶
Click to show internal directories.
Click to hide internal directories.