mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-21 16:28:36 +00:00
* chore: Upgrade Go module to v2 Signed-off-by: jannfis <jann@mistrust.net> * Restore import order Signed-off-by: jannfis <jann@mistrust.net> * fix knowntypes_normalizer codegen error Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> * fix codegen Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> * fix Procfile Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> Co-authored-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
87 lines
2.4 KiB
Go
87 lines
2.4 KiB
Go
package application
|
|
|
|
import (
|
|
"sync"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"k8s.io/apimachinery/pkg/watch"
|
|
|
|
appv1 "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1"
|
|
)
|
|
|
|
type subscriber struct {
|
|
ch chan *appv1.ApplicationWatchEvent
|
|
filters []func(*appv1.ApplicationWatchEvent) bool
|
|
}
|
|
|
|
func (s *subscriber) matches(event *appv1.ApplicationWatchEvent) bool {
|
|
for i := range s.filters {
|
|
if !s.filters[i](event) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
type broadcasterHandler struct {
|
|
lock sync.Mutex
|
|
subscribers []*subscriber
|
|
}
|
|
|
|
func (b *broadcasterHandler) notify(event *appv1.ApplicationWatchEvent) {
|
|
// Make a local copy of b.subscribers, then send channel events outside the lock,
|
|
// to avoid data race on b.subscribers changes
|
|
subscribers := []*subscriber{}
|
|
b.lock.Lock()
|
|
subscribers = append(subscribers, b.subscribers...)
|
|
b.lock.Unlock()
|
|
|
|
for _, s := range subscribers {
|
|
if s.matches(event) {
|
|
select {
|
|
case s.ch <- event:
|
|
default:
|
|
// drop event if cannot send right away
|
|
log.WithField("application", event.Application.Name).Warn("unable to send event notification")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Subscribe forward application informer watch events to the provided channel.
|
|
// The watch events are dropped if no receives are reading events from the channel so the channel must have
|
|
// buffer if dropping events is not acceptable.
|
|
func (b *broadcasterHandler) Subscribe(ch chan *appv1.ApplicationWatchEvent, filters ...func(event *appv1.ApplicationWatchEvent) bool) func() {
|
|
b.lock.Lock()
|
|
defer b.lock.Unlock()
|
|
subscriber := &subscriber{ch, filters}
|
|
b.subscribers = append(b.subscribers, subscriber)
|
|
return func() {
|
|
b.lock.Lock()
|
|
defer b.lock.Unlock()
|
|
for i := range b.subscribers {
|
|
if b.subscribers[i] == subscriber {
|
|
b.subscribers = append(b.subscribers[:i], b.subscribers[i+1:]...)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (b *broadcasterHandler) OnAdd(obj interface{}) {
|
|
if app, ok := obj.(*appv1.Application); ok {
|
|
b.notify(&appv1.ApplicationWatchEvent{Application: *app, Type: watch.Added})
|
|
}
|
|
}
|
|
|
|
func (b *broadcasterHandler) OnUpdate(_, newObj interface{}) {
|
|
if app, ok := newObj.(*appv1.Application); ok {
|
|
b.notify(&appv1.ApplicationWatchEvent{Application: *app, Type: watch.Modified})
|
|
}
|
|
}
|
|
|
|
func (b *broadcasterHandler) OnDelete(obj interface{}) {
|
|
if app, ok := obj.(*appv1.Application); ok {
|
|
b.notify(&appv1.ApplicationWatchEvent{Application: *app, Type: watch.Deleted})
|
|
}
|
|
}
|