Files
steampipe/interactive/interactive_client.go
2021-09-02 21:34:43 +01:00

563 lines
16 KiB
Go

package interactive
import (
"context"
"fmt"
"log"
"os/signal"
"sort"
"strings"
"sync"
"github.com/alecthomas/chroma/formatters"
"github.com/alecthomas/chroma/lexers"
"github.com/alecthomas/chroma/styles"
"github.com/spf13/viper"
"github.com/c-bata/go-prompt"
"github.com/turbot/go-kit/helpers"
"github.com/turbot/steampipe/autocomplete"
"github.com/turbot/steampipe/cmdconfig"
"github.com/turbot/steampipe/constants"
"github.com/turbot/steampipe/db/db_common"
"github.com/turbot/steampipe/display"
"github.com/turbot/steampipe/query/metaquery"
"github.com/turbot/steampipe/query/queryhistory"
"github.com/turbot/steampipe/query/queryresult"
"github.com/turbot/steampipe/steampipeconfig/parse"
"github.com/turbot/steampipe/utils"
"github.com/turbot/steampipe/version"
)
type AfterPromptCloseAction int
const (
AfterPromptCloseExit AfterPromptCloseAction = iota
AfterPromptCloseRestart
)
// InteractiveClient :: wrapper over *LocalClient and *prompt.Prompt along
// to facilitate interactive query prompt
type InteractiveClient struct {
initData *db_common.QueryInitData
resultsStreamer *queryresult.ResultStreamer
interactiveBuffer []string
interactivePrompt *prompt.Prompt
interactiveQueryHistory *queryhistory.QueryHistory
autocompleteOnEmpty bool
// the cancellation function for the active query - may be nil
// NOTE: should ONLY be called by cancelActiveQueryIfAny
cancelActiveQuery context.CancelFunc
cancelPrompt context.CancelFunc
// channel from which we read the result of the external initialisation process
initDataChan *chan *db_common.QueryInitData
// channel used internally to signal an init error
initResultChan chan *db_common.InitResult
afterClose AfterPromptCloseAction
// lock while execution is occurring to avoid errors/warnings being shown
executionLock sync.Mutex
highlighter *Highlighter
}
func getHighlighter(theme string) *Highlighter {
return newHighlighter(
lexers.Get("sql"),
formatters.Get("terminal256"),
styles.Native,
)
}
func newInteractiveClient(initChan *chan *db_common.QueryInitData, resultsStreamer *queryresult.ResultStreamer) (*InteractiveClient, error) {
c := &InteractiveClient{
resultsStreamer: resultsStreamer,
interactiveQueryHistory: queryhistory.New(),
interactiveBuffer: []string{},
autocompleteOnEmpty: false,
initDataChan: initChan,
initResultChan: make(chan *db_common.InitResult, 1),
highlighter: getHighlighter(viper.GetString(constants.ArgTheme)),
}
// asynchronously wait for init to complete
// we start this immediately rather than lazy loading as we want to handle errors asap
go c.readInitDataStream()
return c, nil
}
// InteractiveQuery :: start an interactive prompt and return
func (c *InteractiveClient) InteractiveQuery() {
// start a cancel handler for the interactive client - this will call activeQueryCancelFunc if it is set
// (registered when we call createQueryContext)
interruptSignalChannel := c.startCancelHandler()
// create a cancel context for the prompt - this will set c.cancelPrompt
promptCtx := c.createPromptContext()
defer func() {
if r := recover(); r != nil {
utils.ShowError(helpers.ToError(r))
}
// close up the SIGINT channel so that the receiver goroutine can quit
signal.Stop(interruptSignalChannel)
close(interruptSignalChannel)
// close the underlying client if it exists
if client := c.client(); client != nil {
client.Close()
}
// close the result stream
// this needs to be the last thing we do,
// as the query result display code will exit once the result stream is closed
c.resultsStreamer.Close()
}()
fmt.Printf("Welcome to Steampipe v%s\n", version.String())
fmt.Printf("For more information, type %s\n", constants.Bold(".help"))
// run the prompt in a goroutine, so we can also detect async initialisation errors
promptResultChan := make(chan utils.InteractiveExitStatus, 1)
c.runInteractivePromptAsync(promptCtx, &promptResultChan)
// select results
for {
select {
case initResult := <-c.initResultChan:
c.handleInitResult(promptCtx, initResult)
// if there was an error, handleInitResult will shut down the prompt
// - we must wait for it to shut down and not return immediately
case <-promptResultChan:
// persist saved history
c.interactiveQueryHistory.Persist()
// check post-close action
if c.afterClose == AfterPromptCloseExit {
return
}
// create new context
promptCtx = c.createPromptContext()
// now run it again
c.runInteractivePromptAsync(promptCtx, &promptResultChan)
}
}
}
// init data has arrived, handle any errors/warnings/messages
func (c *InteractiveClient) handleInitResult(ctx context.Context, initResult *db_common.InitResult) {
c.executionLock.Lock()
defer c.executionLock.Unlock()
if utils.IsContextCancelled(ctx) {
log.Printf("[TRACE] prompt context has been cancelled - not handling init result")
return
}
// if there is an error, shutdown the prompt
if initResult.Error != nil {
c.ClosePrompt(AfterPromptCloseExit)
// add newline to ensure error is not printed at end of current prompt line
fmt.Println()
utils.ShowError(initResult.Error)
return
}
if initResult.HasMessages() {
// after closing prompt, restart it
c.ClosePrompt(AfterPromptCloseRestart)
fmt.Println()
initResult.DisplayMessages()
}
// We need to Render the prompt here to make sure that it comes back
// after the messages have been displayed
c.interactivePrompt.Render()
}
// ClosePrompt cancels the running prompt, setting the action to take after close
func (c *InteractiveClient) ClosePrompt(afterClose AfterPromptCloseAction) {
c.afterClose = afterClose
c.cancelPrompt()
}
func (c *InteractiveClient) runInteractivePromptAsync(ctx context.Context, promptResultChan *chan utils.InteractiveExitStatus) {
go func() {
*promptResultChan <- c.runInteractivePrompt(ctx)
}()
}
func (c *InteractiveClient) runInteractivePrompt(ctx context.Context) (ret utils.InteractiveExitStatus) {
defer func() {
// this is to catch the PANIC that gets raised by
// the executor of go-prompt
//
// We need to do it this way, since there is no
// clean way to reload go-prompt so that we can
// populate the history stack
//
r := recover()
switch v := r.(type) {
case utils.InteractiveExitStatus:
// this is a planned exit
// set the return value
ret = v
default:
if r != nil {
// for everything else, float up the panic
panic(r)
}
}
}()
callExecutor := func(line string) {
c.executor(line)
}
completer := func(d prompt.Document) []prompt.Suggest {
return c.queryCompleter(d)
}
c.interactivePrompt = prompt.New(
callExecutor,
completer,
prompt.OptionTitle("steampipe interactive client "),
prompt.OptionLivePrefix(func() (prefix string, useLive bool) {
prefix = "> "
useLive = true
if len(c.interactiveBuffer) > 0 {
prefix = ">> "
}
return
}),
prompt.OptionFormatter(c.highlighter.Highlight),
prompt.OptionHistory(c.interactiveQueryHistory.Get()),
prompt.OptionInputTextColor(prompt.DefaultColor),
prompt.OptionPrefixTextColor(prompt.DefaultColor),
prompt.OptionMaxSuggestion(20),
// Known Key Bindings
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.ControlC,
Fn: func(b *prompt.Buffer) { c.breakMultilinePrompt(b) },
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.ControlD,
Fn: func(b *prompt.Buffer) {
if b.Text() == "" {
// just set after close action - go prompt will handle the prompt shutdown
c.afterClose = AfterPromptCloseExit
}
},
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.Tab,
Fn: func(b *prompt.Buffer) {
if len(b.Text()) == 0 {
c.autocompleteOnEmpty = true
} else {
c.autocompleteOnEmpty = false
}
},
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.Escape,
Fn: func(b *prompt.Buffer) {
if len(b.Text()) == 0 {
c.autocompleteOnEmpty = false
}
},
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.ShiftLeft,
Fn: prompt.GoLeftChar,
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.ShiftRight,
Fn: prompt.GoRightChar,
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.ShiftUp,
Fn: func(b *prompt.Buffer) { /*ignore*/ },
}),
prompt.OptionAddKeyBind(prompt.KeyBind{
Key: prompt.ShiftDown,
Fn: func(b *prompt.Buffer) { /*ignore*/ },
}),
// Opt+LeftArrow
prompt.OptionAddASCIICodeBind(prompt.ASCIICodeBind{
ASCIICode: constants.OptLeftArrowASCIICode,
Fn: prompt.GoLeftWord,
}),
// Opt+RightArrow
prompt.OptionAddASCIICodeBind(prompt.ASCIICodeBind{
ASCIICode: constants.OptRightArrowASCIICode,
Fn: prompt.GoRightWord,
}),
// Alt+LeftArrow
prompt.OptionAddASCIICodeBind(prompt.ASCIICodeBind{
ASCIICode: constants.AltLeftArrowASCIICode,
Fn: prompt.GoLeftWord,
}),
// Alt+RightArrow
prompt.OptionAddASCIICodeBind(prompt.ASCIICodeBind{
ASCIICode: constants.AltRightArrowASCIICode,
Fn: prompt.GoRightWord,
}),
)
// set this to a default
c.autocompleteOnEmpty = false
c.interactivePrompt.RunCtx(ctx)
return
}
func (c *InteractiveClient) breakMultilinePrompt(buffer *prompt.Buffer) {
c.interactiveBuffer = []string{}
}
func (c *InteractiveClient) executor(line string) {
c.executionLock.Lock()
defer c.executionLock.Unlock()
// set afterClose to restart - is we are exiting the metaquery will set this to AfterPromptCloseExit
c.afterClose = AfterPromptCloseRestart
line = strings.TrimSpace(line)
query, err := c.getQuery(line)
if query == "" {
if err != nil {
// if there was an error other than cancellation, quit
if !utils.IsCancelledError(err) {
c.afterClose = AfterPromptCloseExit
}
// restart the prompt
c.restartInteractiveSession()
}
return
}
// create a context for the execution of the query
queryContext := c.createQueryContext()
if metaquery.IsMetaQuery(query) {
if err := c.executeMetaquery(queryContext, query); err != nil {
utils.ShowError(err)
}
// cancel the context
c.cancelActiveQueryIfAny()
} else {
// otherwise execute query
result, err := c.client().Execute(queryContext, query, false)
if err != nil {
utils.ShowError(utils.HandleCancelError(err))
} else {
c.resultsStreamer.StreamResult(result)
}
}
// store the history (the raw line which was entered)
c.interactiveQueryHistory.Put(line)
// restart the prompt
c.restartInteractiveSession()
}
func (c *InteractiveClient) getQuery(line string) (string, error) {
// if it's an empty line, then we don't need to do anything
if line == "" {
return "", nil
}
// wait fore initialisation to complete so we can acces the workspace
if !c.isInitialised() {
// create a context used purely to detect cancellation during initialisation
// this will also set c.cancelActiveQuery
queryContext := c.createQueryContext()
defer func() {
// cancel this context
c.cancelActiveQueryIfAny()
}()
initDoneChan := make(chan bool)
sp := display.StartSpinnerAfterDelay("Initializing...", constants.SpinnerShowTimeout, initDoneChan)
// wait for client initialisation to complete
if err := c.waitForInitData(queryContext); err != nil {
// if it failed, report error and quit
close(initDoneChan)
display.StopSpinner(sp)
utils.ShowError(utils.HandleCancelError(err))
return "", err
}
close(initDoneChan)
display.StopSpinner(sp)
}
// push the current line into the buffer
c.interactiveBuffer = append(c.interactiveBuffer, line)
// expand the buffer out into 'query'
query := strings.Join(c.interactiveBuffer, "\n")
// in case of a named query call with params, parse the where clause
queryName, params := parse.ParsePreparedStatementInvocation(query)
namedQuery, isNamedQuery := c.workspace().GetQuery(queryName)
// if it is a multiline query, execute even without `;`
if isNamedQuery {
var err error
query, err = namedQuery.GetExecuteSQL(params)
if err != nil {
return "", err
}
} else {
// should we execute?
if !c.shouldExecute(query) {
return "", nil
}
}
control, isControl := c.workspace().GetControl(query)
if isControl {
query = *control.SQL
} else {
// should we execute?
if !c.shouldExecute(query) {
return "", nil
}
}
// so we need to execute - what are we executing
// if the line is ONLY a semicolon, do nothing and restart interactive session
if strings.TrimSpace(query) == ";" {
c.restartInteractiveSession()
return "", nil
}
return query, nil
}
func (c *InteractiveClient) executeMetaquery(ctx context.Context, query string) error {
// the client must be initialised to get here
if !c.isInitialised() {
panic("client is not initalised")
}
// validate the metaquery arguments
validateResult := metaquery.Validate(query)
if validateResult.Message != "" {
fmt.Println(validateResult.Message)
}
if err := validateResult.Err; err != nil {
return err
}
if !validateResult.ShouldRun {
return nil
}
client := c.client()
// validation passed, now we will run
return metaquery.Handle(&metaquery.HandlerInput{
Query: query,
Executor: client,
Schema: client.SchemaMetadata(),
Connections: client.ConnectionMap(),
Prompt: c.interactivePrompt,
ClosePrompt: func() { c.afterClose = AfterPromptCloseExit },
})
}
func (c *InteractiveClient) restartInteractiveSession() {
log.Printf("[TRACE] restartInteractiveSession")
// empty the buffer
c.interactiveBuffer = []string{}
// restart the prompt
c.ClosePrompt(c.afterClose)
}
func (c *InteractiveClient) shouldExecute(line string) bool {
return !cmdconfig.Viper().GetBool(constants.ArgMultiLine) || strings.HasSuffix(line, ";") || metaquery.IsMetaQuery(line)
}
func (c *InteractiveClient) queryCompleter(d prompt.Document) []prompt.Suggest {
if !c.isInitialised() {
return nil
}
text := strings.TrimLeft(strings.ToLower(d.Text), " ")
if len(c.interactiveBuffer) > 0 {
text = strings.Join(append(c.interactiveBuffer, text), " ")
}
var s []prompt.Suggest
if len(d.CurrentLine()) == 0 && !c.autocompleteOnEmpty {
// if nothing has been typed yet, no point
// giving suggestions
return s
}
if isFirstWord(text) {
// add all we know that can be the first words
//named queries
s = append(s, c.namedQuerySuggestions()...)
// "select"
s = append(s, prompt.Suggest{Text: "select"})
// metaqueries
s = append(s, metaquery.PromptSuggestions()...)
} else if metaquery.IsMetaQuery(text) {
client := c.client()
suggestions := metaquery.Complete(&metaquery.CompleterInput{
Query: text,
Schema: client.SchemaMetadata(),
Connections: client.ConnectionMap(),
})
s = append(s, suggestions...)
} else {
queryInfo := getQueryInfo(text)
// only add table suggestions if the client is initialised
if queryInfo.EditingTable && c.isInitialised() {
s = append(s, autocomplete.GetTableAutoCompleteSuggestions(c.initData.Client.SchemaMetadata(), c.initData.Client.ConnectionMap())...)
}
// Not sure this is working. comment out for now!
// if queryInfo.EditingColumn {
// fmt.Println(queryInfo.Table)
// for _, column := range schemaMetadata.ColumnMap[queryInfo.Table] {
// s = append(s, prompt.Suggest{Text: column})
// }
// }
}
return prompt.FilterHasPrefix(s, d.GetWordBeforeCursor(), true)
}
func (c *InteractiveClient) namedQuerySuggestions() []prompt.Suggest {
var res []prompt.Suggest
// only add named query suggestions if the client is initialised
if !c.isInitialised() {
return nil
}
// add all the queries in the workspace
for queryName, q := range c.workspace().GetQueryMap() {
description := "named query"
if q.Description != nil {
description += fmt.Sprintf(": %s", *q.Description)
}
res = append(res, prompt.Suggest{Text: queryName, Description: description})
}
// add all the controls in the workspace
for controlName, c := range c.workspace().GetControlMap() {
description := "control"
if c.Description != nil {
description += fmt.Sprintf(": %s", *c.Description)
}
res = append(res, prompt.Suggest{Text: controlName, Description: description})
}
sort.Slice(res, func(i, j int) bool {
return res[i].Text < res[j].Text
})
return res
}