-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathdriver-pipe.go
More file actions
210 lines (168 loc) · 4.05 KB
/
driver-pipe.go
File metadata and controls
210 lines (168 loc) · 4.05 KB
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
package output
import (
"encoding/binary"
"errors"
"fmt"
"io"
"math"
"os"
"sync"
"syscall"
librespot "github.com/devgianlu/go-librespot"
)
type pipeOutput struct {
reader librespot.Float32Reader
file *os.File
lock sync.Mutex
cond *sync.Cond
externalVolume bool
volume float32
paused bool
closed bool
volumeUpdate chan float32
err chan error
transform func([]float32, []byte) int
}
func newPipeOutput(opts *NewOutputOptions) (out *pipeOutput, err error) {
out = &pipeOutput{
reader: opts.Reader,
volume: opts.InitialVolume,
err: make(chan error, 2),
externalVolume: opts.ExternalVolume,
volumeUpdate: opts.VolumeUpdate,
}
out.cond = sync.NewCond(&out.lock)
switch opts.OutputPipeFormat {
case "s16le":
out.transform = func(in []float32, out []byte) int {
for i := 0; i < len(in); i++ {
sample := int16(in[i] * 32768)
binary.LittleEndian.PutUint16(out[i*2:], uint16(sample))
}
return len(in) * 2
}
case "s32le":
out.transform = func(in []float32, out []byte) int {
for i := 0; i < len(in); i++ {
sample := int32(in[i] * 2147483648)
binary.LittleEndian.PutUint32(out[i*4:], uint32(sample))
}
return len(in) * 4
}
case "f32le":
out.transform = func(in []float32, out []byte) int {
for i := 0; i < len(in); i++ {
sample := math.Float32bits(in[i])
binary.LittleEndian.PutUint32(out[i*4:], sample)
}
return len(in) * 4
}
default:
return nil, fmt.Errorf("unknown output pipe format: %s", opts.OutputPipeFormat)
}
// Open the FIFO for writing as non-blocking to cause an error if there is no reader.
out.file, err = os.OpenFile(opts.OutputPipe, os.O_WRONLY|syscall.O_NONBLOCK, 0)
if err != nil {
return nil, fmt.Errorf("failed to open fifo: %w", err)
}
// Restore blocking mode now that we are sure we have a reader.
if err := syscall.SetNonblock(int(out.file.Fd()), false); err != nil {
return nil, fmt.Errorf("failed to set blocking mode on fifo: %w", err)
}
go out.outputLoop()
return out, nil
}
func (out *pipeOutput) outputLoop() {
floats := make([]float32, 4*1024)
bytes := make([]byte, 4*len(floats)) // times four is the biggest we can get
for {
out.lock.Lock()
for out.paused && !out.closed {
out.cond.Wait()
}
if out.closed {
out.lock.Unlock()
break
}
n, err := out.reader.Read(floats)
// Apply volume.
if !out.externalVolume {
// Map volume (in percent) to what is perceived as linear by
// humans. This is the same as math.Pow(out.volume, 2) but simpler.
volume := out.volume * out.volume
for i := 0; i < n; i++ {
floats[i] *= volume
}
}
if n > 0 {
nn := out.transform(floats[:n], bytes)
_, err := out.file.Write(bytes[:nn])
if err != nil {
out.err <- err
out.closed = true
out.lock.Unlock()
break
}
}
if errors.Is(err, io.EOF) {
// Reached EOF, move to a "paused" state.
out.paused = true
} else if err != nil {
// Got some other error. Close the output and report the error.
out.err <- err
out.closed = true
out.lock.Unlock()
break
}
out.lock.Unlock()
}
_ = out.Close()
}
func (out *pipeOutput) Pause() error {
out.lock.Lock()
defer out.lock.Unlock()
if out.closed {
return nil
}
out.paused = true
out.cond.Signal()
return nil
}
func (out *pipeOutput) Resume() error {
out.lock.Lock()
defer out.lock.Unlock()
if out.closed {
return nil
}
out.paused = false
out.cond.Signal()
return nil
}
func (out *pipeOutput) Drop() error {
return nil
}
func (out *pipeOutput) DelayMs() (int64, error) {
return 0, nil
}
func (out *pipeOutput) SetVolume(vol float32) {
if vol < 0 || vol > 1 {
panic(fmt.Sprintf("invalid volume value: %0.2f", vol))
}
out.volume = vol
sendVolumeUpdate(out.volumeUpdate, vol)
}
func (out *pipeOutput) Error() <-chan error {
// No need to lock here (out.err is only set in newOutput).
return out.err
}
func (out *pipeOutput) Close() error {
out.lock.Lock()
defer out.lock.Unlock()
if out.closed {
return nil
}
_ = out.file.Close()
out.closed = true
out.cond.Signal()
return nil
}