mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
// The MIT License
|
|
//
|
|
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved.
|
|
//
|
|
// Copyright (c) 2020 Uber Technologies, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
package util
|
|
|
|
import (
|
|
"reflect"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
// MergeDictoRight copies the contents of src to dest
|
|
func MergeDictoRight(src map[string]string, dest map[string]string) {
|
|
for k, v := range src {
|
|
dest[k] = v
|
|
}
|
|
}
|
|
|
|
// MergeDicts creates a union of the two dicts
|
|
func MergeDicts(dic1 map[string]string, dic2 map[string]string) (resultDict map[string]string) {
|
|
resultDict = make(map[string]string)
|
|
MergeDictoRight(dic1, resultDict)
|
|
MergeDictoRight(dic2, resultDict)
|
|
return
|
|
}
|
|
|
|
// AwaitWaitGroup calls Wait on the given wait
|
|
// Returns true if the Wait() call succeeded before the timeout
|
|
// Returns false if the Wait() did not return before the timeout
|
|
func AwaitWaitGroup(wg *sync.WaitGroup, timeout time.Duration) bool {
|
|
|
|
doneC := make(chan struct{})
|
|
|
|
go func() {
|
|
wg.Wait()
|
|
close(doneC)
|
|
}()
|
|
|
|
timer := time.NewTimer(timeout)
|
|
defer func() { timer.Stop() }()
|
|
|
|
select {
|
|
case <-doneC:
|
|
return true
|
|
case <-timer.C:
|
|
return false
|
|
}
|
|
}
|
|
|
|
// IsInterfaceNil check if interface is nil
|
|
func IsInterfaceNil(i interface{}) bool {
|
|
v := reflect.ValueOf(i)
|
|
return i == nil || (v.Kind() == reflect.Ptr && v.IsNil())
|
|
}
|