1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
package cli
import (
"sync"
)
// ConcurrentUi is a wrapper around a Ui interface (and implements that
// interface) making the underlying Ui concurrency safe.
type ConcurrentUi struct {
Ui Ui
l sync.Mutex
}
func (u *ConcurrentUi) Ask(query string) (string, error) {
u.l.Lock()
defer u.l.Unlock()
return u.Ui.Ask(query)
}
func (u *ConcurrentUi) AskSecret(query string) (string, error) {
u.l.Lock()
defer u.l.Unlock()
return u.Ui.AskSecret(query)
}
func (u *ConcurrentUi) Error(message string) {
u.l.Lock()
defer u.l.Unlock()
u.Ui.Error(message)
}
func (u *ConcurrentUi) Info(message string) {
u.l.Lock()
defer u.l.Unlock()
u.Ui.Info(message)
}
func (u *ConcurrentUi) Output(message string) {
u.l.Lock()
defer u.l.Unlock()
u.Ui.Output(message)
}
func (u *ConcurrentUi) Warn(message string) {
u.l.Lock()
defer u.l.Unlock()
u.Ui.Warn(message)
}
|