-
Notifications
You must be signed in to change notification settings - Fork 249
/
runtime_client.go
82 lines (69 loc) · 2.8 KB
/
runtime_client.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
/*
* Tencent is pleased to support the open source community by making Blueking Container Service available.
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* 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 haproxy
import (
"fmt"
"github.com/Tencent/bk-bcs/bcs-common/common/blog"
"github.com/haproxytech/client-native/runtime"
"github.com/haproxytech/models"
)
// RuntimeClient haproxy runtime client
type RuntimeClient struct {
client *runtime.SingleRuntime
SockPath string
}
// NewRuntimeClient create runtime client
func NewRuntimeClient(sockPath string) (*RuntimeClient, error) {
client := &runtime.SingleRuntime{}
err := client.Init(sockPath, 0)
if err != nil {
blog.Errorf("init haproxy runtime failed with sock path %s, err %s", sockPath, err.Error())
return nil, err
}
return &RuntimeClient{
client: client,
SockPath: sockPath,
}, nil
}
// NewSetServerWeightCommand create new command that set server weight
func (rc *RuntimeClient) NewSetServerWeightCommand(backend, server string, weight int) string {
return fmt.Sprintf("set server %s/%s weight %d", backend, server, weight)
}
// NewDisableServerCommand create new command that disable unused server
func (rc *RuntimeClient) NewDisableServerCommand(backend, server string) string {
return fmt.Sprintf("disable server %s/%s", backend, server)
}
// NewEnableServerCommand create new command that enable unused server
func (rc *RuntimeClient) NewEnableServerCommand(backend, server string) string {
return fmt.Sprintf("enable server %s/%s", backend, server)
}
// NewSetServerAddrCommand create new command that set server addr
func (rc *RuntimeClient) NewSetServerAddrCommand(backend, server, addr string, port int) string {
return fmt.Sprintf("set server %s/%s addr %s port %d", backend, server, addr, port)
}
// GetStats get statistic of haproxy
func (rc *RuntimeClient) GetStats() *models.NativeStatsCollection {
return rc.client.GetStats()
}
// GetInfo get info of haproxy
func (rc *RuntimeClient) GetInfo() (models.ProcessInfoHaproxy, error) {
return rc.client.GetInfo()
}
// ExecuteCommand send command to haproxy
func (rc *RuntimeClient) ExecuteCommand(cmd string) error {
return rc.client.Execute(cmd)
}
// ExecuteRaw execute raw command
func (rc *RuntimeClient) ExecuteRaw(cmd string) (string, error) {
return rc.client.ExecuteRaw(cmd)
}