utils

package
v0.89.3 Latest Latest
Warning

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

Go to latest
Published: Jan 27, 2021 License: MIT Imports: 22 Imported by: 135

Documentation

Index

Constants

This section is empty.

Variables

View Source
var InContainer = FileExists("/.dockerenv") || FileExists("/.containerenv")

InContainer will be true if is inside container environment, such as docker

Functions

func All added in v0.52.0

func All(actions ...func()) func()

All run all actions concurrently, returns the wait function for all actions.

func CropImage added in v0.88.5

func CropImage(bin []byte, quality, x, y, width, height int) ([]byte, error)

CropImage by the specified box, quality is only for jpeg bin.

func DefaultBackoff added in v0.52.0

func DefaultBackoff(interval time.Duration) time.Duration

DefaultBackoff algorithm: A(n) = A(n-1) * random[1.9, 2.1)

func Dump added in v0.54.0

func Dump(list ...interface{}) string

Dump values for debugging

func E

func E(args ...interface{}) []interface{}

E if the last arg is error, panic it

func EscapeGoString added in v0.62.0

func EscapeGoString(s string) string

EscapeGoString not using encoding like base64 or gzip because of they will make git diff every large for small change

func Exec added in v0.52.0

func Exec(name string, args ...string)

Exec command

func FileExists added in v0.52.0

func FileExists(path string) bool

FileExists checks if file exists, only for file, not for dir

func Mkdir added in v0.52.0

func Mkdir(path string) error

Mkdir makes dir recursively

func MustToJSON added in v0.52.0

func MustToJSON(data interface{}) string

MustToJSON encode data to json string

func MustToJSONBytes added in v0.52.0

func MustToJSONBytes(data interface{}) []byte

MustToJSONBytes encode data to json bytes

func OutputFile added in v0.52.0

func OutputFile(p string, data interface{}) error

OutputFile auto creates file if not exists, it will try to detect the data type and auto output binary, string or json

func Pause added in v0.52.0

func Pause()

Pause the goroutine forever

func RandString added in v0.52.0

func RandString(len int) string

RandString generate random string with specified string length

func ReadString added in v0.52.0

func ReadString(p string) (string, error)

ReadString reads file as string

func Retry added in v0.52.0

func Retry(ctx context.Context, s Sleeper, fn func() (stop bool, err error)) error

Retry fn and sleeper until fn returns true or s returns error

func S added in v0.52.0

func S(tpl string, params ...interface{}) string

S Template render, the params is key-value pairs

func SetCmdStdPipe added in v0.54.0

func SetCmdStdPipe(cmd *exec.Cmd)

SetCmdStdPipe command

func Sleep added in v0.52.0

func Sleep(seconds float64)

Sleep the goroutine for specified seconds, such as 2.3 seconds

Types

type IdleCounter added in v0.69.0

type IdleCounter struct {
	// contains filtered or unexported fields
}

IdleCounter is similar to sync.WaitGroup but it only resolves if no jobs for specified duration.

func NewIdleCounter added in v0.69.0

func NewIdleCounter(d time.Duration) *IdleCounter

NewIdleCounter ...

func (*IdleCounter) Add added in v0.69.0

func (de *IdleCounter) Add()

Add ...

func (*IdleCounter) Done added in v0.69.0

func (de *IdleCounter) Done()

Done ...

func (*IdleCounter) Wait added in v0.69.0

func (de *IdleCounter) Wait(ctx context.Context)

Wait ...

type Log added in v0.70.0

type Log func(msg ...interface{})

Log type for Println

func MultiLogger added in v0.74.0

func MultiLogger(list ...Logger) Log

MultiLogger is similar to https://golang.org/pkg/io/#MultiWriter

func (Log) Println added in v0.70.0

func (l Log) Println(msg ...interface{})

Println interface

type Logger added in v0.70.0

type Logger interface {
	// Same as fmt.Printf
	Println(...interface{})
}

Logger interface

var LoggerQuiet Logger = loggerQuiet{}

LoggerQuiet does nothing

type Sleeper added in v0.52.0

type Sleeper func(context.Context) error

Sleeper sleeps the current gouroutine for sometime, returns the reason to wake, if ctx is done release resource

func BackoffSleeper added in v0.52.0

func BackoffSleeper(init, maxInterval time.Duration, algorithm func(time.Duration) time.Duration) Sleeper

BackoffSleeper returns a sleeper that sleeps in a backoff manner every time get called. If algorithm is nil, DefaultBackoff will be used. Set interval and maxInterval to the same value to make it a constant sleeper. If maxInterval is not greater than 0, the sleeper will wake immediately.

func CountSleeper added in v0.52.0

func CountSleeper(max int) Sleeper

CountSleeper wake immediately. When counts to the max returns errors.New("max sleep count")

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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