-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathstream_query.go
632 lines (528 loc) · 13.7 KB
/
stream_query.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
// Copyright 2022 The NATS 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 jsm
import (
"fmt"
"regexp"
"strconv"
"strings"
"time"
"github.com/expr-lang/expr"
"github.com/nats-io/jsm.go/api"
"gopkg.in/yaml.v3"
)
type streamMatcher func([]*Stream) ([]*Stream, error)
type streamQuery struct {
server *regexp.Regexp
cluster *regexp.Regexp
consumersLimit *int
empty *bool
idlePeriod *time.Duration
createdPeriod *time.Duration
invert bool
subject string
replicas int
mirrored bool
mirroredIsSet bool
sourced bool
sourcedIsSet bool
expression string
leader string
matchers []streamMatcher
apiLevel int
}
type StreamQueryOpt func(query *streamQuery) error
// StreamQueryApiLevelMin limits results to assets requiring API Level above or equal to level
func StreamQueryApiLevelMin(level int) StreamQueryOpt {
return func(q *streamQuery) error {
q.apiLevel = level
return nil
}
}
// StreamQueryExpression filters the stream using the expr expression language
func StreamQueryExpression(e string) StreamQueryOpt {
return func(q *streamQuery) error {
q.expression = e
return nil
}
}
func StreamQueryIsSourced() StreamQueryOpt {
return func(q *streamQuery) error {
q.sourced = true
q.sourcedIsSet = true
return nil
}
}
func StreamQueryIsMirror() StreamQueryOpt {
return func(q *streamQuery) error {
q.mirrored = true
q.mirroredIsSet = true
return nil
}
}
// StreamQueryReplicas finds streams with a certain number of replicas or less
func StreamQueryReplicas(r uint) StreamQueryOpt {
return func(q *streamQuery) error {
q.replicas = int(r)
return nil
}
}
// StreamQuerySubjectWildcard limits results to streams with subject interest matching standard a nats wildcard
func StreamQuerySubjectWildcard(s string) StreamQueryOpt {
return func(q *streamQuery) error {
q.subject = s
return nil
}
}
// StreamQueryServerName limits results to servers matching a regular expression
func StreamQueryServerName(s string) StreamQueryOpt {
return func(q *streamQuery) error {
if s == "" {
return nil
}
re, err := regexp.Compile(s)
if err != nil {
return err
}
q.server = re
return nil
}
}
// StreamQueryClusterName limits results to servers within a cluster matched by a regular expression
func StreamQueryClusterName(c string) StreamQueryOpt {
return func(q *streamQuery) error {
if c == "" {
return nil
}
re, err := regexp.Compile(c)
if err != nil {
return err
}
q.cluster = re
return nil
}
}
// StreamQueryFewerConsumersThan limits results to streams with fewer than or equal consumers than c
func StreamQueryFewerConsumersThan(c uint) StreamQueryOpt {
return func(q *streamQuery) error {
i := int(c)
q.consumersLimit = &i
return nil
}
}
// StreamQueryWithoutMessages limits results to streams with no messages
func StreamQueryWithoutMessages() StreamQueryOpt {
return func(q *streamQuery) error {
t := true
q.empty = &t
return nil
}
}
// StreamQueryIdleLongerThan limits results to streams that has not received messages for a period longer than p
func StreamQueryIdleLongerThan(p time.Duration) StreamQueryOpt {
return func(q *streamQuery) error {
q.idlePeriod = &p
return nil
}
}
// StreamQueryOlderThan limits the results to streams older than p
func StreamQueryOlderThan(p time.Duration) StreamQueryOpt {
return func(q *streamQuery) error {
q.createdPeriod = &p
return nil
}
}
// StreamQueryInvert inverts the logic of filters, older than becomes newer than and so forth
func StreamQueryInvert() StreamQueryOpt {
return func(q *streamQuery) error {
q.invert = true
return nil
}
}
// StreamQueryLeaderServer finds clustered streams where a certain node is the leader
func StreamQueryLeaderServer(server string) StreamQueryOpt {
return func(q *streamQuery) error {
q.leader = server
return nil
}
}
// QueryStreams filters the streams found in JetStream using various filter options
func (m *Manager) QueryStreams(opts ...StreamQueryOpt) ([]*Stream, error) {
q := &streamQuery{}
for _, opt := range opts {
err := opt(q)
if err != nil {
return nil, err
}
}
q.matchers = []streamMatcher{
q.matchExpression,
q.matchCreatedPeriod,
q.matchIdlePeriod,
q.matchEmpty,
q.matchConsumerLimit,
q.matchCluster,
q.matchSubjectWildcard,
q.matchServer,
q.matchReplicas,
q.matchSourced,
q.matchMirrored,
q.matchLeaderServer,
q.matchApiLevel,
}
streams, _, err := m.Streams(nil)
if err != nil {
return nil, err
}
return q.Filter(streams)
}
func (q *streamQuery) Filter(streams []*Stream) ([]*Stream, error) {
matched := streams[:]
var err error
for _, matcher := range q.matchers {
matched, err = matcher(matched)
if err != nil {
return nil, err
}
}
return matched, nil
}
func (q *streamQuery) matchExpression(streams []*Stream) ([]*Stream, error) {
if q.expression == "" {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
cfg := map[string]any{}
state := map[string]any{}
info := map[string]any{}
cfgBytes, _ := yaml.Marshal(stream.Configuration())
yaml.Unmarshal(cfgBytes, &cfg)
nfo, _ := stream.LatestInformation()
nfoBytes, _ := yaml.Marshal(nfo)
yaml.Unmarshal(nfoBytes, &info)
stateBytes, _ := yaml.Marshal(nfo.State)
yaml.Unmarshal(stateBytes, &state)
env := map[string]any{
"config": cfg,
"state": state,
"info": info,
"Info": nfo,
}
program, err := expr.Compile(q.expression, expr.Env(env), expr.AsBool())
if err != nil {
return nil, err
}
out, err := expr.Run(program, env)
if err != nil {
return nil, err
}
should, ok := out.(bool)
if !ok {
return nil, fmt.Errorf("expression did not return a boolean")
}
if should {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchLeaderServer(streams []*Stream) ([]*Stream, error) {
if q.leader == "" {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
nfo, err := stream.LatestInformation()
if err != nil {
return nil, err
}
if nfo.Cluster == nil {
continue
}
if (!q.invert && nfo.Cluster.Leader == q.leader) || (q.invert && nfo.Cluster.Leader != q.leader) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchMirrored(streams []*Stream) ([]*Stream, error) {
if !q.mirroredIsSet {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
if (!q.invert && stream.IsMirror()) || (q.invert && !stream.IsMirror()) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchSourced(streams []*Stream) ([]*Stream, error) {
if !q.sourcedIsSet {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
if (!q.invert && stream.IsSourced()) || (q.invert && !stream.IsSourced()) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchReplicas(streams []*Stream) ([]*Stream, error) {
if q.replicas == 0 {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
if (q.invert && stream.Replicas() >= q.replicas) || (!q.invert && stream.Replicas() <= q.replicas) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchSubjectWildcard(streams []*Stream) ([]*Stream, error) {
if q.subject == "" {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
match := false
for _, subj := range stream.Configuration().Subjects {
subMatch := SubjectIsSubsetMatch(subj, q.subject)
if q.invert {
if !subMatch {
match = true
}
} else {
if subMatch {
match = true
break
}
}
}
if match {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchCreatedPeriod(streams []*Stream) ([]*Stream, error) {
if q.createdPeriod == nil {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
nfo, err := stream.LatestInformation()
if err != nil {
return nil, err
}
if (!q.invert && time.Since(nfo.Created) >= *q.createdPeriod) || (q.invert && time.Since(nfo.Created) <= *q.createdPeriod) {
matched = append(matched, stream)
}
}
return matched, nil
}
// note: ideally we match in addition for ones where no consumer had any messages in this period
// but today that means doing a consumer info on every consumer on every stream thats not viable
func (q *streamQuery) matchIdlePeriod(streams []*Stream) ([]*Stream, error) {
if q.idlePeriod == nil {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
state, err := stream.LatestState()
if err != nil {
return nil, err
}
lt := time.Since(state.LastTime)
should := lt > *q.idlePeriod
if (!q.invert && should) || (q.invert && !should) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchEmpty(streams []*Stream) ([]*Stream, error) {
if q.empty == nil {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
state, err := stream.LatestState()
if err != nil {
return nil, err
}
if (!q.invert && state.Msgs == 0) || (q.invert && state.Msgs > 0) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchConsumerLimit(streams []*Stream) ([]*Stream, error) {
if q.consumersLimit == nil {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
state, err := stream.LatestState()
if err != nil {
return nil, err
}
if (q.invert && state.Consumers >= *q.consumersLimit) || !q.invert && state.Consumers <= *q.consumersLimit {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchApiLevel(streams []*Stream) ([]*Stream, error) {
if q.apiLevel <= 0 {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
var v string
var requiredLevel int
meta := stream.Configuration().Metadata
if len(meta) > 0 {
v = meta[api.JsMetaRequiredServerLevel]
if v != "" {
requiredLevel, _ = strconv.Atoi(v)
}
}
if (!q.invert && requiredLevel >= q.apiLevel) || (q.invert && requiredLevel < q.apiLevel) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchCluster(streams []*Stream) ([]*Stream, error) {
if q.cluster == nil {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
nfo, err := stream.LatestInformation()
if err != nil {
return nil, err
}
should := false
if nfo.Cluster != nil {
should = q.cluster.MatchString(nfo.Cluster.Name)
}
// without cluster info its included if inverted
if (!q.invert && should) || (q.invert && !should) {
matched = append(matched, stream)
}
}
return matched, nil
}
func (q *streamQuery) matchServer(streams []*Stream) ([]*Stream, error) {
if q.server == nil {
return streams, nil
}
var matched []*Stream
for _, stream := range streams {
nfo, err := stream.LatestInformation()
if err != nil {
return nil, err
}
should := false
if nfo.Cluster != nil {
for _, r := range nfo.Cluster.Replicas {
if q.server.MatchString(r.Name) {
should = true
break
}
}
if q.server.MatchString(nfo.Cluster.Leader) {
should = true
}
}
// if no cluster info was present we wont include the stream
// unless invert is set then we can
if (!q.invert && should) || (q.invert && !should) {
matched = append(matched, stream)
}
}
return matched, nil
}
const (
btsep = '.'
fwc = '>'
pwc = '*'
)
// SubjectIsSubsetMatch tests if a subject matches a standard nats wildcard
func SubjectIsSubsetMatch(subject, test string) bool {
tsa := [32]string{}
tts := tokenizeSubjectIntoSlice(tsa[:0], subject)
return isSubsetMatch(tts, test)
}
// This will test a subject as an array of tokens against a test subject
// Calls into the function isSubsetMatchTokenized
func isSubsetMatch(tokens []string, test string) bool {
tsa := [32]string{}
tts := tokenizeSubjectIntoSlice(tsa[:0], test)
return isSubsetMatchTokenized(tokens, tts)
}
// use similar to append. meaning, the updated slice will be returned
func tokenizeSubjectIntoSlice(tts []string, subject string) []string {
start := 0
for i := 0; i < len(subject); i++ {
if subject[i] == btsep {
tts = append(tts, subject[start:i])
start = i + 1
}
}
tts = append(tts, subject[start:])
return tts
}
// This will test a subject as an array of tokens against a test subject (also encoded as array of tokens)
// and determine if the tokens are matched. Both test subject and tokens
// may contain wildcards. So foo.* is a subset match of [">", "*.*", "foo.*"],
// but not of foo.bar, etc.
func isSubsetMatchTokenized(tokens, test []string) bool {
// Walk the target tokens
for i, t2 := range test {
if i >= len(tokens) {
return false
}
l := len(t2)
if l == 0 {
return false
}
if t2[0] == fwc && l == 1 {
return true
}
t1 := tokens[i]
l = len(t1)
if l == 0 || t1[0] == fwc && l == 1 {
return false
}
if t1[0] == pwc && len(t1) == 1 {
m := t2[0] == pwc && len(t2) == 1
if !m {
return false
}
if i >= len(test) {
return true
}
continue
}
if t2[0] != pwc && strings.Compare(t1, t2) != 0 {
return false
}
}
return len(tokens) == len(test)
}