mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 13:00:08 -05:00
179 lines
5.0 KiB
Go
179 lines
5.0 KiB
Go
package db
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/briandowns/spinner"
|
|
"github.com/turbot/steampipe/cmdconfig"
|
|
"github.com/turbot/steampipe/constants"
|
|
"github.com/turbot/steampipe/display"
|
|
"github.com/turbot/steampipe/query/queryresult"
|
|
"golang.org/x/text/language"
|
|
"golang.org/x/text/message"
|
|
)
|
|
|
|
// ExecuteSync :: execute a query against this client and wait for the result
|
|
func (c *Client) ExecuteSync(ctx context.Context, query string, disableSpinner bool) (*queryresult.SyncQueryResult, error) {
|
|
result, err := c.ExecuteQuery(ctx, query, disableSpinner)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
syncResult := &queryresult.SyncQueryResult{ColTypes: result.ColTypes}
|
|
for row := range *result.RowChan {
|
|
select {
|
|
case <-ctx.Done():
|
|
default:
|
|
syncResult.Rows = append(syncResult.Rows, row)
|
|
}
|
|
}
|
|
syncResult.Duration = <-result.Duration
|
|
return syncResult, nil
|
|
}
|
|
|
|
// ExecuteQuery executes the provided query against the Database in the given context.Context
|
|
// Bear in mind that whenever ExecuteQuery is called, the returned `queryresult.Result` MUST be fully read -
|
|
// otherwise the transaction is left open, which will block the connection and will prevent subsequent communications
|
|
// with the service
|
|
func (c *Client) ExecuteQuery(ctx context.Context, query string, disableSpinner bool) (res *queryresult.Result, err error) {
|
|
if query == "" {
|
|
return &queryresult.Result{}, nil
|
|
}
|
|
startTime := time.Now()
|
|
// channel to flag to spinner that the query has run
|
|
queryDone := make(chan bool, 1)
|
|
var spinner *spinner.Spinner
|
|
var tx *sql.Tx
|
|
|
|
defer func() {
|
|
if err != nil {
|
|
// stop spinner in case of error
|
|
display.StopSpinner(spinner)
|
|
// error - rollback transaction if we have one
|
|
if tx != nil {
|
|
tx.Rollback()
|
|
}
|
|
}
|
|
close(queryDone)
|
|
}()
|
|
|
|
if !disableSpinner && cmdconfig.Viper().GetBool(constants.ConfigKeyShowInteractiveOutput) {
|
|
// if `show-interactive-output` is false, the spinner gets created, but is never shown
|
|
// so the s.Active() will always come back false . . .
|
|
spinner = display.StartSpinnerAfterDelay("Loading results...", constants.SpinnerShowTimeout, queryDone)
|
|
}
|
|
|
|
// begin a transaction
|
|
tx, err = c.dbClient.BeginTx(ctx, nil)
|
|
if err != nil {
|
|
err = fmt.Errorf("error creating transaction: %v", err)
|
|
return
|
|
}
|
|
// start asynchronous query
|
|
var rows *sql.Rows
|
|
rows, err = tx.QueryContext(ctx, query)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
var colTypes []*sql.ColumnType
|
|
colTypes, err = rows.ColumnTypes()
|
|
if err != nil {
|
|
err = fmt.Errorf("error reading columns from query: %v", err)
|
|
return
|
|
}
|
|
|
|
result := queryresult.NewQueryResult(colTypes)
|
|
|
|
// read the rows in a go routine
|
|
go func() {
|
|
// read in the rows
|
|
c.readRows(ctx, startTime, rows, result, spinner)
|
|
// commit transaction
|
|
tx.Commit()
|
|
}()
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func (c *Client) readRows(ctx context.Context, start time.Time, rows *sql.Rows, result *queryresult.Result, activeSpinner *spinner.Spinner) {
|
|
// defer this, so that these get cleaned up even if there is an unforeseen error
|
|
defer func() {
|
|
// close the sql rows object
|
|
rows.Close()
|
|
if err := rows.Err(); err != nil {
|
|
result.StreamError(err)
|
|
}
|
|
// close the channels in the result object
|
|
result.Close()
|
|
|
|
// we are done fetching results. time for display. remove the spinner
|
|
display.StopSpinner(activeSpinner)
|
|
}()
|
|
|
|
rowCount := 0
|
|
colTypes, err := rows.ColumnTypes()
|
|
if err != nil {
|
|
// we do not need to stream because
|
|
// defer takes care of it!
|
|
return
|
|
}
|
|
cols, err := rows.Columns()
|
|
if err != nil {
|
|
// we do not need to stream because
|
|
// defer takes care of it!
|
|
return
|
|
}
|
|
|
|
for rows.Next() {
|
|
continueToNext := true
|
|
select {
|
|
case <-ctx.Done():
|
|
display.UpdateSpinnerMessage(activeSpinner, "Cancelling query")
|
|
continueToNext = false
|
|
default:
|
|
if rowResult, err := readRow(rows, cols, colTypes); err != nil {
|
|
result.StreamError(err)
|
|
continueToNext = false
|
|
} else {
|
|
result.StreamRow(rowResult)
|
|
}
|
|
// update the spinner message with the count of rows that have already been fetched
|
|
// this will not show if the spinner is not active
|
|
display.UpdateSpinnerMessage(activeSpinner, fmt.Sprintf("Loading results: %3s", humanizeRowCount(rowCount)))
|
|
rowCount++
|
|
}
|
|
if !continueToNext {
|
|
break
|
|
}
|
|
}
|
|
|
|
// set the time that it took for this one to execute
|
|
result.Duration <- time.Since(start)
|
|
}
|
|
|
|
func readRow(rows *sql.Rows, cols []string, colTypes []*sql.ColumnType) ([]interface{}, error) {
|
|
// slice of interfaces to receive the row data
|
|
columnValues := make([]interface{}, len(cols))
|
|
// make a slice of pointers to the result to pass to scan
|
|
resultPtrs := make([]interface{}, len(cols)) // A temporary interface{} slice
|
|
for i := range columnValues {
|
|
resultPtrs[i] = &columnValues[i]
|
|
}
|
|
err := rows.Scan(resultPtrs...)
|
|
if err != nil {
|
|
if err == context.Canceled {
|
|
err = fmt.Errorf("Cancelled")
|
|
}
|
|
return nil, err
|
|
}
|
|
return populateRow(columnValues, colTypes), nil
|
|
}
|
|
|
|
func humanizeRowCount(count int) string {
|
|
p := message.NewPrinter(language.English)
|
|
return p.Sprintf("%d", count)
|
|
}
|