mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
98 lines
2.3 KiB
Go
98 lines
2.3 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package mock
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
type Notify struct {
|
|
updated chan int
|
|
|
|
// A guard to protect an access to the internal attributes
|
|
// of the notification mock in order to prevent panics
|
|
// raised by the race conditions detector.
|
|
sync.RWMutex
|
|
state map[structs.CheckID]string
|
|
updates map[structs.CheckID]int
|
|
output map[structs.CheckID]string
|
|
serviceIDs map[structs.ServiceID]bool
|
|
}
|
|
|
|
func NewNotify() *Notify {
|
|
return &Notify{
|
|
state: make(map[structs.CheckID]string),
|
|
updates: make(map[structs.CheckID]int),
|
|
output: make(map[structs.CheckID]string),
|
|
serviceIDs: make(map[structs.ServiceID]bool),
|
|
}
|
|
}
|
|
|
|
// ServiceExists mock
|
|
func (c *Notify) ServiceExists(serviceID structs.ServiceID) bool {
|
|
return c.serviceIDs[serviceID]
|
|
}
|
|
|
|
// AddServiceID will mock a service being present locally
|
|
func (c *Notify) AddServiceID(serviceID structs.ServiceID) {
|
|
c.serviceIDs[serviceID] = true
|
|
}
|
|
|
|
func NewNotifyChan() (*Notify, chan int) {
|
|
n := &Notify{
|
|
updated: make(chan int),
|
|
state: make(map[structs.CheckID]string),
|
|
updates: make(map[structs.CheckID]int),
|
|
output: make(map[structs.CheckID]string),
|
|
}
|
|
return n, n.updated
|
|
}
|
|
|
|
func (m *Notify) sprintf(v interface{}) string {
|
|
m.RLock()
|
|
defer m.RUnlock()
|
|
return fmt.Sprintf("%v", v)
|
|
}
|
|
|
|
func (m *Notify) StateMap() string { return m.sprintf(m.state) }
|
|
func (m *Notify) UpdatesMap() string { return m.sprintf(m.updates) }
|
|
func (m *Notify) OutputMap() string { return m.sprintf(m.output) }
|
|
|
|
func (m *Notify) UpdateCheck(id structs.CheckID, status, output string) {
|
|
m.Lock()
|
|
m.state[id] = status
|
|
old := m.updates[id]
|
|
m.updates[id] = old + 1
|
|
m.output[id] = output
|
|
m.Unlock()
|
|
|
|
if m.updated != nil {
|
|
m.updated <- 1
|
|
}
|
|
}
|
|
|
|
// State returns the state of the specified health-check.
|
|
func (m *Notify) State(id structs.CheckID) string {
|
|
m.RLock()
|
|
defer m.RUnlock()
|
|
return m.state[id]
|
|
}
|
|
|
|
// Updates returns the count of updates of the specified health-check.
|
|
func (m *Notify) Updates(id structs.CheckID) int {
|
|
m.RLock()
|
|
defer m.RUnlock()
|
|
return m.updates[id]
|
|
}
|
|
|
|
// Output returns an output string of the specified health-check.
|
|
func (m *Notify) Output(id structs.CheckID) string {
|
|
m.RLock()
|
|
defer m.RUnlock()
|
|
return m.output[id]
|
|
}
|