2015-03-30 09:12:51 -07:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package promql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
2015-04-29 02:36:41 -07:00
|
|
|
"strings"
|
2015-03-30 09:12:51 -07:00
|
|
|
"time"
|
|
|
|
|
2015-10-03 01:21:43 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2015-08-02 04:37:42 -07:00
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
"github.com/prometheus/prometheus/storage/metric"
|
2015-05-29 04:30:30 -07:00
|
|
|
"github.com/prometheus/prometheus/util/strutil"
|
2015-03-30 09:12:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type parser struct {
|
|
|
|
lex *lexer
|
|
|
|
token [3]item
|
|
|
|
peekCount int
|
|
|
|
}
|
|
|
|
|
2015-04-29 02:36:41 -07:00
|
|
|
// ParseErr wraps a parsing error with line and position context.
|
|
|
|
// If the parsing input was a single line, line will be 0 and omitted
|
|
|
|
// from the error string.
|
|
|
|
type ParseErr struct {
|
|
|
|
Line, Pos int
|
|
|
|
Err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ParseErr) Error() string {
|
|
|
|
if e.Line == 0 {
|
2015-09-30 12:27:08 -07:00
|
|
|
return fmt.Sprintf("parse error at char %d: %s", e.Pos, e.Err)
|
2015-04-29 02:36:41 -07:00
|
|
|
}
|
2015-09-30 12:27:08 -07:00
|
|
|
return fmt.Sprintf("parse error at line %d, char %d: %s", e.Line, e.Pos, e.Err)
|
2015-04-29 02:36:41 -07:00
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// ParseStmts parses the input and returns the resulting statements or any ocurring error.
|
2015-04-29 02:36:41 -07:00
|
|
|
func ParseStmts(input string) (Statements, error) {
|
|
|
|
p := newParser(input)
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
stmts, err := p.parseStmts()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = p.typecheck(stmts)
|
|
|
|
return stmts, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseExpr returns the expression parsed from the input.
|
2015-04-29 02:36:41 -07:00
|
|
|
func ParseExpr(input string) (Expr, error) {
|
|
|
|
p := newParser(input)
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
expr, err := p.parseExpr()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = p.typecheck(expr)
|
|
|
|
return expr, err
|
|
|
|
}
|
|
|
|
|
2015-06-10 10:36:43 -07:00
|
|
|
// ParseMetric parses the input into a metric
|
2015-08-20 08:18:46 -07:00
|
|
|
func ParseMetric(input string) (m model.Metric, err error) {
|
2015-06-10 10:36:43 -07:00
|
|
|
p := newParser(input)
|
|
|
|
defer p.recover(&err)
|
|
|
|
|
|
|
|
m = p.metric()
|
|
|
|
if p.peek().typ != itemEOF {
|
|
|
|
p.errorf("could not parse remaining input %.15q...", p.lex.input[p.lex.lastPos:])
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseMetricSelector parses the provided textual metric selector into a list of
|
|
|
|
// label matchers.
|
|
|
|
func ParseMetricSelector(input string) (m metric.LabelMatchers, err error) {
|
|
|
|
p := newParser(input)
|
|
|
|
defer p.recover(&err)
|
|
|
|
|
|
|
|
name := ""
|
|
|
|
if t := p.peek().typ; t == itemMetricIdentifier || t == itemIdentifier {
|
|
|
|
name = p.next().val
|
|
|
|
}
|
|
|
|
vs := p.vectorSelector(name)
|
|
|
|
if p.peek().typ != itemEOF {
|
|
|
|
p.errorf("could not parse remaining input %.15q...", p.lex.input[p.lex.lastPos:])
|
|
|
|
}
|
|
|
|
return vs.LabelMatchers, nil
|
|
|
|
}
|
|
|
|
|
2015-05-11 05:04:53 -07:00
|
|
|
// parseSeriesDesc parses the description of a time series.
|
2015-08-20 08:18:46 -07:00
|
|
|
func parseSeriesDesc(input string) (model.Metric, []sequenceValue, error) {
|
2015-05-11 05:04:53 -07:00
|
|
|
p := newParser(input)
|
|
|
|
p.lex.seriesDesc = true
|
|
|
|
|
|
|
|
return p.parseSeriesDesc()
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// newParser returns a new parser.
|
2015-04-29 02:36:41 -07:00
|
|
|
func newParser(input string) *parser {
|
2015-03-30 09:12:51 -07:00
|
|
|
p := &parser{
|
2015-04-29 02:36:41 -07:00
|
|
|
lex: lex(input),
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseStmts parses a sequence of statements from the input.
|
|
|
|
func (p *parser) parseStmts() (stmts Statements, err error) {
|
|
|
|
defer p.recover(&err)
|
|
|
|
stmts = Statements{}
|
|
|
|
|
|
|
|
for p.peek().typ != itemEOF {
|
|
|
|
if p.peek().typ == itemComment {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
stmts = append(stmts, p.stmt())
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseExpr parses a single expression from the input.
|
|
|
|
func (p *parser) parseExpr() (expr Expr, err error) {
|
|
|
|
defer p.recover(&err)
|
|
|
|
|
|
|
|
for p.peek().typ != itemEOF {
|
|
|
|
if p.peek().typ == itemComment {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if expr != nil {
|
2015-04-29 07:35:18 -07:00
|
|
|
p.errorf("could not parse remaining input %.15q...", p.lex.input[p.lex.lastPos:])
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
expr = p.expr()
|
|
|
|
}
|
|
|
|
|
|
|
|
if expr == nil {
|
|
|
|
p.errorf("no expression found in input")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-12 04:41:57 -07:00
|
|
|
// sequenceValue is an omittable value in a sequence of time series values.
|
2015-05-11 05:04:53 -07:00
|
|
|
type sequenceValue struct {
|
2015-08-20 08:18:46 -07:00
|
|
|
value model.SampleValue
|
2015-05-11 05:04:53 -07:00
|
|
|
omitted bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v sequenceValue) String() string {
|
|
|
|
if v.omitted {
|
|
|
|
return "_"
|
|
|
|
}
|
|
|
|
return v.value.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseSeriesDesc parses a description of a time series into its metric and value sequence.
|
2015-08-20 08:18:46 -07:00
|
|
|
func (p *parser) parseSeriesDesc() (m model.Metric, vals []sequenceValue, err error) {
|
2015-05-11 05:04:53 -07:00
|
|
|
defer p.recover(&err)
|
|
|
|
|
2015-06-10 10:36:43 -07:00
|
|
|
m = p.metric()
|
2015-05-11 05:04:53 -07:00
|
|
|
|
|
|
|
const ctx = "series values"
|
|
|
|
for {
|
|
|
|
if p.peek().typ == itemEOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract blanks.
|
|
|
|
if p.peek().typ == itemBlank {
|
|
|
|
p.next()
|
|
|
|
times := uint64(1)
|
|
|
|
if p.peek().typ == itemTimes {
|
|
|
|
p.next()
|
|
|
|
times, err = strconv.ParseUint(p.expect(itemNumber, ctx).val, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
p.errorf("invalid repetition in %s: %s", ctx, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := uint64(0); i < times; i++ {
|
|
|
|
vals = append(vals, sequenceValue{omitted: true})
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract values.
|
|
|
|
sign := 1.0
|
|
|
|
if t := p.peek().typ; t == itemSUB || t == itemADD {
|
|
|
|
if p.next().typ == itemSUB {
|
|
|
|
sign = -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
k := sign * p.number(p.expect(itemNumber, ctx).val)
|
|
|
|
vals = append(vals, sequenceValue{
|
2015-08-20 08:18:46 -07:00
|
|
|
value: model.SampleValue(k),
|
2015-05-11 05:04:53 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
// If there are no offset repetitions specified, proceed with the next value.
|
|
|
|
if t := p.peek().typ; t == itemNumber || t == itemBlank {
|
|
|
|
continue
|
|
|
|
} else if t == itemEOF {
|
|
|
|
break
|
|
|
|
} else if t != itemADD && t != itemSUB {
|
|
|
|
p.errorf("expected next value or relative expansion in %s but got %s", ctx, t.desc())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expand the repeated offsets into values.
|
|
|
|
sign = 1.0
|
|
|
|
if p.next().typ == itemSUB {
|
|
|
|
sign = -1.0
|
|
|
|
}
|
|
|
|
offset := sign * p.number(p.expect(itemNumber, ctx).val)
|
|
|
|
p.expect(itemTimes, ctx)
|
|
|
|
|
|
|
|
times, err := strconv.ParseUint(p.expect(itemNumber, ctx).val, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
p.errorf("invalid repetition in %s: %s", ctx, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := uint64(0); i < times; i++ {
|
|
|
|
k += offset
|
|
|
|
vals = append(vals, sequenceValue{
|
2015-08-20 08:18:46 -07:00
|
|
|
value: model.SampleValue(k),
|
2015-05-11 05:04:53 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return m, vals, nil
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// typecheck checks correct typing of the parsed statements or expression.
|
|
|
|
func (p *parser) typecheck(node Node) (err error) {
|
|
|
|
defer p.recover(&err)
|
|
|
|
|
|
|
|
p.checkType(node)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// next returns the next token.
|
|
|
|
func (p *parser) next() item {
|
|
|
|
if p.peekCount > 0 {
|
|
|
|
p.peekCount--
|
|
|
|
} else {
|
|
|
|
t := p.lex.nextItem()
|
|
|
|
// Skip comments.
|
|
|
|
for t.typ == itemComment {
|
|
|
|
t = p.lex.nextItem()
|
|
|
|
}
|
|
|
|
p.token[0] = t
|
|
|
|
}
|
2015-04-29 07:35:18 -07:00
|
|
|
if p.token[p.peekCount].typ == itemError {
|
|
|
|
p.errorf("%s", p.token[p.peekCount].val)
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
return p.token[p.peekCount]
|
|
|
|
}
|
|
|
|
|
|
|
|
// peek returns but does not consume the next token.
|
|
|
|
func (p *parser) peek() item {
|
|
|
|
if p.peekCount > 0 {
|
|
|
|
return p.token[p.peekCount-1]
|
|
|
|
}
|
|
|
|
p.peekCount = 1
|
|
|
|
|
|
|
|
t := p.lex.nextItem()
|
|
|
|
// Skip comments.
|
|
|
|
for t.typ == itemComment {
|
|
|
|
t = p.lex.nextItem()
|
|
|
|
}
|
|
|
|
p.token[0] = t
|
|
|
|
return p.token[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// backup backs the input stream up one token.
|
|
|
|
func (p *parser) backup() {
|
|
|
|
p.peekCount++
|
|
|
|
}
|
|
|
|
|
|
|
|
// errorf formats the error and terminates processing.
|
|
|
|
func (p *parser) errorf(format string, args ...interface{}) {
|
2015-04-29 02:36:41 -07:00
|
|
|
p.error(fmt.Errorf(format, args...))
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// error terminates processing.
|
|
|
|
func (p *parser) error(err error) {
|
2015-04-29 02:36:41 -07:00
|
|
|
perr := &ParseErr{
|
|
|
|
Line: p.lex.lineNumber(),
|
|
|
|
Pos: p.lex.linePosition(),
|
|
|
|
Err: err,
|
|
|
|
}
|
|
|
|
if strings.Count(strings.TrimSpace(p.lex.input), "\n") == 0 {
|
|
|
|
perr.Line = 0
|
|
|
|
}
|
|
|
|
panic(perr)
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// expect consumes the next token and guarantees it has the required type.
|
2015-04-29 07:35:18 -07:00
|
|
|
func (p *parser) expect(exp itemType, context string) item {
|
2015-03-30 09:12:51 -07:00
|
|
|
token := p.next()
|
2015-04-29 07:35:18 -07:00
|
|
|
if token.typ != exp {
|
|
|
|
p.errorf("unexpected %s in %s, expected %s", token.desc(), context, exp.desc())
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
return token
|
|
|
|
}
|
|
|
|
|
|
|
|
// expectOneOf consumes the next token and guarantees it has one of the required types.
|
2015-04-29 07:35:18 -07:00
|
|
|
func (p *parser) expectOneOf(exp1, exp2 itemType, context string) item {
|
2015-03-30 09:12:51 -07:00
|
|
|
token := p.next()
|
2015-04-29 07:35:18 -07:00
|
|
|
if token.typ != exp1 && token.typ != exp2 {
|
|
|
|
p.errorf("unexpected %s in %s, expected %s or %s", token.desc(), context, exp1.desc(), exp2.desc())
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
return token
|
|
|
|
}
|
|
|
|
|
2015-08-03 03:53:31 -07:00
|
|
|
var errUnexpected = fmt.Errorf("unexpected error")
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// recover is the handler that turns panics into returns from the top level of Parse.
|
|
|
|
func (p *parser) recover(errp *error) {
|
|
|
|
e := recover()
|
|
|
|
if e != nil {
|
|
|
|
if _, ok := e.(runtime.Error); ok {
|
2015-08-02 04:37:42 -07:00
|
|
|
// Print the stack trace but do not inhibit the running application.
|
|
|
|
buf := make([]byte, 64<<10)
|
|
|
|
buf = buf[:runtime.Stack(buf, false)]
|
|
|
|
|
|
|
|
log.Errorf("parser panic: %v\n%s", e, buf)
|
2015-08-03 03:53:31 -07:00
|
|
|
*errp = errUnexpected
|
2015-08-02 04:37:42 -07:00
|
|
|
} else {
|
|
|
|
*errp = e.(error)
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// stmt parses any statement.
|
|
|
|
//
|
|
|
|
// alertStatement | recordStatement
|
|
|
|
//
|
|
|
|
func (p *parser) stmt() Statement {
|
|
|
|
switch tok := p.peek(); tok.typ {
|
|
|
|
case itemAlert:
|
|
|
|
return p.alertStmt()
|
|
|
|
case itemIdentifier, itemMetricIdentifier:
|
|
|
|
return p.recordStmt()
|
|
|
|
}
|
|
|
|
p.errorf("no valid statement detected")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// alertStmt parses an alert rule.
|
|
|
|
//
|
2015-12-11 08:02:34 -08:00
|
|
|
// ALERT name IF expr [FOR duration]
|
2015-12-23 05:54:02 -08:00
|
|
|
// [LABELS label_set]
|
2015-12-11 08:02:34 -08:00
|
|
|
// [ANNOTATIONS label_set]
|
2015-03-30 09:12:51 -07:00
|
|
|
//
|
|
|
|
func (p *parser) alertStmt() *AlertStmt {
|
|
|
|
const ctx = "alert statement"
|
|
|
|
|
|
|
|
p.expect(itemAlert, ctx)
|
|
|
|
name := p.expect(itemIdentifier, ctx)
|
|
|
|
// Alerts require a vector typed expression.
|
|
|
|
p.expect(itemIf, ctx)
|
|
|
|
expr := p.expr()
|
|
|
|
|
|
|
|
// Optional for clause.
|
2016-01-11 02:39:22 -08:00
|
|
|
var (
|
|
|
|
duration time.Duration
|
|
|
|
err error
|
|
|
|
)
|
2015-03-30 09:12:51 -07:00
|
|
|
if p.peek().typ == itemFor {
|
|
|
|
p.next()
|
|
|
|
dur := p.expect(itemDuration, ctx)
|
|
|
|
duration, err = parseDuration(dur.val)
|
|
|
|
if err != nil {
|
|
|
|
p.error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-11 02:39:22 -08:00
|
|
|
// Accepting WITH instead of LABELS is temporary compatibility
|
|
|
|
// with the old alerting syntax.
|
|
|
|
var (
|
|
|
|
hasLabels bool
|
|
|
|
oldSyntax bool
|
|
|
|
labels = model.LabelSet{}
|
|
|
|
annotations = model.LabelSet{}
|
|
|
|
)
|
|
|
|
if t := p.peek().typ; t == itemLabels {
|
2015-12-23 05:54:02 -08:00
|
|
|
p.expect(itemLabels, ctx)
|
2016-01-11 02:39:22 -08:00
|
|
|
labels = p.labelSet()
|
|
|
|
hasLabels = true
|
|
|
|
} else if t == itemWith {
|
|
|
|
p.expect(itemWith, ctx)
|
|
|
|
labels = p.labelSet()
|
|
|
|
oldSyntax = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only allow old annotation syntax if new label syntax isn't used.
|
|
|
|
if !hasLabels {
|
|
|
|
Loop:
|
|
|
|
for {
|
|
|
|
switch p.next().typ {
|
|
|
|
case itemSummary:
|
|
|
|
annotations["summary"] = model.LabelValue(p.unquoteString(p.expect(itemString, ctx).val))
|
|
|
|
|
|
|
|
case itemDescription:
|
|
|
|
annotations["description"] = model.LabelValue(p.unquoteString(p.expect(itemString, ctx).val))
|
|
|
|
|
|
|
|
case itemRunbook:
|
|
|
|
annotations["runbook"] = model.LabelValue(p.unquoteString(p.expect(itemString, ctx).val))
|
|
|
|
|
|
|
|
default:
|
|
|
|
p.backup()
|
|
|
|
break Loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(annotations) > 0 {
|
|
|
|
oldSyntax = true
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
|
2016-01-11 02:39:22 -08:00
|
|
|
// Only allow new annotation syntax if WITH or old annotation
|
|
|
|
// syntax weren't used.
|
|
|
|
if !oldSyntax {
|
|
|
|
if p.peek().typ == itemAnnotations {
|
|
|
|
p.expect(itemAnnotations, ctx)
|
|
|
|
annotations = p.labelSet()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Warnf("Alerting rule with old syntax found. Support for this syntax will be removed with 0.18. Please update to the new syntax.")
|
2015-06-24 10:27:09 -07:00
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
return &AlertStmt{
|
|
|
|
Name: name.val,
|
|
|
|
Expr: expr,
|
|
|
|
Duration: duration,
|
2016-01-11 02:39:22 -08:00
|
|
|
Labels: labels,
|
2015-12-11 08:02:34 -08:00
|
|
|
Annotations: annotations,
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// recordStmt parses a recording rule.
|
|
|
|
func (p *parser) recordStmt() *RecordStmt {
|
|
|
|
const ctx = "record statement"
|
|
|
|
|
|
|
|
name := p.expectOneOf(itemIdentifier, itemMetricIdentifier, ctx).val
|
|
|
|
|
2015-08-20 08:18:46 -07:00
|
|
|
var lset model.LabelSet
|
2015-03-30 09:12:51 -07:00
|
|
|
if p.peek().typ == itemLeftBrace {
|
|
|
|
lset = p.labelSet()
|
|
|
|
}
|
|
|
|
|
|
|
|
p.expect(itemAssign, ctx)
|
|
|
|
expr := p.expr()
|
|
|
|
|
|
|
|
return &RecordStmt{
|
|
|
|
Name: name,
|
|
|
|
Labels: lset,
|
|
|
|
Expr: expr,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// expr parses any expression.
|
|
|
|
func (p *parser) expr() Expr {
|
|
|
|
// Parse the starting expression.
|
|
|
|
expr := p.unaryExpr()
|
|
|
|
|
|
|
|
// Loop through the operations and construct a binary operation tree based
|
|
|
|
// on the operators' precedence.
|
|
|
|
for {
|
|
|
|
// If the next token is not an operator the expression is done.
|
|
|
|
op := p.peek().typ
|
|
|
|
if !op.isOperator() {
|
|
|
|
return expr
|
|
|
|
}
|
|
|
|
p.next() // Consume operator.
|
|
|
|
|
|
|
|
// Parse optional operator matching options. Its validity
|
|
|
|
// is checked in the type-checking stage.
|
|
|
|
vecMatching := &VectorMatching{
|
|
|
|
Card: CardOneToOne,
|
|
|
|
}
|
|
|
|
if op == itemLAND || op == itemLOR {
|
|
|
|
vecMatching.Card = CardManyToMany
|
|
|
|
}
|
|
|
|
|
2015-09-02 06:51:44 -07:00
|
|
|
returnBool := false
|
|
|
|
// Parse bool modifier.
|
|
|
|
if p.peek().typ == itemBool {
|
2015-10-10 08:19:14 -07:00
|
|
|
if !op.isComparisonOperator() {
|
2015-09-02 06:51:44 -07:00
|
|
|
p.errorf("bool modifier can only be used on comparison operators")
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
returnBool = true
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// Parse ON clause.
|
|
|
|
if p.peek().typ == itemOn {
|
|
|
|
p.next()
|
|
|
|
vecMatching.On = p.labels()
|
|
|
|
|
|
|
|
// Parse grouping.
|
|
|
|
if t := p.peek().typ; t == itemGroupLeft {
|
|
|
|
p.next()
|
|
|
|
vecMatching.Card = CardManyToOne
|
|
|
|
vecMatching.Include = p.labels()
|
|
|
|
} else if t == itemGroupRight {
|
|
|
|
p.next()
|
|
|
|
vecMatching.Card = CardOneToMany
|
|
|
|
vecMatching.Include = p.labels()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ln := range vecMatching.On {
|
|
|
|
for _, ln2 := range vecMatching.Include {
|
|
|
|
if ln == ln2 {
|
|
|
|
p.errorf("label %q must not occur in ON and INCLUDE clause at once", ln)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the next operand.
|
|
|
|
rhs := p.unaryExpr()
|
|
|
|
|
|
|
|
// Assign the new root based on the precendence of the LHS and RHS operators.
|
|
|
|
if lhs, ok := expr.(*BinaryExpr); ok && lhs.Op.precedence() < op.precedence() {
|
|
|
|
expr = &BinaryExpr{
|
|
|
|
Op: lhs.Op,
|
|
|
|
LHS: lhs.LHS,
|
|
|
|
RHS: &BinaryExpr{
|
|
|
|
Op: op,
|
|
|
|
LHS: lhs.RHS,
|
|
|
|
RHS: rhs,
|
|
|
|
VectorMatching: vecMatching,
|
2015-09-02 06:51:44 -07:00
|
|
|
ReturnBool: returnBool,
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
VectorMatching: lhs.VectorMatching,
|
|
|
|
}
|
2015-10-10 08:19:14 -07:00
|
|
|
if op.isComparisonOperator() && !returnBool && rhs.Type() == model.ValScalar && lhs.RHS.Type() == model.ValScalar {
|
|
|
|
p.errorf("comparisons between scalars must use BOOL modifier")
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
} else {
|
|
|
|
expr = &BinaryExpr{
|
|
|
|
Op: op,
|
|
|
|
LHS: expr,
|
|
|
|
RHS: rhs,
|
|
|
|
VectorMatching: vecMatching,
|
2015-09-02 06:51:44 -07:00
|
|
|
ReturnBool: returnBool,
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
2015-10-10 08:19:14 -07:00
|
|
|
if op.isComparisonOperator() && !returnBool && rhs.Type() == model.ValScalar && expr.Type() == model.ValScalar {
|
|
|
|
p.errorf("comparisons between scalars must use BOOL modifier")
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
2015-10-10 08:19:14 -07:00
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// unaryExpr parses a unary expression.
|
|
|
|
//
|
|
|
|
// <vector_selector> | <matrix_selector> | (+|-) <number_literal> | '(' <expr> ')'
|
|
|
|
//
|
|
|
|
func (p *parser) unaryExpr() Expr {
|
|
|
|
switch t := p.peek(); t.typ {
|
|
|
|
case itemADD, itemSUB:
|
|
|
|
p.next()
|
|
|
|
e := p.unaryExpr()
|
2015-08-03 03:28:40 -07:00
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// Simplify unary expressions for number literals.
|
|
|
|
if nl, ok := e.(*NumberLiteral); ok {
|
|
|
|
if t.typ == itemSUB {
|
|
|
|
nl.Val *= -1
|
|
|
|
}
|
|
|
|
return nl
|
|
|
|
}
|
|
|
|
return &UnaryExpr{Op: t.typ, Expr: e}
|
|
|
|
|
|
|
|
case itemLeftParen:
|
|
|
|
p.next()
|
|
|
|
e := p.expr()
|
|
|
|
p.expect(itemRightParen, "paren expression")
|
|
|
|
|
|
|
|
return &ParenExpr{Expr: e}
|
|
|
|
}
|
|
|
|
e := p.primaryExpr()
|
|
|
|
|
|
|
|
// Expression might be followed by a range selector.
|
|
|
|
if p.peek().typ == itemLeftBracket {
|
|
|
|
vs, ok := e.(*VectorSelector)
|
|
|
|
if !ok {
|
|
|
|
p.errorf("range specification must be preceded by a metric selector, but follows a %T instead", e)
|
|
|
|
}
|
|
|
|
e = p.rangeSelector(vs)
|
|
|
|
}
|
2016-01-24 19:50:46 -08:00
|
|
|
|
|
|
|
// Parse optional offset.
|
|
|
|
if p.peek().typ == itemOffset {
|
|
|
|
offset := p.offset()
|
|
|
|
|
|
|
|
switch s := e.(type) {
|
|
|
|
case *VectorSelector:
|
|
|
|
s.Offset = offset
|
|
|
|
case *MatrixSelector:
|
|
|
|
s.Offset = offset
|
|
|
|
default:
|
2016-01-25 10:22:37 -08:00
|
|
|
p.errorf("offset modifier must be preceded by an instant or range selector, but follows a %T instead", e)
|
2016-01-24 19:50:46 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
2016-01-25 10:22:37 -08:00
|
|
|
// rangeSelector parses a matrix (a.k.a. range) selector based on a given
|
|
|
|
// vector selector.
|
2015-03-30 09:12:51 -07:00
|
|
|
//
|
|
|
|
// <vector_selector> '[' <duration> ']'
|
|
|
|
//
|
|
|
|
func (p *parser) rangeSelector(vs *VectorSelector) *MatrixSelector {
|
2016-01-25 10:22:37 -08:00
|
|
|
const ctx = "range selector"
|
2015-03-30 09:12:51 -07:00
|
|
|
p.next()
|
|
|
|
|
2016-01-24 19:50:46 -08:00
|
|
|
var erange time.Duration
|
2015-03-30 09:12:51 -07:00
|
|
|
var err error
|
|
|
|
|
|
|
|
erangeStr := p.expect(itemDuration, ctx).val
|
|
|
|
erange, err = parseDuration(erangeStr)
|
|
|
|
if err != nil {
|
|
|
|
p.error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
p.expect(itemRightBracket, ctx)
|
|
|
|
|
|
|
|
e := &MatrixSelector{
|
|
|
|
Name: vs.Name,
|
|
|
|
LabelMatchers: vs.LabelMatchers,
|
|
|
|
Range: erange,
|
|
|
|
}
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
2016-01-24 19:50:46 -08:00
|
|
|
// number parses a number.
|
2015-05-11 02:45:23 -07:00
|
|
|
func (p *parser) number(val string) float64 {
|
|
|
|
n, err := strconv.ParseInt(val, 0, 64)
|
|
|
|
f := float64(n)
|
|
|
|
if err != nil {
|
|
|
|
f, err = strconv.ParseFloat(val, 64)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
p.errorf("error parsing number: %s", err)
|
|
|
|
}
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// primaryExpr parses a primary expression.
|
|
|
|
//
|
|
|
|
// <metric_name> | <function_call> | <vector_aggregation> | <literal>
|
|
|
|
//
|
|
|
|
func (p *parser) primaryExpr() Expr {
|
|
|
|
switch t := p.next(); {
|
|
|
|
case t.typ == itemNumber:
|
2015-05-11 02:45:23 -07:00
|
|
|
f := p.number(t.val)
|
2015-08-20 08:18:46 -07:00
|
|
|
return &NumberLiteral{model.SampleValue(f)}
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
case t.typ == itemString:
|
2015-09-30 12:27:08 -07:00
|
|
|
return &StringLiteral{p.unquoteString(t.val)}
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
case t.typ == itemLeftBrace:
|
|
|
|
// Metric selector without metric name.
|
|
|
|
p.backup()
|
|
|
|
return p.vectorSelector("")
|
|
|
|
|
|
|
|
case t.typ == itemIdentifier:
|
|
|
|
// Check for function call.
|
|
|
|
if p.peek().typ == itemLeftParen {
|
|
|
|
return p.call(t.val)
|
|
|
|
}
|
|
|
|
fallthrough // Else metric selector.
|
|
|
|
|
|
|
|
case t.typ == itemMetricIdentifier:
|
|
|
|
return p.vectorSelector(t.val)
|
|
|
|
|
|
|
|
case t.typ.isAggregator():
|
|
|
|
p.backup()
|
|
|
|
return p.aggrExpr()
|
2015-08-03 03:28:40 -07:00
|
|
|
|
|
|
|
default:
|
|
|
|
p.errorf("no valid expression found")
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// labels parses a list of labelnames.
|
|
|
|
//
|
|
|
|
// '(' <label_name>, ... ')'
|
|
|
|
//
|
2015-08-20 08:18:46 -07:00
|
|
|
func (p *parser) labels() model.LabelNames {
|
2015-03-30 09:12:51 -07:00
|
|
|
const ctx = "grouping opts"
|
|
|
|
|
|
|
|
p.expect(itemLeftParen, ctx)
|
|
|
|
|
2015-08-20 08:18:46 -07:00
|
|
|
labels := model.LabelNames{}
|
2015-03-30 09:12:51 -07:00
|
|
|
for {
|
|
|
|
id := p.expect(itemIdentifier, ctx)
|
2015-08-20 08:18:46 -07:00
|
|
|
labels = append(labels, model.LabelName(id.val))
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
if p.peek().typ != itemComma {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.expect(itemRightParen, ctx)
|
|
|
|
|
|
|
|
return labels
|
|
|
|
}
|
|
|
|
|
|
|
|
// aggrExpr parses an aggregation expression.
|
|
|
|
//
|
2015-06-12 05:21:01 -07:00
|
|
|
// <aggr_op> (<vector_expr>) [by <labels>] [keep_common]
|
|
|
|
// <aggr_op> [by <labels>] [keep_common] (<vector_expr>)
|
2015-03-30 09:12:51 -07:00
|
|
|
//
|
|
|
|
func (p *parser) aggrExpr() *AggregateExpr {
|
|
|
|
const ctx = "aggregation"
|
|
|
|
|
|
|
|
agop := p.next()
|
|
|
|
if !agop.typ.isAggregator() {
|
2015-04-29 07:35:18 -07:00
|
|
|
p.errorf("expected aggregation operator but got %s", agop)
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
2015-08-20 08:18:46 -07:00
|
|
|
var grouping model.LabelNames
|
2015-03-30 09:12:51 -07:00
|
|
|
var keepExtra bool
|
|
|
|
|
|
|
|
modifiersFirst := false
|
|
|
|
|
|
|
|
if p.peek().typ == itemBy {
|
|
|
|
p.next()
|
|
|
|
grouping = p.labels()
|
|
|
|
modifiersFirst = true
|
|
|
|
}
|
2015-06-12 05:21:01 -07:00
|
|
|
if p.peek().typ == itemKeepCommon {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.next()
|
|
|
|
keepExtra = true
|
|
|
|
modifiersFirst = true
|
|
|
|
}
|
|
|
|
|
|
|
|
p.expect(itemLeftParen, ctx)
|
|
|
|
e := p.expr()
|
|
|
|
p.expect(itemRightParen, ctx)
|
|
|
|
|
|
|
|
if !modifiersFirst {
|
|
|
|
if p.peek().typ == itemBy {
|
|
|
|
if len(grouping) > 0 {
|
|
|
|
p.errorf("aggregation must only contain one grouping clause")
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
grouping = p.labels()
|
|
|
|
}
|
2015-06-12 05:21:01 -07:00
|
|
|
if p.peek().typ == itemKeepCommon {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.next()
|
|
|
|
keepExtra = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &AggregateExpr{
|
|
|
|
Op: agop.typ,
|
|
|
|
Expr: e,
|
|
|
|
Grouping: grouping,
|
|
|
|
KeepExtraLabels: keepExtra,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// call parses a function call.
|
|
|
|
//
|
|
|
|
// <func_name> '(' [ <arg_expr>, ...] ')'
|
|
|
|
//
|
|
|
|
func (p *parser) call(name string) *Call {
|
|
|
|
const ctx = "function call"
|
|
|
|
|
2015-03-30 10:13:36 -07:00
|
|
|
fn, exist := getFunction(name)
|
2015-03-30 09:12:51 -07:00
|
|
|
if !exist {
|
|
|
|
p.errorf("unknown function with name %q", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
p.expect(itemLeftParen, ctx)
|
|
|
|
// Might be call without args.
|
|
|
|
if p.peek().typ == itemRightParen {
|
|
|
|
p.next() // Consume.
|
|
|
|
return &Call{fn, nil}
|
|
|
|
}
|
|
|
|
|
|
|
|
var args []Expr
|
|
|
|
for {
|
|
|
|
e := p.expr()
|
|
|
|
args = append(args, e)
|
|
|
|
|
|
|
|
// Terminate if no more arguments.
|
|
|
|
if p.peek().typ != itemComma {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call must be closed.
|
|
|
|
p.expect(itemRightParen, ctx)
|
|
|
|
|
|
|
|
return &Call{Func: fn, Args: args}
|
|
|
|
}
|
|
|
|
|
|
|
|
// labelSet parses a set of label matchers
|
|
|
|
//
|
|
|
|
// '{' [ <labelname> '=' <match_string>, ... ] '}'
|
|
|
|
//
|
2015-08-20 08:18:46 -07:00
|
|
|
func (p *parser) labelSet() model.LabelSet {
|
|
|
|
set := model.LabelSet{}
|
2015-03-30 09:12:51 -07:00
|
|
|
for _, lm := range p.labelMatchers(itemEQL) {
|
|
|
|
set[lm.Name] = lm.Value
|
|
|
|
}
|
|
|
|
return set
|
|
|
|
}
|
|
|
|
|
|
|
|
// labelMatchers parses a set of label matchers.
|
|
|
|
//
|
|
|
|
// '{' [ <labelname> <match_op> <match_string>, ... ] '}'
|
|
|
|
//
|
|
|
|
func (p *parser) labelMatchers(operators ...itemType) metric.LabelMatchers {
|
|
|
|
const ctx = "label matching"
|
|
|
|
|
|
|
|
matchers := metric.LabelMatchers{}
|
|
|
|
|
|
|
|
p.expect(itemLeftBrace, ctx)
|
|
|
|
|
|
|
|
// Check if no matchers are provided.
|
|
|
|
if p.peek().typ == itemRightBrace {
|
|
|
|
p.next()
|
|
|
|
return matchers
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
label := p.expect(itemIdentifier, ctx)
|
|
|
|
|
|
|
|
op := p.next().typ
|
|
|
|
if !op.isOperator() {
|
2015-04-29 07:35:18 -07:00
|
|
|
p.errorf("expected label matching operator but got %s", op)
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
var validOp = false
|
|
|
|
for _, allowedOp := range operators {
|
|
|
|
if op == allowedOp {
|
|
|
|
validOp = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !validOp {
|
|
|
|
p.errorf("operator must be one of %q, is %q", operators, op)
|
|
|
|
}
|
|
|
|
|
2015-09-30 12:27:08 -07:00
|
|
|
val := p.unquoteString(p.expect(itemString, ctx).val)
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
// Map the item to the respective match type.
|
|
|
|
var matchType metric.MatchType
|
|
|
|
switch op {
|
|
|
|
case itemEQL:
|
|
|
|
matchType = metric.Equal
|
|
|
|
case itemNEQ:
|
|
|
|
matchType = metric.NotEqual
|
|
|
|
case itemEQLRegex:
|
|
|
|
matchType = metric.RegexMatch
|
|
|
|
case itemNEQRegex:
|
|
|
|
matchType = metric.RegexNoMatch
|
|
|
|
default:
|
|
|
|
p.errorf("item %q is not a metric match type", op)
|
|
|
|
}
|
|
|
|
|
|
|
|
m, err := metric.NewLabelMatcher(
|
|
|
|
matchType,
|
2015-08-20 08:18:46 -07:00
|
|
|
model.LabelName(label.val),
|
|
|
|
model.LabelValue(val),
|
2015-03-30 09:12:51 -07:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
p.error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
matchers = append(matchers, m)
|
|
|
|
|
2015-12-11 08:02:34 -08:00
|
|
|
if p.peek().typ == itemIdentifier {
|
|
|
|
p.errorf("missing comma before next identifier %q", p.peek().val)
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
// Terminate list if last matcher.
|
|
|
|
if p.peek().typ != itemComma {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.next()
|
2015-12-11 08:02:34 -08:00
|
|
|
|
|
|
|
// Allow comma after each item in a multi-line listing.
|
|
|
|
if p.peek().typ == itemRightBrace {
|
|
|
|
break
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
p.expect(itemRightBrace, ctx)
|
|
|
|
|
|
|
|
return matchers
|
|
|
|
}
|
|
|
|
|
2015-06-10 10:36:43 -07:00
|
|
|
// metric parses a metric.
|
|
|
|
//
|
|
|
|
// <label_set>
|
|
|
|
// <metric_identifier> [<label_set>]
|
|
|
|
//
|
2015-08-20 08:18:46 -07:00
|
|
|
func (p *parser) metric() model.Metric {
|
2015-06-10 10:36:43 -07:00
|
|
|
name := ""
|
2015-08-20 08:18:46 -07:00
|
|
|
m := model.Metric{}
|
2015-06-10 10:36:43 -07:00
|
|
|
|
|
|
|
t := p.peek().typ
|
|
|
|
if t == itemIdentifier || t == itemMetricIdentifier {
|
|
|
|
name = p.next().val
|
|
|
|
t = p.peek().typ
|
|
|
|
}
|
|
|
|
if t != itemLeftBrace && name == "" {
|
|
|
|
p.errorf("missing metric name or metric selector")
|
|
|
|
}
|
|
|
|
if t == itemLeftBrace {
|
2015-08-20 08:18:46 -07:00
|
|
|
m = model.Metric(p.labelSet())
|
2015-06-10 10:36:43 -07:00
|
|
|
}
|
|
|
|
if name != "" {
|
2015-08-20 08:18:46 -07:00
|
|
|
m[model.MetricNameLabel] = model.LabelValue(name)
|
2015-06-10 10:36:43 -07:00
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2016-01-24 19:50:46 -08:00
|
|
|
// offset parses an offset modifier.
|
2015-03-30 09:12:51 -07:00
|
|
|
//
|
2016-01-24 19:50:46 -08:00
|
|
|
// offset <duration>
|
|
|
|
//
|
|
|
|
func (p *parser) offset() time.Duration {
|
|
|
|
const ctx = "offset"
|
|
|
|
|
|
|
|
p.next()
|
|
|
|
offi := p.expect(itemDuration, ctx)
|
|
|
|
|
|
|
|
offset, err := parseDuration(offi.val)
|
|
|
|
if err != nil {
|
|
|
|
p.error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset
|
|
|
|
}
|
|
|
|
|
2016-01-25 10:22:37 -08:00
|
|
|
// vectorSelector parses a new (instant) vector selector.
|
2016-01-24 19:50:46 -08:00
|
|
|
//
|
|
|
|
// <metric_identifier> [<label_matchers>]
|
|
|
|
// [<metric_identifier>] <label_matchers>
|
2015-03-30 09:12:51 -07:00
|
|
|
//
|
|
|
|
func (p *parser) vectorSelector(name string) *VectorSelector {
|
|
|
|
const ctx = "metric selector"
|
|
|
|
|
|
|
|
var matchers metric.LabelMatchers
|
|
|
|
// Parse label matching if any.
|
|
|
|
if t := p.peek(); t.typ == itemLeftBrace {
|
|
|
|
matchers = p.labelMatchers(itemEQL, itemNEQ, itemEQLRegex, itemNEQRegex)
|
|
|
|
}
|
|
|
|
// Metric name must not be set in the label matchers and before at the same time.
|
|
|
|
if name != "" {
|
|
|
|
for _, m := range matchers {
|
2015-08-20 08:18:46 -07:00
|
|
|
if m.Name == model.MetricNameLabel {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.errorf("metric name must not be set twice: %q or %q", name, m.Value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Set name label matching.
|
|
|
|
matchers = append(matchers, &metric.LabelMatcher{
|
|
|
|
Type: metric.Equal,
|
2015-08-20 08:18:46 -07:00
|
|
|
Name: model.MetricNameLabel,
|
|
|
|
Value: model.LabelValue(name),
|
2015-03-30 09:12:51 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(matchers) == 0 {
|
|
|
|
p.errorf("vector selector must contain label matchers or metric name")
|
|
|
|
}
|
2015-06-15 09:34:41 -07:00
|
|
|
// A vector selector must contain at least one non-empty matcher to prevent
|
|
|
|
// implicit selection of all metrics (e.g. by a typo).
|
|
|
|
notEmpty := false
|
|
|
|
for _, lm := range matchers {
|
|
|
|
// Matching changes the inner state of the regex and causes reflect.DeepEqual
|
|
|
|
// to return false, which break tests.
|
|
|
|
// Thus, we create a new label matcher for this testing.
|
|
|
|
lm, err := metric.NewLabelMatcher(lm.Type, lm.Name, lm.Value)
|
|
|
|
if err != nil {
|
|
|
|
p.error(err)
|
|
|
|
}
|
|
|
|
if !lm.Match("") {
|
|
|
|
notEmpty = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !notEmpty {
|
|
|
|
p.errorf("vector selector must contain at least one non-empty matcher")
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
return &VectorSelector{
|
|
|
|
Name: name,
|
|
|
|
LabelMatchers: matchers,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// expectType checks the type of the node and raises an error if it
|
|
|
|
// is not of the expected type.
|
2015-08-24 09:04:41 -07:00
|
|
|
func (p *parser) expectType(node Node, want model.ValueType, context string) {
|
2015-03-30 09:12:51 -07:00
|
|
|
t := p.checkType(node)
|
|
|
|
if t != want {
|
|
|
|
p.errorf("expected type %s in %s, got %s", want, context, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check the types of the children of each node and raise an error
|
|
|
|
// if they do not form a valid node.
|
|
|
|
//
|
|
|
|
// Some of these checks are redundant as the the parsing stage does not allow
|
|
|
|
// them, but the costs are small and might reveal errors when making changes.
|
2015-08-24 09:04:41 -07:00
|
|
|
func (p *parser) checkType(node Node) (typ model.ValueType) {
|
2015-03-30 09:12:51 -07:00
|
|
|
// For expressions the type is determined by their Type function.
|
|
|
|
// Statements and lists do not have a type but are not invalid either.
|
|
|
|
switch n := node.(type) {
|
|
|
|
case Statements, Expressions, Statement:
|
2015-08-24 09:04:41 -07:00
|
|
|
typ = model.ValNone
|
2015-03-30 09:12:51 -07:00
|
|
|
case Expr:
|
|
|
|
typ = n.Type()
|
|
|
|
default:
|
|
|
|
p.errorf("unknown node type: %T", node)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recursively check correct typing for child nodes and raise
|
|
|
|
// errors in case of bad typing.
|
|
|
|
switch n := node.(type) {
|
|
|
|
case Statements:
|
|
|
|
for _, s := range n {
|
2015-08-24 09:04:41 -07:00
|
|
|
p.expectType(s, model.ValNone, "statement list")
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
case *AlertStmt:
|
2015-08-24 09:04:41 -07:00
|
|
|
p.expectType(n.Expr, model.ValVector, "alert statement")
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
case *EvalStmt:
|
|
|
|
ty := p.checkType(n.Expr)
|
2015-08-24 09:04:41 -07:00
|
|
|
if ty == model.ValNone {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.errorf("evaluation statement must have a valid expression type but got %s", ty)
|
|
|
|
}
|
|
|
|
|
|
|
|
case *RecordStmt:
|
2015-08-19 13:09:00 -07:00
|
|
|
ty := p.checkType(n.Expr)
|
2015-08-24 09:04:41 -07:00
|
|
|
if ty != model.ValVector && ty != model.ValScalar {
|
2015-08-19 13:09:00 -07:00
|
|
|
p.errorf("record statement must have a valid expression of type vector or scalar but got %s", ty)
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
case Expressions:
|
|
|
|
for _, e := range n {
|
|
|
|
ty := p.checkType(e)
|
2015-08-24 09:04:41 -07:00
|
|
|
if ty == model.ValNone {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.errorf("expression must have a valid expression type but got %s", ty)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case *AggregateExpr:
|
|
|
|
if !n.Op.isAggregator() {
|
|
|
|
p.errorf("aggregation operator expected in aggregation expression but got %q", n.Op)
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
p.expectType(n.Expr, model.ValVector, "aggregation expression")
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
case *BinaryExpr:
|
|
|
|
lt := p.checkType(n.LHS)
|
|
|
|
rt := p.checkType(n.RHS)
|
|
|
|
|
|
|
|
if !n.Op.isOperator() {
|
|
|
|
p.errorf("only logical and arithmetic operators allowed in binary expression, got %q", n.Op)
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
if (lt != model.ValScalar && lt != model.ValVector) || (rt != model.ValScalar && rt != model.ValVector) {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.errorf("binary expression must contain only scalar and vector types")
|
|
|
|
}
|
|
|
|
|
2015-08-24 09:04:41 -07:00
|
|
|
if (lt != model.ValVector || rt != model.ValVector) && n.VectorMatching != nil {
|
2015-03-30 09:12:51 -07:00
|
|
|
if len(n.VectorMatching.On) > 0 {
|
|
|
|
p.errorf("vector matching only allowed between vectors")
|
|
|
|
}
|
|
|
|
n.VectorMatching = nil
|
|
|
|
} else {
|
|
|
|
// Both operands are vectors.
|
|
|
|
if n.Op == itemLAND || n.Op == itemLOR {
|
|
|
|
if n.VectorMatching.Card == CardOneToMany || n.VectorMatching.Card == CardManyToOne {
|
|
|
|
p.errorf("no grouping allowed for AND and OR operations")
|
|
|
|
}
|
|
|
|
if n.VectorMatching.Card != CardManyToMany {
|
|
|
|
p.errorf("AND and OR operations must always be many-to-many")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-24 09:04:41 -07:00
|
|
|
if (lt == model.ValScalar || rt == model.ValScalar) && (n.Op == itemLAND || n.Op == itemLOR) {
|
2015-03-30 09:12:51 -07:00
|
|
|
p.errorf("AND and OR not allowed in binary scalar expression")
|
|
|
|
}
|
|
|
|
|
|
|
|
case *Call:
|
|
|
|
nargs := len(n.Func.ArgTypes)
|
|
|
|
if na := nargs - n.Func.OptionalArgs; na > len(n.Args) {
|
2015-04-29 07:35:18 -07:00
|
|
|
p.errorf("expected at least %d argument(s) in call to %q, got %d", na, n.Func.Name, len(n.Args))
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
if nargs < len(n.Args) {
|
2015-04-29 07:35:18 -07:00
|
|
|
p.errorf("expected at most %d argument(s) in call to %q, got %d", nargs, n.Func.Name, len(n.Args))
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
for i, arg := range n.Args {
|
|
|
|
p.expectType(arg, n.Func.ArgTypes[i], fmt.Sprintf("call to function %q", n.Func.Name))
|
|
|
|
}
|
|
|
|
|
|
|
|
case *ParenExpr:
|
|
|
|
p.checkType(n.Expr)
|
|
|
|
|
|
|
|
case *UnaryExpr:
|
|
|
|
if n.Op != itemADD && n.Op != itemSUB {
|
|
|
|
p.errorf("only + and - operators allowed for unary expressions")
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
if t := p.checkType(n.Expr); t != model.ValScalar && t != model.ValVector {
|
2015-08-04 05:57:34 -07:00
|
|
|
p.errorf("unary expression only allowed on expressions of type scalar or vector, got %q", t)
|
|
|
|
}
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
case *NumberLiteral, *MatrixSelector, *StringLiteral, *VectorSelector:
|
|
|
|
// Nothing to do for terminals.
|
|
|
|
|
|
|
|
default:
|
|
|
|
p.errorf("unknown node type: %T", node)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-30 12:27:08 -07:00
|
|
|
func (p *parser) unquoteString(s string) string {
|
|
|
|
unquoted, err := strutil.Unquote(s)
|
|
|
|
if err != nil {
|
|
|
|
p.errorf("error unquoting string %q: %s", s, err)
|
|
|
|
}
|
|
|
|
return unquoted
|
|
|
|
}
|
|
|
|
|
2015-03-30 09:12:51 -07:00
|
|
|
func parseDuration(ds string) (time.Duration, error) {
|
2015-05-28 12:33:48 -07:00
|
|
|
dur, err := strutil.StringToDuration(ds)
|
2015-03-30 09:12:51 -07:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
if dur == 0 {
|
|
|
|
return 0, fmt.Errorf("duration must be greater than 0")
|
|
|
|
}
|
|
|
|
return dur, nil
|
|
|
|
}
|