-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmatch_noexpr.go
37 lines (32 loc) · 1.04 KB
/
match_noexpr.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//go:build noexprlang
package jsm
// StreamQueryExpression filters the stream using the expr expression language
// Using this option with a binary built with the `noexprlang` build tag will
// always return [ErrNoExprLangBuild].
func StreamQueryExpression(e string) StreamQueryOpt {
return func(q *streamQuery) error {
q.expression = e
return ErrNoExprLangBuild
}
}
func (q *streamQuery) matchExpression(streams []*Stream) ([]*Stream, error) {
if q.expression == "" {
return streams, nil
}
return nil, ErrNoExprLangBuild
}
// ConsumerQueryExpression filters the consumers using the expr expression language
// Using this option with a binary built with the `noexprlang` build tag will
// always return [ErrNoExprLangBuild].
func ConsumerQueryExpression(e string) ConsumerQueryOpt {
return func(q *consumerQuery) error {
q.expression = e
return ErrNoExprLangBuild
}
}
func (q *consumerQuery) matchExpression(consumers []*Consumer) ([]*Consumer, error) {
if q.expression == "" {
return consumers, nil
}
return nil, ErrNoExprLangBuild
}