mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-18 04:26:54 +00:00
87 lines
1.9 KiB
Go
87 lines
1.9 KiB
Go
|
// Package tester contains a static source tester.
|
||
|
package tester
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/bluenviron/mediamtx/internal/asyncwriter"
|
||
|
"github.com/bluenviron/mediamtx/internal/conf"
|
||
|
"github.com/bluenviron/mediamtx/internal/defs"
|
||
|
"github.com/bluenviron/mediamtx/internal/logger"
|
||
|
"github.com/bluenviron/mediamtx/internal/stream"
|
||
|
"github.com/bluenviron/mediamtx/internal/unit"
|
||
|
)
|
||
|
|
||
|
// Tester is a static source tester.
|
||
|
type Tester struct {
|
||
|
ctx context.Context
|
||
|
ctxCancel func()
|
||
|
stream *stream.Stream
|
||
|
writer *asyncwriter.Writer
|
||
|
|
||
|
Unit chan unit.Unit
|
||
|
done chan struct{}
|
||
|
}
|
||
|
|
||
|
// New allocates a tester.
|
||
|
func New(createFunc func(defs.StaticSourceParent) defs.StaticSource, conf *conf.Path) *Tester {
|
||
|
ctx, ctxCancel := context.WithCancel(context.Background())
|
||
|
|
||
|
t := &Tester{
|
||
|
ctx: ctx,
|
||
|
ctxCancel: ctxCancel,
|
||
|
Unit: make(chan unit.Unit),
|
||
|
done: make(chan struct{}),
|
||
|
}
|
||
|
|
||
|
s := createFunc(t)
|
||
|
|
||
|
go func() {
|
||
|
s.Run(defs.StaticSourceRunParams{ //nolint:errcheck
|
||
|
Context: ctx,
|
||
|
Conf: conf,
|
||
|
})
|
||
|
close(t.done)
|
||
|
}()
|
||
|
|
||
|
return t
|
||
|
}
|
||
|
|
||
|
// Close closes the tester.
|
||
|
func (t *Tester) Close() {
|
||
|
t.ctxCancel()
|
||
|
t.writer.Stop()
|
||
|
t.stream.Close()
|
||
|
<-t.done
|
||
|
}
|
||
|
|
||
|
// Log implements StaticSourceParent.
|
||
|
func (t *Tester) Log(_ logger.Level, _ string, _ ...interface{}) {
|
||
|
}
|
||
|
|
||
|
// SetReady implements StaticSourceParent.
|
||
|
func (t *Tester) SetReady(req defs.PathSourceStaticSetReadyReq) defs.PathSourceStaticSetReadyRes {
|
||
|
t.stream, _ = stream.New(
|
||
|
1460,
|
||
|
req.Desc,
|
||
|
req.GenerateRTPPackets,
|
||
|
t,
|
||
|
)
|
||
|
|
||
|
t.writer = asyncwriter.New(2048, t)
|
||
|
t.stream.AddReader(t.writer, req.Desc.Medias[0], req.Desc.Medias[0].Formats[0], func(u unit.Unit) error {
|
||
|
t.Unit <- u
|
||
|
close(t.Unit)
|
||
|
return nil
|
||
|
})
|
||
|
t.writer.Start()
|
||
|
|
||
|
return defs.PathSourceStaticSetReadyRes{
|
||
|
Stream: t.stream,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// SetNotReady implements StaticSourceParent.
|
||
|
func (t *Tester) SetNotReady(_ defs.PathSourceStaticSetNotReadyReq) {
|
||
|
}
|