blob: e6f4834b942002b7e7bc6c212950bcda3d16a929 (
plain)
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
|
package tunnel
import (
"context"
"strings"
"github.com/containers/podman/v2/pkg/bindings/system"
"github.com/containers/podman/v2/pkg/domain/entities"
"github.com/pkg/errors"
)
func (ic *ContainerEngine) Events(ctx context.Context, opts entities.EventsOptions) error {
filters := make(map[string][]string)
if len(opts.Filter) > 0 {
for _, filter := range opts.Filter {
split := strings.Split(filter, "=")
if len(split) < 2 {
return errors.Errorf("invalid filter %q", filter)
}
filters[split[0]] = append(filters[split[0]], strings.Join(split[1:], "="))
}
}
binChan := make(chan entities.Event)
go func() {
for e := range binChan {
opts.EventChan <- entities.ConvertToLibpodEvent(e)
}
close(opts.EventChan)
}()
return system.Events(ic.ClientCxt, binChan, nil, &opts.Since, &opts.Until, filters, &opts.Stream)
}
|