forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
panic.go
75 lines (60 loc) · 1.83 KB
/
panic.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
// Copyright 2015, 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"
)
// PanicWorker will run panic() when executed. For internal tests only.
type PanicWorker struct {
StatusWorker
// We use the Wrangler's logger to print the message.
wr *wrangler.Wrangler
}
// NewPanicWorker returns a new PanicWorker object.
func NewPanicWorker(wr *wrangler.Wrangler) (Worker, error) {
return &PanicWorker{
StatusWorker: NewStatusWorker(),
wr: wr,
}, nil
}
// StatusAsHTML implements the Worker interface
func (pw *PanicWorker) StatusAsHTML() template.HTML {
state := pw.State()
result := "<b>Panic Command</br>\n"
result += "<b>State:</b> " + state.String() + "</br>\n"
switch state {
case WorkerStateDone:
result += "<b>Success</b>:</br>\n"
result += "panic() should have been executed and logged by the vtworker framework.</br>\n"
}
return template.HTML(result)
}
// StatusAsText implements the Worker interface.
func (pw *PanicWorker) StatusAsText() string {
state := pw.State()
result := "Panic Command\n"
result += "State: " + state.String() + "\n"
switch state {
case WorkerStateDone:
result += "panic() should have been executed and logged by the vtworker framework.\n"
}
return result
}
// Run implements the Worker interface.
func (pw *PanicWorker) Run(ctx context.Context) error {
resetVars()
err := pw.run(ctx)
pw.SetState(WorkerStateCleanUp)
if err != nil {
pw.SetState(WorkerStateError)
return err
}
pw.SetState(WorkerStateDone)
return nil
}
func (pw *PanicWorker) run(ctx context.Context) error {
panic("Panic command was called. This should be caught by the vtworker framework and logged as an error.")
}