go.temporal.io/server/tools/sql/main.go
222 LOC · 134 covered · 88 uncovered · 7 ranges · 38 concepts · 5 introducers · 21 tests
File neighbourhood
The centred file is linked to every concept that introduces one of its ranges, every test that runs code from the file, and the gray connector concepts standing between those tests and the file's own introducer concepts. Undirected links join concepts to every file where they introduce source and concepts to the tests they introduce; arrows show specialization between the displayed concepts and bridge only concepts omitted from this view. Concept colors match the source ranges below; connector concepts have no source color and are shown in gray.
Focused file, its introducer and connector concepts, their introduced files, and tests that run code from the file
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the related-file, concept, and source links on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the related-file, concept, and source links on this page while the interactive map is unavailable.
package sql
import (
"fmt"
"os"
"github.com/urfave/cli"
"go.temporal.io/server/common/headers"
"go.temporal.io/server/common/log"
"go.temporal.io/server/common/persistence/sql/sqlplugin/mysql"
dbschemas "go.temporal.io/server/schema"
"go.temporal.io/server/temporal/environment"
"go.temporal.io/server/tools/common/schema"
)
// RunTool runs the temporal-sql-tool command line tool
app := BuildCLIOptions()
return app.Run(args)
}
// root handler for all cli commands
func cliHandler(c *cli.Context, handler func(c *cli.Context, logger log.Logger) error, logger log.Logger) {
handler.go ×4
quiet := c.GlobalBool(schema.CLIOptQuiet)
err := handler(c, logger)
if err != nil && !quiet {
os.Exit(1)
}
}
// BuildCLIOptions builds the options for cli
app := cli.NewApp()
app.Name = "temporal-sql-tool"
app.Usage = "Command line tool for temporal sql operations"
app.Version = headers.ServerVersion
logger := log.NewCLILogger()
app.Flags = []cli.Flag{
cli.StringFlag{
Name: schema.CLIFlagEndpoint,
Value: environment.GetMySQLAddress(),
Usage: "hostname or ip address of sql host to connect to",
EnvVar: "SQL_HOST",
},
cli.IntFlag{
Name: schema.CLIFlagPort,
Value: environment.GetMySQLPort(),
Usage: "port of sql host to connect to",
EnvVar: "SQL_PORT",
},
cli.StringFlag{
Name: schema.CLIFlagUser,
Value: "",
Usage: "user name used for authentication when connecting to sql host",
EnvVar: "SQL_USER",
},
cli.StringFlag{
Name: schema.CLIFlagPassword,
Value: "",
Usage: "password used for authentication when connecting to sql host",
EnvVar: "SQL_PASSWORD",
},
cli.StringFlag{
Name: schema.CLIFlagDatabase,
Value: "temporal",
Usage: "name of the sql database",
EnvVar: "SQL_DATABASE",
},
cli.StringFlag{
Name: schema.CLIFlagPluginName,
Value: mysql.PluginName,
Usage: "name of the sql plugin",
EnvVar: "SQL_PLUGIN",
},
cli.BoolFlag{
Name: schema.CLIFlagQuiet,
Usage: "Don't set exit status to 1 on error",
},
cli.StringFlag{
Name: schema.CLIFlagConnectAttributes,
Usage: "sql connect attributes",
EnvVar: "SQL_CONNECT_ATTRIBUTES",
},
cli.BoolFlag{
Name: schema.CLIFlagEnableTLS,
Usage: "enable TLS over sql connection",
EnvVar: "SQL_TLS",
},
cli.StringFlag{
Name: schema.CLIFlagTLSCertFile,
Usage: "sql tls client cert path (tls must be enabled)",
EnvVar: "SQL_TLS_CERT_FILE",
},
cli.StringFlag{
Name: schema.CLIFlagTLSKeyFile,
Usage: "sql tls client key path (tls must be enabled)",
EnvVar: "SQL_TLS_KEY_FILE",
},
cli.StringFlag{
Name: schema.CLIFlagTLSCaFile,
Usage: "sql tls client ca file (tls must be enabled)",
EnvVar: "SQL_TLS_CA_FILE",
},
cli.StringFlag{
Name: schema.CLIFlagTLSHostName,
Value: "",
Usage: "override for target server name",
EnvVar: "SQL_TLS_SERVER_NAME",
},
cli.BoolFlag{
Name: schema.CLIFlagTLSDisableHostVerification,
Usage: "disable tls host name verification (tls must be enabled)",
EnvVar: "SQL_TLS_DISABLE_HOST_VERIFICATION",
},
}
app.Commands = []cli.Command{
{
Name: "setup-schema",
Aliases: []string{"setup"},
Usage: "setup initial version of sql schema",
Flags: []cli.Flag{
cli.StringFlag{
Name: schema.CLIFlagVersion,
Usage: "initial version of the schema, cannot be used with disable-versioning",
},
cli.StringFlag{
Name: schema.CLIFlagSchemaFile,
Usage: "path to the .sql schema file; if un-specified, will just setup versioning tables",
},
cli.StringFlag{
Name: schema.CLIFlagSchemaName,
Usage: fmt.Sprintf("name of embedded schema directory with .sql file, one of: %v",
dbschemas.PathsByDB("sql")),
},
cli.BoolFlag{
Name: schema.CLIFlagDisableVersioning,
Usage: "disable setup of schema versioning",
},
cli.BoolFlag{
Name: schema.CLIFlagOverwrite,
Usage: "drop all existing tables before setting up new schema",
},
},
Action: func(c *cli.Context) {
},
},
{
Name: "update-schema",
Aliases: []string{"update"},
Usage: "update sql schema to a specific version",
Flags: []cli.Flag{
cli.StringFlag{
Name: schema.CLIFlagTargetVersion,
Usage: "target version for the schema update, defaults to latest",
},
cli.StringFlag{
Name: schema.CLIFlagSchemaDir,
Usage: "path to directory containing versioned schema",
},
cli.StringFlag{
Name: schema.CLIFlagSchemaName,
Usage: fmt.Sprintf("name of embedded versioned schema, one of: %v",
dbschemas.PathsByDB("mysql")),
},
},
cliHandler(c, updateSchema, logger)
},
},
{
Name: "create-database",
Aliases: []string{"create"},
Usage: "creates a database",
Flags: []cli.Flag{
cli.StringFlag{
Name: schema.CLIOptDefaultDb,
Usage: "optional default db to connect to, this is not the db to be created",
},
},
cliHandler(c, createDatabase, logger)
},
},
{
Name: "drop-database",
Aliases: []string{"drop"},
Usage: "drops a database",
Flags: []cli.Flag{
cli.StringFlag{
Name: schema.CLIOptDefaultDb,
Usage: "optional default db to connect to, not the db to be deleted",
},
cli.BoolFlag{
Name: schema.CLIFlagForce,
Usage: "don't prompt for confirmation",
},
},
Action: func(c *cli.Context) {
drop := c.Bool(schema.CLIOptForce)
if !drop {
database := c.GlobalString(schema.CLIOptDatabase)
fmt.Printf("Are you sure you want to drop database %q (y/N)? ", database)
y := ""
_, _ = fmt.Scanln(&y)
if y == "y" || y == "Y" {
drop = true
}
}
if drop {
cliHandler(c, dropDatabase, logger)
}
},
},
}
}