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
|
// Copyright 2020 PingCAP, 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
//
// 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package rotate
import (
"fmt"
"net"
"strings"
"github.com/pingcap/tiup/pkg/repository/v1manifest"
"github.com/pingcap/tiup/pkg/tui/progress"
)
type statusRender struct {
mbar *progress.MultiBar
bars map[string]*progress.MultiBarItem
}
func newStatusRender(keys map[string]*v1manifest.KeyInfo, addr, uri string) *statusRender {
ss := strings.Split(addr, ":")
if strings.Trim(ss[0], " ") == "" || strings.Trim(ss[0], " ") == "0.0.0.0" {
addrs, _ := net.InterfaceAddrs()
for _, addr := range addrs {
if ip, ok := addr.(*net.IPNet); ok && !ip.IP.IsLoopback() && ip.IP.To4() != nil {
ss[0] = ip.IP.To4().String()
break
}
}
}
status := &statusRender{
mbar: progress.NewMultiBar(fmt.Sprintf("Waiting all key holders to sign http://%s%s", strings.Join(ss, ":"), uri)),
bars: make(map[string]*progress.MultiBarItem),
}
for key := range keys {
status.bars[key] = status.mbar.AddBar(fmt.Sprintf(" - Waiting key %s", key))
}
status.mbar.StartRenderLoop()
return status
}
func (s *statusRender) render(manifest *v1manifest.Manifest) {
for _, sig := range manifest.Signatures {
s.bars[sig.KeyID].UpdateDisplay(&progress.DisplayProps{
Prefix: fmt.Sprintf(" - Waiting key %s", sig.KeyID),
Mode: progress.ModeDone,
})
}
}
func (s *statusRender) stop() {
s.mbar.StopRenderLoop()
}
|