tea

package
v0.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 24, 2020 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AllowRetry

func AllowRetry(retry interface{}, retryTimes int) bool

func Bool

func Bool(a bool) *bool

func BoolSlice

func BoolSlice(a []bool) []*bool

func BoolSliceValue

func BoolSliceValue(a []*bool) []bool

func BoolValue

func BoolValue(a *bool) bool

func Convert

func Convert(in interface{}, out interface{}) error

Convert is use convert map[string]interface object to struct

func Float32

func Float32(a float32) *float32

func Float32Slice

func Float32Slice(a []float32) []*float32

func Float32Value

func Float32Value(a *float32) float32

func Float32ValueSlice

func Float32ValueSlice(a []*float32) []float32

func Float64

func Float64(a float64) *float64

func Float64Slice

func Float64Slice(a []float64) []*float64

func Float64Value

func Float64Value(a *float64) float64

func Float64ValueSlice

func Float64ValueSlice(a []*float64) []float64

func GetBackoffTime

func GetBackoffTime(backoff interface{}, retrytimes int) int

func Int

func Int(a int) *int

func Int8

func Int8(a int8) *int8

func Int8Slice

func Int8Slice(a []int8) []*int8

func Int8Value

func Int8Value(a *int8) int8

func Int8ValueSlice

func Int8ValueSlice(a []*int8) []int8

func Int16

func Int16(a int16) *int16

func Int16Slice

func Int16Slice(a []int16) []*int16

func Int16Value

func Int16Value(a *int16) int16

func Int16ValueSlice

func Int16ValueSlice(a []*int16) []int16

func Int32

func Int32(a int32) *int32

func Int32Slice

func Int32Slice(a []int32) []*int32

func Int32Value

func Int32Value(a *int32) int32

func Int32ValueSlice

func Int32ValueSlice(a []*int32) []int32

func Int64

func Int64(a int64) *int64

func Int64Slice

func Int64Slice(a []int64) []*int64

func Int64Value

func Int64Value(a *int64) int64

func Int64ValueSlice

func Int64ValueSlice(a []*int64) []int64

func IntSlice

func IntSlice(a []int) []*int

func IntValue

func IntValue(a *int) int

func IntValueSlice

func IntValueSlice(a []*int) []int

func Merge

func Merge(args ...interface{}) map[string]string

func NewCastError

func NewCastError(message string) (err error)

NewCastError is used for cast type fails

func Prettify added in v0.0.2

func Prettify(i interface{}) string

func Retryable

func Retryable(err error) bool

func Sleep

func Sleep(backoffTime int)

func String

func String(a string) *string

func StringSlice

func StringSlice(a []string) []*string

func StringSliceValue

func StringSliceValue(a []*string) []string

func StringValue

func StringValue(a *string) string

func ToMap

func ToMap(args ...interface{}) map[string]interface{}

func ToObject

func ToObject(obj interface{}) map[string]interface{}

func ToReader

func ToReader(obj interface{}) io.Reader

func ToString

func ToString(val interface{}) string

func TransInterfaceToBool

func TransInterfaceToBool(val interface{}) bool

func TransInterfaceToInt

func TransInterfaceToInt(val interface{}) int

func TransInterfaceToString

func TransInterfaceToString(val interface{}) string

func TransToString

func TransToString(object interface{}) string

func Uint

func Uint(a uint) *uint

func Uint8

func Uint8(a uint8) *uint8

func Uint8Slice

func Uint8Slice(a []uint8) []*uint8

func Uint8Value

func Uint8Value(a *uint8) uint8

func Uint8ValueSlice

func Uint8ValueSlice(a []*uint8) []uint8

func Uint16

func Uint16(a uint16) *uint16

func Uint16Slice

func Uint16Slice(a []uint16) []*uint16

func Uint16Value

func Uint16Value(a *uint16) uint16

func Uint16ValueSlice

func Uint16ValueSlice(a []*uint16) []uint16

func Uint32

func Uint32(a uint32) *uint32

func Uint32Slice

func Uint32Slice(a []uint32) []*uint32

func Uint32Value

func Uint32Value(a *uint32) uint32

func Uint32ValueSlice

func Uint32ValueSlice(a []*uint32) []uint32

func Uint64

func Uint64(a uint64) *uint64

func Uint64Slice

func Uint64Slice(a []uint64) []*uint64

func Uint64Value

func Uint64Value(a *uint64) uint64

func Uint64ValueSlice

func Uint64ValueSlice(a []*uint64) []uint64

func UintSlice

func UintSlice(a []uint) []*uint

func UintValue

func UintValue(a *uint) uint

func UintValueSlice

func UintValueSlice(a []*uint) []uint

func Validate

func Validate(params interface{}) error

Types

type CastError

type CastError struct {
	Message string
}

CastError is used for cast type fails

func (*CastError) Error

func (err *CastError) Error() string

Return message of CastError

type Request

type Request struct {
	Protocol string
	Port     int
	Method   string
	Pathname string
	Domain   string
	Headers  map[string]string
	Query    map[string]string
	Body     io.Reader
}

Request is used wrap http request

func NewRequest

func NewRequest() (req *Request)

NewRequest is used shortly create Request

type Response

type Response struct {
	Body          io.ReadCloser
	StatusCode    int
	StatusMessage string
	Headers       map[string]string
}

Response is use d wrap http response

func DoRequest

func DoRequest(request *Request, requestRuntime map[string]interface{}) (response *Response, err error)

DoRequest is used send request to server

func NewResponse

func NewResponse(httpResponse *http.Response) (res *Response)

NewResponse is create response with http response

func (*Response) ReadBody

func (response *Response) ReadBody() (body []byte, err error)

ReadBody is used read response body

type RuntimeObject

type RuntimeObject struct {
	IgnoreSSL      bool                   `json:"ignoreSSL" xml:"ignoreSSL"`
	ReadTimeout    int                    `json:"readTimeout" xml:"readTimeout"`
	ConnectTimeout int                    `json:"connectTimeout" xml:"connectTimeout"`
	LocalAddr      string                 `json:"localAddr" xml:"localAddr"`
	HttpProxy      string                 `json:"httpProxy" xml:"httpProxy"`
	HttpsProxy     string                 `json:"httpsProxy" xml:"httpsProxy"`
	NoProxy        string                 `json:"noProxy" xml:"noProxy"`
	MaxIdleConns   int                    `json:"maxIdleConns" xml:"maxIdleConns"`
	Socks5Proxy    string                 `json:"socks5Proxy" xml:"socks5Proxy"`
	Socks5NetWork  string                 `json:"socks5NetWork" xml:"socks5NetWork"`
	Listener       utils.ProgressListener `json:"listener" xml:"listener"`
	Tracker        *utils.ReaderTracker   `json:"tracker" xml:"tracker"`
	Logger         *utils.Logger          `json:"logger" xml:"logger"`
}

RuntimeObject is used for converting http configuration

func NewRuntimeObject

func NewRuntimeObject(runtime map[string]interface{}) *RuntimeObject

NewRuntimeObject is used for shortly create runtime object

type SDKError

type SDKError struct {
	Code    string
	Message string
	Data    string
}

SDKError struct is used save error code and message

func NewSDKError

func NewSDKError(obj map[string]interface{}) *SDKError

NewSDKError is used for shortly create SDKError object

func (*SDKError) Error

func (err *SDKError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL