forked from haproxytech/client-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_native.go
104 lines (91 loc) · 2.97 KB
/
client_native.go
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2019 HAProxy Technologies
//
// 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
//
// http://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 clientnative
import (
"errors"
"fmt"
"log"
"sync"
"github.com/haproxytech/client-native/v4/configuration"
"github.com/haproxytech/client-native/v4/runtime"
"github.com/haproxytech/client-native/v4/spoe"
"github.com/haproxytech/client-native/v4/storage"
)
// LogFunc - default log function is from the stdlib
var (
LogFunc = log.Printf //nolint:gochecknoglobals
ErrOptionNotAvailable = errors.New("option is not available")
)
// HAProxyClient Native client for managing configuration and spitting out HAProxy stats
type haProxyClient struct {
configuration configuration.Configuration
runtime runtime.Runtime
mapStorage storage.Storage
sslCertStorage storage.Storage
generalStorage storage.Storage
spoe spoe.Spoe
configurationMu sync.RWMutex
runtimeMu sync.RWMutex
}
func (c *haProxyClient) Configuration() (configuration.Configuration, error) {
c.configurationMu.RLock()
defer c.configurationMu.RUnlock()
if c.configuration == nil {
return nil, fmt.Errorf("configuration: %w", ErrOptionNotAvailable)
}
return c.configuration, nil
}
func (c *haProxyClient) ReplaceConfiguration(configurationClient configuration.Configuration) {
c.configurationMu.Lock()
defer c.configurationMu.Unlock()
c.configuration = configurationClient
}
func (c *haProxyClient) ReplaceRuntime(runtime runtime.Runtime) {
c.runtimeMu.Lock()
defer c.runtimeMu.Unlock()
c.runtime = runtime
}
func (c *haProxyClient) Runtime() (runtime.Runtime, error) {
c.runtimeMu.RLock()
defer c.runtimeMu.RUnlock()
if c.runtime == nil {
return nil, fmt.Errorf("runtime: %w", ErrOptionNotAvailable)
}
return c.runtime, nil
}
func (c *haProxyClient) MapStorage() (storage.Storage, error) {
if c.mapStorage == nil {
return nil, fmt.Errorf("map storage: %w", ErrOptionNotAvailable)
}
return c.mapStorage, nil
}
func (c *haProxyClient) SSLCertStorage() (storage.Storage, error) {
if c.sslCertStorage == nil {
return nil, fmt.Errorf("ssl cert storage: %w", ErrOptionNotAvailable)
}
return c.sslCertStorage, nil
}
func (c *haProxyClient) GeneralStorage() (storage.Storage, error) {
if c.generalStorage == nil {
return nil, fmt.Errorf("general files storage: %w", ErrOptionNotAvailable)
}
return c.generalStorage, nil
}
func (c *haProxyClient) Spoe() (spoe.Spoe, error) {
if c.spoe == nil {
return nil, fmt.Errorf("spoe: %w", ErrOptionNotAvailable)
}
return c.spoe, nil
}