Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
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
105
106
107
package api
 
import (
    "fmt"
    "os"
    "strings"
 
    routerService "github.com/v2fly/v2ray-core/v5/app/router/command"
    "github.com/v2fly/v2ray-core/v5/main/commands/base"
)
 
// TODO: support "-json" flag for json output
var cmdBalancerInfo = &base.Command{
    CustomFlags: true,
    UsageLine:   "{{.Exec}} api bi [--server=127.0.0.1:8080] [balancer]...",
    Short:       "balancer information",
    Long: `
Get information of specified balancers, including health, strategy 
and selecting. If no balancer tag specified, get information of 
all balancers.
 
> Make sure you have "RoutingService" set in "config.api.services" 
of server config.
 
Arguments:
 
    -json
        Use json output.
 
    -s, -server <server:port>
        The API server address. Default 127.0.0.1:8080
 
    -t, -timeout <seconds>
        Timeout seconds to call API. Default 3
 
Example:
 
    {{.Exec}} {{.LongName}} --server=127.0.0.1:8080 balancer1 balancer2
`,
    Run: executeBalancerInfo,
}
 
func executeBalancerInfo(cmd *base.Command, args []string) {
    setSharedFlags(cmd)
    cmd.Flag.Parse(args)
 
    conn, ctx, close := dialAPIServer()
    defer close()
 
    client := routerService.NewRoutingServiceClient(conn)
    r := &routerService.GetBalancerInfoRequest{Tag: args[0]}
    resp, err := client.GetBalancerInfo(ctx, r)
    if err != nil {
        base.Fatalf("failed to get health information: %s", err)
    }
 
    if apiJSON {
        showJSONResponse(resp)
        return
    }
 
    showBalancerInfo(resp.Balancer)
}
 
func showBalancerInfo(b *routerService.BalancerMsg) {
    const tableIndent = 4
    sb := new(strings.Builder)
    // Override
    if b.Override != nil {
        sb.WriteString("  - Selecting Override:\n")
        for i, s := range []string{b.Override.Target} {
            writeRow(sb, tableIndent, i+1, []string{s}, nil)
        }
    }
    // Selects
    sb.WriteString("  - Selects:\n")
 
    for i, o := range b.PrincipleTarget.Tag {
        writeRow(sb, tableIndent, i+1, []string{o}, nil)
    }
    os.Stdout.WriteString(sb.String())
}
 
func getColumnFormats(titles []string) []string {
    w := make([]string, len(titles))
    for i, t := range titles {
        w[i] = fmt.Sprintf("%%-%ds ", len(t))
    }
    return w
}
 
func writeRow(sb *strings.Builder, indent, index int, values, formats []string) {
    if index == 0 {
        // title line
        sb.WriteString(strings.Repeat(" ", indent+4))
    } else {
        sb.WriteString(fmt.Sprintf("%s%-4d", strings.Repeat(" ", indent), index))
    }
    for i, v := range values {
        format := "%-14s"
        if i < len(formats) {
            format = formats[i]
        }
        sb.WriteString(fmt.Sprintf(format, v))
    }
    sb.WriteByte('\n')
}