2017-10-10 15:19:14 +02:00
|
|
|
package postgres
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"regexp"
|
|
|
|
|
"strings"
|
2017-10-27 11:26:25 +02:00
|
|
|
"time"
|
2017-10-10 15:19:14 +02:00
|
|
|
|
2021-09-07 09:35:37 +02:00
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
2021-09-21 13:08:52 +02:00
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend/gtime"
|
2022-09-12 12:03:49 +02:00
|
|
|
|
2019-09-10 15:50:04 -04:00
|
|
|
"github.com/grafana/grafana/pkg/tsdb/sqleng"
|
2017-10-10 15:19:14 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const rsIdentifier = `([_a-zA-Z0-9]+)`
|
|
|
|
|
const sExpr = `\$` + rsIdentifier + `\(([^\)]*)\)`
|
|
|
|
|
|
2018-07-26 18:10:17 +02:00
|
|
|
type postgresMacroEngine struct {
|
2021-03-08 07:02:49 +01:00
|
|
|
*sqleng.SQLMacroEngineBase
|
2018-08-14 08:34:20 +02:00
|
|
|
timescaledb bool
|
2017-10-10 15:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-08 07:02:49 +01:00
|
|
|
func newPostgresMacroEngine(timescaledb bool) sqleng.SQLMacroEngine {
|
2018-09-13 16:51:00 +02:00
|
|
|
return &postgresMacroEngine{
|
2021-03-08 07:02:49 +01:00
|
|
|
SQLMacroEngineBase: sqleng.NewSQLMacroEngineBase(),
|
2018-09-13 16:51:00 +02:00
|
|
|
timescaledb: timescaledb,
|
|
|
|
|
}
|
2017-10-10 15:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2021-09-07 09:35:37 +02:00
|
|
|
func (m *postgresMacroEngine) Interpolate(query *backend.DataQuery, timeRange backend.TimeRange, sql string) (string, error) {
|
2021-03-08 07:02:49 +01:00
|
|
|
// TODO: Handle error
|
2017-10-10 15:19:14 +02:00
|
|
|
rExp, _ := regexp.Compile(sExpr)
|
|
|
|
|
var macroError error
|
|
|
|
|
|
2018-09-13 16:51:00 +02:00
|
|
|
sql = m.ReplaceAllStringSubmatchFunc(rExp, sql, func(groups []string) string {
|
2018-08-01 15:06:18 +02:00
|
|
|
// detect if $__timeGroup is supposed to add AS time for pre 5.3 compatibility
|
|
|
|
|
// if there is a ',' directly after the macro call $__timeGroup is probably used
|
|
|
|
|
// in the old way. Inside window function ORDER BY $__timeGroup will be followed
|
|
|
|
|
// by ')'
|
|
|
|
|
if groups[1] == "__timeGroup" {
|
|
|
|
|
if index := strings.Index(sql, groups[0]); index >= 0 {
|
|
|
|
|
index += len(groups[0])
|
2020-12-01 09:53:27 +01:00
|
|
|
// check for character after macro expression
|
|
|
|
|
if len(sql) > index && sql[index] == ',' {
|
|
|
|
|
groups[1] = "__timeGroupAlias"
|
2018-08-01 15:06:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-02 19:20:30 +01:00
|
|
|
args := strings.Split(groups[2], ",")
|
|
|
|
|
for i, arg := range args {
|
|
|
|
|
args[i] = strings.Trim(arg, " ")
|
|
|
|
|
}
|
2021-06-11 14:56:29 +02:00
|
|
|
res, err := m.evaluateMacro(timeRange, query, groups[1], args)
|
2017-10-10 15:19:14 +02:00
|
|
|
if err != nil && macroError == nil {
|
|
|
|
|
macroError = err
|
|
|
|
|
return "macro_error()"
|
|
|
|
|
}
|
|
|
|
|
return res
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if macroError != nil {
|
|
|
|
|
return "", macroError
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sql, nil
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-12 12:03:49 +02:00
|
|
|
//nolint:gocyclo
|
2021-09-07 09:35:37 +02:00
|
|
|
func (m *postgresMacroEngine) evaluateMacro(timeRange backend.TimeRange, query *backend.DataQuery, name string, args []string) (string, error) {
|
2017-10-10 15:19:14 +02:00
|
|
|
switch name {
|
|
|
|
|
case "__time":
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
|
}
|
|
|
|
|
return fmt.Sprintf("%s AS \"time\"", args[0]), nil
|
|
|
|
|
case "__timeEpoch":
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
|
}
|
|
|
|
|
return fmt.Sprintf("extract(epoch from %s) as \"time\"", args[0]), nil
|
|
|
|
|
case "__timeFilter":
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
|
}
|
2018-04-15 18:38:20 +02:00
|
|
|
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("%s BETWEEN '%s' AND '%s'", args[0], timeRange.From.UTC().Format(time.RFC3339Nano), timeRange.To.UTC().Format(time.RFC3339Nano)), nil
|
2018-11-30 14:18:33 +01:00
|
|
|
case "__timeFrom":
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("'%s'", timeRange.From.UTC().Format(time.RFC3339Nano)), nil
|
2018-11-30 14:18:33 +01:00
|
|
|
case "__timeTo":
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("'%s'", timeRange.To.UTC().Format(time.RFC3339Nano)), nil
|
2017-10-10 15:19:14 +02:00
|
|
|
case "__timeGroup":
|
2017-12-10 09:59:33 +01:00
|
|
|
if len(args) < 2 {
|
|
|
|
|
return "", fmt.Errorf("macro %v needs time column and interval and optional fill value", name)
|
2017-10-10 15:19:14 +02:00
|
|
|
}
|
2019-05-30 17:58:29 +10:00
|
|
|
interval, err := gtime.ParseInterval(strings.Trim(args[1], `'`))
|
2017-10-27 11:26:25 +02:00
|
|
|
if err != nil {
|
|
|
|
|
return "", fmt.Errorf("error parsing interval %v", args[1])
|
|
|
|
|
}
|
2017-12-10 09:59:33 +01:00
|
|
|
if len(args) == 3 {
|
2021-06-11 14:56:29 +02:00
|
|
|
err := sqleng.SetupFillmode(query, interval, args[2])
|
2018-08-12 10:51:58 +02:00
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
2017-12-10 09:59:33 +01:00
|
|
|
}
|
|
|
|
|
}
|
2018-07-21 20:00:26 +02:00
|
|
|
|
2018-08-14 08:34:20 +02:00
|
|
|
if m.timescaledb {
|
2021-05-10 22:22:13 +08:00
|
|
|
return fmt.Sprintf("time_bucket('%.3fs',%s)", interval.Seconds(), args[0]), nil
|
2018-07-21 20:00:26 +02:00
|
|
|
}
|
2019-04-23 11:24:47 +03:00
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
|
|
|
|
"floor(extract(epoch from %s)/%v)*%v", args[0],
|
|
|
|
|
interval.Seconds(),
|
|
|
|
|
interval.Seconds(),
|
|
|
|
|
), nil
|
2018-08-01 08:48:22 +02:00
|
|
|
case "__timeGroupAlias":
|
2021-06-11 14:56:29 +02:00
|
|
|
tg, err := m.evaluateMacro(timeRange, query, "__timeGroup", args)
|
2018-08-01 08:48:22 +02:00
|
|
|
if err == nil {
|
2020-11-17 11:27:45 +01:00
|
|
|
return tg + " AS \"time\"", nil
|
2018-08-01 08:48:22 +02:00
|
|
|
}
|
|
|
|
|
return "", err
|
2017-10-10 15:19:14 +02:00
|
|
|
case "__unixEpochFilter":
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
|
}
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], timeRange.From.UTC().Unix(), args[0], timeRange.To.UTC().Unix()), nil
|
2019-01-03 20:40:17 +01:00
|
|
|
case "__unixEpochNanoFilter":
|
2019-01-02 23:00:21 +01:00
|
|
|
if len(args) == 0 {
|
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
|
}
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], timeRange.From.UTC().UnixNano(), args[0], timeRange.To.UTC().UnixNano()), nil
|
2019-01-03 21:31:47 +01:00
|
|
|
case "__unixEpochNanoFrom":
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("%d", timeRange.From.UTC().UnixNano()), nil
|
2019-01-03 21:31:47 +01:00
|
|
|
case "__unixEpochNanoTo":
|
2021-09-07 09:35:37 +02:00
|
|
|
return fmt.Sprintf("%d", timeRange.To.UTC().UnixNano()), nil
|
2018-08-13 12:08:14 +02:00
|
|
|
case "__unixEpochGroup":
|
|
|
|
|
if len(args) < 2 {
|
|
|
|
|
return "", fmt.Errorf("macro %v needs time column and interval and optional fill value", name)
|
|
|
|
|
}
|
2019-05-30 17:58:29 +10:00
|
|
|
interval, err := gtime.ParseInterval(strings.Trim(args[1], `'`))
|
2018-08-13 12:08:14 +02:00
|
|
|
if err != nil {
|
|
|
|
|
return "", fmt.Errorf("error parsing interval %v", args[1])
|
|
|
|
|
}
|
|
|
|
|
if len(args) == 3 {
|
2021-06-11 14:56:29 +02:00
|
|
|
err := sqleng.SetupFillmode(query, interval, args[2])
|
2018-08-13 12:08:14 +02:00
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-26 18:44:14 +01:00
|
|
|
return fmt.Sprintf("floor((%s)/%v)*%v", args[0], interval.Seconds(), interval.Seconds()), nil
|
2018-08-13 12:08:14 +02:00
|
|
|
case "__unixEpochGroupAlias":
|
2021-06-11 14:56:29 +02:00
|
|
|
tg, err := m.evaluateMacro(timeRange, query, "__unixEpochGroup", args)
|
2018-08-13 12:08:14 +02:00
|
|
|
if err == nil {
|
2020-11-17 11:27:45 +01:00
|
|
|
return tg + " AS \"time\"", nil
|
2018-08-13 12:08:14 +02:00
|
|
|
}
|
|
|
|
|
return "", err
|
2017-10-10 15:19:14 +02:00
|
|
|
default:
|
2020-11-05 11:29:39 +01:00
|
|
|
return "", fmt.Errorf("unknown macro %q", name)
|
2017-10-10 15:19:14 +02:00
|
|
|
}
|
|
|
|
|
}
|