2017-04-19 05:43:09 -07:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2016-12-24 16:40:28 -08:00
|
|
|
package labels
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MatchType is an enum for label matching types.
|
|
|
|
type MatchType int
|
|
|
|
|
|
|
|
// Possible MatchTypes.
|
|
|
|
const (
|
|
|
|
MatchEqual MatchType = iota
|
|
|
|
MatchNotEqual
|
|
|
|
MatchRegexp
|
|
|
|
MatchNotRegexp
|
|
|
|
)
|
|
|
|
|
|
|
|
func (m MatchType) String() string {
|
|
|
|
typeToStr := map[MatchType]string{
|
|
|
|
MatchEqual: "=",
|
|
|
|
MatchNotEqual: "!=",
|
|
|
|
MatchRegexp: "=~",
|
|
|
|
MatchNotRegexp: "!~",
|
|
|
|
}
|
|
|
|
if str, ok := typeToStr[m]; ok {
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
panic("unknown match type")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Matcher models the matching of a label.
|
|
|
|
type Matcher struct {
|
|
|
|
Type MatchType
|
|
|
|
Name string
|
|
|
|
Value string
|
|
|
|
|
|
|
|
re *regexp.Regexp
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMatcher returns a matcher object.
|
|
|
|
func NewMatcher(t MatchType, n, v string) (*Matcher, error) {
|
|
|
|
m := &Matcher{
|
|
|
|
Type: t,
|
|
|
|
Name: n,
|
|
|
|
Value: v,
|
|
|
|
}
|
|
|
|
if t == MatchRegexp || t == MatchNotRegexp {
|
2017-10-10 10:10:21 -07:00
|
|
|
re, err := regexp.Compile("^(?:" + v + ")$")
|
2016-12-24 16:40:28 -08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m.re = re
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Matcher) String() string {
|
|
|
|
return fmt.Sprintf("%s%s%q", m.Name, m.Type, m.Value)
|
|
|
|
}
|
2016-12-25 02:34:22 -08:00
|
|
|
|
|
|
|
// Matches returns whether the matcher matches the given string value.
|
|
|
|
func (m *Matcher) Matches(s string) bool {
|
|
|
|
switch m.Type {
|
|
|
|
case MatchEqual:
|
|
|
|
return s == m.Value
|
|
|
|
case MatchNotEqual:
|
|
|
|
return s != m.Value
|
|
|
|
case MatchRegexp:
|
|
|
|
return m.re.MatchString(s)
|
|
|
|
case MatchNotRegexp:
|
|
|
|
return !m.re.MatchString(s)
|
|
|
|
}
|
|
|
|
panic("labels.Matcher.Matches: invalid match type")
|
|
|
|
}
|