94 lines
2.1 KiB
Go
Raw Normal View History

package util
2017-12-28 22:16:20 -06:00
// These are misc. utility functions that didn't really fit anywhere else
import "runtime"
import "sync"
import "time"
2018-01-04 22:37:51 +00:00
// A wrapper around runtime.Gosched() so it doesn't need to be imported elsewhere.
func Yield() {
2018-01-04 22:37:51 +00:00
runtime.Gosched()
2017-12-28 22:16:20 -06:00
}
// A wrapper around runtime.LockOSThread() so it doesn't need to be imported elsewhere.
func LockThread() {
2018-01-04 22:37:51 +00:00
runtime.LockOSThread()
2017-12-28 22:16:20 -06:00
}
// A wrapper around runtime.UnlockOSThread() so it doesn't need to be imported elsewhere.
func UnlockThread() {
2018-01-04 22:37:51 +00:00
runtime.UnlockOSThread()
2017-12-28 22:16:20 -06:00
}
// This is used to buffer recently used slices of bytes, to prevent allocations in the hot loops.
var byteStoreMutex sync.Mutex
var byteStore [][]byte
2017-12-28 22:16:20 -06:00
// Gets an empty slice from the byte store.
func GetBytes() []byte {
byteStoreMutex.Lock()
defer byteStoreMutex.Unlock()
if len(byteStore) > 0 {
var bs []byte
bs, byteStore = byteStore[len(byteStore)-1][:0], byteStore[:len(byteStore)-1]
return bs
} else {
2018-01-04 22:37:51 +00:00
return nil
}
2017-12-28 22:16:20 -06:00
}
// Puts a slice in the store.
func PutBytes(bs []byte) {
byteStoreMutex.Lock()
defer byteStoreMutex.Unlock()
byteStore = append(byteStore, bs)
2017-12-28 22:16:20 -06:00
}
// This is a workaround to go's broken timer implementation
func TimerStop(t *time.Timer) bool {
2019-04-26 22:42:05 -05:00
stopped := t.Stop()
select {
case <-t.C:
default:
}
2019-04-26 22:42:05 -05:00
return stopped
}
2019-02-26 21:07:56 -06:00
// Run a blocking function with a timeout.
// Returns true if the function returns.
// Returns false if the timer fires.
// The blocked function remains blocked--the caller is responsible for somehow killing it.
func FuncTimeout(f func(), timeout time.Duration) bool {
success := make(chan struct{})
go func() {
defer close(success)
f()
}()
timer := time.NewTimer(timeout)
defer TimerStop(timer)
select {
case <-success:
return true
case <-timer.C:
return false
}
}
// This calculates the difference between two arrays and returns items
// that appear in A but not in B - useful somewhat when reconfiguring
// and working out what configuration items changed
func Difference(a, b []string) []string {
ab := []string{}
mb := map[string]bool{}
for _, x := range b {
mb[x] = true
}
for _, x := range a {
2019-03-08 10:26:46 +00:00
if !mb[x] {
ab = append(ab, x)
}
}
return ab
}