forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
block.go
87 lines (71 loc) · 2.15 KB
/
block.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
// Copyright 2016, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package worker
import (
"html/template"
"golang.org/x/net/context"
"github.com/youtube/vitess/go/vt/wrangler"
)
// BlockWorker will block infinitely until its context is cancelled.
type BlockWorker struct {
StatusWorker
// We use the Wrangler's logger to print the message.
wr *wrangler.Wrangler
}
// NewBlockWorker returns a new BlockWorker object.
func NewBlockWorker(wr *wrangler.Wrangler) (Worker, error) {
return &BlockWorker{
StatusWorker: NewStatusWorker(),
wr: wr,
}, nil
}
// StatusAsHTML implements the Worker interface.
func (bw *BlockWorker) StatusAsHTML() template.HTML {
state := bw.State()
result := "<b>Block Command</b> (blocking infinitely until context is cancelled)</br>\n"
result += "<b>State:</b> " + state.String() + "</br>\n"
switch state {
case WorkerStateCopy:
result += "<b>Running (blocking)</b></br>\n"
case WorkerStateDone:
result += "<b>Success (unblocked)</b></br>\n"
}
return template.HTML(result)
}
// StatusAsText implements the Worker interface.
func (bw *BlockWorker) StatusAsText() string {
state := bw.State()
result := "Block Command\n"
result += "State: " + state.String() + "\n"
switch state {
case WorkerStateCopy:
result += "Running (blocking)\n"
case WorkerStateDone:
result += "Success (unblocked)\n"
}
return result
}
// Run implements the Worker interface.
func (bw *BlockWorker) Run(ctx context.Context) error {
resetVars()
err := bw.run(ctx)
bw.SetState(WorkerStateCleanUp)
if err != nil {
bw.SetState(WorkerStateError)
return err
}
bw.SetState(WorkerStateDone)
return nil
}
func (bw *BlockWorker) run(ctx context.Context) error {
// We reuse the Copy state to reflect that the blocking is in progress.
bw.SetState(WorkerStateCopy)
bw.wr.Logger().Printf("Block command was called and will block infinitely until the RPC context is cancelled.\n")
select {
case <-ctx.Done():
}
bw.wr.Logger().Printf("Block command finished because the context is done: '%v'.\n", ctx.Err())
bw.SetState(WorkerStateDone)
return nil
}