Files
mediadevices/pkg/driver/wrapper.go
2020-05-24 11:15:29 -04:00

102 lines
1.9 KiB
Go

package driver
import (
"github.com/pion/mediadevices/pkg/io/audio"
"github.com/pion/mediadevices/pkg/io/video"
"github.com/pion/mediadevices/pkg/prop"
uuid "github.com/satori/go.uuid"
)
func wrapAdapter(a Adapter, info Info) Driver {
id := uuid.NewV4().String()
d := &adapterWrapper{
Adapter: a,
id: id,
info: info,
state: StateClosed,
}
switch v := a.(type) {
case VideoRecorder:
// Only expose Driver and VideoRecorder interfaces
d.VideoRecorder = v
r := &struct {
Driver
VideoRecorder
}{d, d}
return r
case AudioRecorder:
// Only expose Driver and AudioRecorder interfaces
d.AudioRecorder = v
return &struct {
Driver
AudioRecorder
}{d, d}
default:
panic("adapter has to be either VideoRecorder/AudioRecorder")
}
}
type adapterWrapper struct {
Adapter
VideoRecorder
AudioRecorder
id string
info Info
state State
}
func (w *adapterWrapper) ID() string {
return w.id
}
func (w *adapterWrapper) Info() Info {
return w.info
}
func (w *adapterWrapper) Status() State {
return w.state
}
func (w *adapterWrapper) Open() error {
return w.state.Update(StateOpened, w.Adapter.Open)
}
func (w *adapterWrapper) Close() error {
return w.state.Update(StateClosed, w.Adapter.Close)
}
func (w *adapterWrapper) Properties() []prop.Media {
if w.state == StateClosed {
return nil
}
p := w.Adapter.Properties()
for i := range p {
p[i].DeviceID = w.id
}
return p
}
func (w *adapterWrapper) VideoRecord(p prop.Media) (r video.Reader, err error) {
err = w.state.Update(StateRunning, func() error {
r, err = w.VideoRecorder.VideoRecord(p)
return err
})
if err != nil {
_ = w.Close()
}
return
}
func (w *adapterWrapper) AudioRecord(p prop.Media) (r audio.Reader, err error) {
err = w.state.Update(StateRunning, func() error {
r, err = w.AudioRecorder.AudioRecord(p)
return err
})
if err != nil {
_ = w.Close()
}
return
}