2017-12-02 05:40:12 -06:00
|
|
|
package mssql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
|
|
|
)
|
|
|
|
|
|
|
|
//const rsString = `(?:"([^"]*)")`;
|
|
|
|
const rsIdentifier = `([_a-zA-Z0-9]+)`
|
|
|
|
const sExpr = `\$` + rsIdentifier + `\(([^\)]*)\)`
|
|
|
|
|
|
|
|
type MsSqlMacroEngine struct {
|
|
|
|
TimeRange *tsdb.TimeRange
|
2018-03-13 10:03:02 -05:00
|
|
|
Query *tsdb.Query
|
2017-12-02 05:40:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewMssqlMacroEngine() tsdb.SqlMacroEngine {
|
|
|
|
return &MsSqlMacroEngine{}
|
|
|
|
}
|
|
|
|
|
2018-03-13 10:03:02 -05:00
|
|
|
func (m *MsSqlMacroEngine) Interpolate(query *tsdb.Query, timeRange *tsdb.TimeRange, sql string) (string, error) {
|
2017-12-02 05:40:12 -06:00
|
|
|
m.TimeRange = timeRange
|
2018-03-13 10:03:02 -05:00
|
|
|
m.Query = query
|
2017-12-02 05:40:12 -06:00
|
|
|
rExp, _ := regexp.Compile(sExpr)
|
|
|
|
var macroError error
|
|
|
|
|
|
|
|
sql = replaceAllStringSubmatchFunc(rExp, sql, func(groups []string) string {
|
2018-03-13 10:03:02 -05:00
|
|
|
args := strings.Split(groups[2], ",")
|
|
|
|
for i, arg := range args {
|
|
|
|
args[i] = strings.Trim(arg, " ")
|
|
|
|
}
|
|
|
|
res, err := m.evaluateMacro(groups[1], args)
|
2017-12-02 05:40:12 -06:00
|
|
|
if err != nil && macroError == nil {
|
|
|
|
macroError = err
|
|
|
|
return "macro_error()"
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
})
|
|
|
|
|
|
|
|
if macroError != nil {
|
|
|
|
return "", macroError
|
|
|
|
}
|
|
|
|
|
|
|
|
return sql, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func replaceAllStringSubmatchFunc(re *regexp.Regexp, str string, repl func([]string) string) string {
|
|
|
|
result := ""
|
|
|
|
lastIndex := 0
|
|
|
|
|
|
|
|
for _, v := range re.FindAllSubmatchIndex([]byte(str), -1) {
|
|
|
|
groups := []string{}
|
|
|
|
for i := 0; i < len(v); i += 2 {
|
|
|
|
groups = append(groups, str[v[i]:v[i+1]])
|
|
|
|
}
|
|
|
|
|
|
|
|
result += str[lastIndex:v[0]] + repl(groups)
|
|
|
|
lastIndex = v[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return result + str[lastIndex:]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MsSqlMacroEngine) evaluateMacro(name string, args []string) (string, error) {
|
|
|
|
switch name {
|
|
|
|
case "__time":
|
|
|
|
if len(args) == 0 {
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
}
|
2017-12-12 14:43:24 -06:00
|
|
|
return fmt.Sprintf("%s AS time", args[0]), nil
|
|
|
|
case "__utcTime":
|
|
|
|
if len(args) == 0 {
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("DATEADD(second, DATEDIFF(second,GETDATE(),GETUTCDATE()), %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("DATEDIFF(second, {d '1970-01-01'}, DATEADD(second, DATEDIFF(second,GETDATE(),GETUTCDATE()), %s) ) AS time", args[0]), nil
|
2017-12-02 05:40:12 -06:00
|
|
|
case "__timeFilter":
|
|
|
|
if len(args) == 0 {
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s >= DATEADD(s, %d+DATEDIFF(second,GETUTCDATE(),GETDATE()), '1970-01-01') AND %s <= DATEADD(s, %d+DATEDIFF(second,GETUTCDATE(),GETDATE()), '1970-01-01')", args[0], uint64(m.TimeRange.GetFromAsMsEpoch()/1000), args[0], uint64(m.TimeRange.GetToAsMsEpoch()/1000)), nil
|
|
|
|
case "__timeFrom":
|
|
|
|
return fmt.Sprintf("DATEADD(second, %d+DATEDIFF(second,GETUTCDATE(),GETDATE()), '1970-01-01')", uint64(m.TimeRange.GetFromAsMsEpoch()/1000)), nil
|
|
|
|
case "__timeTo":
|
|
|
|
return fmt.Sprintf("DATEADD(second, %d+DATEDIFF(second,GETUTCDATE(),GETDATE()), '1970-01-01')", uint64(m.TimeRange.GetToAsMsEpoch()/1000)), nil
|
|
|
|
case "__unixEpochFilter":
|
|
|
|
if len(args) == 0 {
|
|
|
|
return "", fmt.Errorf("missing time column argument for macro %v", name)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], uint64(m.TimeRange.GetFromAsMsEpoch()/1000), args[0], uint64(m.TimeRange.GetToAsMsEpoch()/1000)), nil
|
|
|
|
case "__unixEpochFrom":
|
|
|
|
return fmt.Sprintf("%d", uint64(m.TimeRange.GetFromAsMsEpoch()/1000)), nil
|
|
|
|
case "__unixEpochTo":
|
|
|
|
return fmt.Sprintf("%d", uint64(m.TimeRange.GetToAsMsEpoch()/1000)), nil
|
|
|
|
default:
|
|
|
|
return "", fmt.Errorf("Unknown macro %v", name)
|
|
|
|
}
|
|
|
|
}
|