Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

router data model test #2579

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions common/config/value.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*
Copyright NetFoundry Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package config

import (
"github.com/openziti/foundation/v2/concurrenz"
"sync"
)

type Listener[T any] interface {
NotifyChanged(init bool, old T, new T)
}

type ListenerFunc[T any] func(init bool, old T, new T)

func (f ListenerFunc[T]) NotifyChanged(init bool, old T, new T) {
f(init, old, new)
}

func NewConfigValue[T comparable]() *Value[T] {
return &Value[T]{
notifyInitialized: make(chan struct{}),
}
}

type Value[T comparable] struct {
lock sync.Mutex
initialized bool
notifyInitialized chan struct{}
value concurrenz.AtomicValue[T]
listeners concurrenz.CopyOnWriteSlice[Listener[T]]
}

func (self *Value[T]) Store(value T) {
self.lock.Lock()
defer self.lock.Unlock()

first := !self.initialized
old := self.value.Swap(value)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Test HA Quickstart

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build openziti amd64 deb

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Test Docker Deployments

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build openziti-controller amd64 deb

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Test Debian Linux Services

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Test all-in-one Quickstart

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build openziti-router amd64 rpm

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build openziti amd64 rpm

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Test Kubernetes Deployments

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build openziti-controller amd64 rpm

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build openziti-router amd64 deb

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / lint

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap) (typecheck)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / lint

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)) (typecheck)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / lint

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)) (typecheck)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / lint

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)) (typecheck)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build Mac OS binaries

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Run Unit and Integration Tests

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build Linux binaries

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Fablab Smoketest

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

Check failure on line 53 in common/config/value.go

View workflow job for this annotation

GitHub Actions / Build Windows binaries

self.value.Swap undefined (type concurrenz.AtomicValue[T] has no field or method Swap)

if first || old != value {
for _, l := range self.listeners.Value() {
l.NotifyChanged(first, old, value)
}
}

if first {
self.initialized = true
close(self.notifyInitialized)
}
}

func (self *Value[T]) Load() T {
return self.value.Load()
}

func (self *Value[T]) AddListener(listener Listener[T]) {
self.lock.Lock()
defer self.lock.Unlock()

self.listeners.Append(listener)

if self.initialized {
listener.NotifyChanged(true, self.Load(), self.Load())
}
}

func (self *Value[T]) RemoveListener(listener Listener[T]) {
self.lock.Lock()
defer self.lock.Unlock()

self.listeners.Delete(listener)
}

func (self *Value[T]) GetInitNotifyChannel() <-chan struct{} {
return self.notifyInitialized
}
Loading
Loading