2017-04-10 18:59:45 +00: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-21 08:39:01 +00:00
|
|
|
package labels
|
|
|
|
|
2017-07-21 08:37:52 +00:00
|
|
|
import (
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
)
|
2016-12-21 08:39:01 +00:00
|
|
|
|
|
|
|
// Selector holds constraints for matching against a label set.
|
|
|
|
type Selector []Matcher
|
|
|
|
|
|
|
|
// Matches returns whether the labels satisfy all matchers.
|
|
|
|
func (s Selector) Matches(labels Labels) bool {
|
|
|
|
for _, m := range s {
|
|
|
|
if v := labels.Get(m.Name()); !m.Matches(v) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Matcher specifies a constraint for the value of a label.
|
|
|
|
type Matcher interface {
|
|
|
|
// Name returns the label name the matcher should apply to.
|
|
|
|
Name() string
|
|
|
|
// Matches checks whether a value fulfills the constraints.
|
|
|
|
Matches(v string) bool
|
|
|
|
}
|
|
|
|
|
2017-03-19 16:05:01 +00:00
|
|
|
// EqualMatcher matches on equality.
|
2016-12-24 09:19:46 +00:00
|
|
|
type EqualMatcher struct {
|
2016-12-28 10:02:19 +00:00
|
|
|
name, value string
|
2016-12-21 08:39:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-19 16:05:01 +00:00
|
|
|
// Name implements Matcher interface.
|
|
|
|
func (m *EqualMatcher) Name() string { return m.name }
|
|
|
|
|
|
|
|
// Matches implements Matcher interface.
|
2016-12-28 10:02:19 +00:00
|
|
|
func (m *EqualMatcher) Matches(v string) bool { return v == m.value }
|
2016-12-21 08:39:01 +00:00
|
|
|
|
2017-04-05 12:14:30 +00:00
|
|
|
// Value returns the matched value.
|
|
|
|
func (m *EqualMatcher) Value() string { return m.value }
|
|
|
|
|
2016-12-21 08:39:01 +00:00
|
|
|
// NewEqualMatcher returns a new matcher matching an exact label value.
|
|
|
|
func NewEqualMatcher(name, value string) Matcher {
|
2016-12-28 10:02:19 +00:00
|
|
|
return &EqualMatcher{name: name, value: value}
|
2016-12-21 08:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type regexpMatcher struct {
|
|
|
|
name string
|
|
|
|
re *regexp.Regexp
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *regexpMatcher) Name() string { return m.name }
|
|
|
|
func (m *regexpMatcher) Matches(v string) bool { return m.re.MatchString(v) }
|
|
|
|
|
|
|
|
// NewRegexpMatcher returns a new matcher verifying that a value matches
|
|
|
|
// the regular expression pattern.
|
|
|
|
func NewRegexpMatcher(name, pattern string) (Matcher, error) {
|
|
|
|
re, err := regexp.Compile(pattern)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ®expMatcher{name: name, re: re}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// notMatcher inverts the matching result for a matcher.
|
|
|
|
type notMatcher struct {
|
|
|
|
Matcher
|
|
|
|
}
|
|
|
|
|
2016-12-28 10:02:19 +00:00
|
|
|
func (m *notMatcher) Matches(v string) bool { return !m.Matcher.Matches(v) }
|
2016-12-21 08:39:01 +00:00
|
|
|
|
|
|
|
// Not inverts the matcher's matching result.
|
|
|
|
func Not(m Matcher) Matcher {
|
|
|
|
return ¬Matcher{m}
|
|
|
|
}
|
2017-07-21 08:37:52 +00:00
|
|
|
|
|
|
|
// PrefixMatcher implements Matcher for labels which values matches prefix.
|
|
|
|
type PrefixMatcher struct {
|
|
|
|
name, prefix string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewPrefixMatcher returns new Matcher for label name matching prefix.
|
|
|
|
func NewPrefixMatcher(name, prefix string) Matcher {
|
|
|
|
return &PrefixMatcher{name: name, prefix: prefix}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name implements Matcher interface.
|
|
|
|
func (m *PrefixMatcher) Name() string { return m.name }
|
|
|
|
|
|
|
|
// Prefix returns matching prefix.
|
|
|
|
func (m *PrefixMatcher) Prefix() string { return m.prefix }
|
|
|
|
|
|
|
|
// Matches implements Matcher interface.
|
|
|
|
func (m *PrefixMatcher) Matches(v string) bool { return strings.HasPrefix(v, m.prefix) }
|