mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
21c8a33647
* Commit of new etcd snapshot integration tests. * Updated integration github action to not run on doc changes. * Update Drone runner to only run unit tests Signed-off-by: dereknola <derek.nola@suse.com>
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
// Copyright (c) 2019 FOSS contributors of https://github.com/nxadm/tail
|
|
package watch
|
|
|
|
type FileChanges struct {
|
|
Modified chan bool // Channel to get notified of modifications
|
|
Truncated chan bool // Channel to get notified of truncations
|
|
Deleted chan bool // Channel to get notified of deletions/renames
|
|
}
|
|
|
|
func NewFileChanges() *FileChanges {
|
|
return &FileChanges{
|
|
make(chan bool, 1), make(chan bool, 1), make(chan bool, 1)}
|
|
}
|
|
|
|
func (fc *FileChanges) NotifyModified() {
|
|
sendOnlyIfEmpty(fc.Modified)
|
|
}
|
|
|
|
func (fc *FileChanges) NotifyTruncated() {
|
|
sendOnlyIfEmpty(fc.Truncated)
|
|
}
|
|
|
|
func (fc *FileChanges) NotifyDeleted() {
|
|
sendOnlyIfEmpty(fc.Deleted)
|
|
}
|
|
|
|
// sendOnlyIfEmpty sends on a bool channel only if the channel has no
|
|
// backlog to be read by other goroutines. This concurrency pattern
|
|
// can be used to notify other goroutines if and only if they are
|
|
// looking for it (i.e., subsequent notifications can be compressed
|
|
// into one).
|
|
func sendOnlyIfEmpty(ch chan bool) {
|
|
select {
|
|
case ch <- true:
|
|
default:
|
|
}
|
|
}
|