forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
214 lines (206 loc) · 6.74 KB
/
app.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package cli
import (
"fmt"
"github.com/urfave/cli"
"github.com/uber/cadence/common/client"
"github.com/uber/cadence/common/metrics"
)
// SetFactory is used to set the ClientFactory global
func SetFactory(factory ClientFactory) {
cFactory = factory
}
// NewCliApp instantiates a new instance of the CLI application.
func NewCliApp() *cli.App {
version := fmt.Sprintf("CLI feature version: %v \n"+
" Release version: %v\n"+
" Build commit: %v\n"+
" Note: CLI feature version is for compatibility checking between server and CLI if enabled feature checking. Server is always backward compatible to older CLI versions, but not accepting newer than it can support.",
client.SupportedCLIVersion, metrics.ReleaseVersion, metrics.Revision)
app := cli.NewApp()
app.Name = "cadence"
app.Usage = "A command-line tool for cadence users"
app.Version = version
app.Flags = []cli.Flag{
cli.StringFlag{
Name: FlagAddressWithAlias,
Value: "",
Usage: "host:port for cadence frontend service",
EnvVar: "CADENCE_CLI_ADDRESS",
},
cli.StringFlag{
Name: FlagDomainWithAlias,
Usage: "cadence workflow domain",
EnvVar: "CADENCE_CLI_DOMAIN",
},
cli.IntFlag{
Name: FlagContextTimeoutWithAlias,
Value: defaultContextTimeoutInSeconds,
Usage: "optional timeout for context of RPC call in seconds",
EnvVar: "CADENCE_CONTEXT_TIMEOUT",
},
cli.StringFlag{
Name: FlagJWT,
Usage: "optional JWT for authorization. Either this or --jwt-private-key is needed for jwt authorization",
EnvVar: "CADENCE_CLI_JWT",
},
cli.StringFlag{
Name: FlagJWTPrivateKeyWithAlias,
Usage: "optional private key path to create JWT. Either this or --jwt is needed for jwt authorization. --jwt flag has priority over this one if both provided",
EnvVar: "CADENCE_CLI_JWT_PRIVATE_KEY",
},
cli.StringFlag{
Name: FlagTransportWithAlias,
Usage: "optional argument for transport protocol format, either 'grpc' or 'tchannel'. Defaults to tchannel if not provided",
EnvVar: "CADENCE_CLI_TRANSPORT_PROTOCOL",
},
cli.StringFlag{
Name: FlagTLSCertPathWithAlias,
Usage: "optional argument for path to TLS certificate. Defaults to an empty string if not provided",
EnvVar: "CADENCE_CLI_TLS_CERT_PATH",
},
}
app.Commands = []cli.Command{
{
Name: "domain",
Aliases: []string{"d"},
Usage: "Operate cadence domain",
Subcommands: newDomainCommands(),
},
{
Name: "workflow",
Aliases: []string{"wf"},
Usage: "Operate cadence workflow",
Subcommands: newWorkflowCommands(),
},
{
Name: "tasklist",
Aliases: []string{"tl"},
Usage: "Operate cadence tasklist",
Subcommands: newTaskListCommands(),
},
{
Name: "admin",
Aliases: []string{"adm"},
Usage: "Run admin operation",
Subcommands: []cli.Command{
{
Name: "workflow",
Aliases: []string{"wf"},
Usage: "Run admin operation on workflow",
Subcommands: newAdminWorkflowCommands(),
},
{
Name: "shard",
Aliases: []string{"shar"},
Usage: "Run admin operation on specific shard",
Subcommands: newAdminShardManagementCommands(),
},
{
Name: "history_host",
Aliases: []string{"hist"},
Usage: "Run admin operation on history host",
Subcommands: newAdminHistoryHostCommands(),
},
{
Name: "kafka",
Aliases: []string{"ka"},
Usage: "Run admin operation on kafka messages",
Subcommands: newAdminKafkaCommands(),
},
{
Name: "domain",
Aliases: []string{"d"},
Usage: "Run admin operation on domain",
Subcommands: newAdminDomainCommands(),
},
{
Name: "elasticsearch",
Aliases: []string{"es"},
Usage: "Run admin operation on ElasticSearch",
Subcommands: newAdminElasticSearchCommands(),
},
{
Name: "tasklist",
Aliases: []string{"tl"},
Usage: "Run admin operation on taskList",
Subcommands: newAdminTaskListCommands(),
},
{
Name: "cluster",
Aliases: []string{"cl"},
Usage: "Run admin operation on cluster",
Subcommands: newAdminClusterCommands(),
},
{
Name: "isolation-groups",
Aliases: []string{"ig"},
Usage: "Run admin operation on isolation-groups",
Subcommands: newAdminIsolationGroupCommands(),
},
{
Name: "dlq",
Aliases: []string{"dlq"},
Usage: "Run admin operation on DLQ",
Subcommands: newAdminDLQCommands(),
},
{
Name: "db",
Aliases: []string{"db"},
Usage: "Run admin operations on database",
Subcommands: newDBCommands(),
},
{
Name: "queue",
Aliases: []string{"q"},
Usage: "Run admin operations on queue",
Subcommands: newAdminQueueCommands(),
},
{
Name: "async-wf-queue",
Aliases: []string{"aq"},
Usage: "Run admin operations on async workflow queues",
Subcommands: newAdminAsyncQueueCommands(),
},
{
Name: "config",
Aliases: []string{"c"},
Usage: "Run admin operation on config store",
Subcommands: newAdminConfigStoreCommands(),
},
},
},
{
Name: "cluster",
Aliases: []string{"cl"},
Usage: "Operate cadence cluster",
Subcommands: newClusterCommands(),
},
}
app.CommandNotFound = func(context *cli.Context, command string) {
printMessage("command not found: " + command)
}
// set builder if not customized
if cFactory == nil {
SetFactory(NewClientFactory())
}
return app
}