-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpipe.go
492 lines (441 loc) · 12 KB
/
pipe.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
package pipe
import (
"context"
"fmt"
"io"
"pipelined.dev/signal"
"pipelined.dev/pipe/internal/fitting"
"pipelined.dev/pipe/mutable"
)
type (
// Pipe is a graph formed with multiple lines of bound DSP components.
Pipe struct {
mctx mutable.Context
bufferSize int
// async lines have runner per component
// sync lines always wrapped in multiLineExecutor
mutationsChan chan []mutable.Mutation
runtime
}
runtime struct {
merger *errorMerger
routes []*route
executors map[mutable.Context]executor
pusher mutable.Pusher
}
// Source is a source of signal data. Optinaly, mutability can be
// provided to handle mutations and flush hook to handle resource clean
// up.
Source struct {
dest mutable.Destination
mutable.Context
SourceFunc
StartFunc
FlushFunc
SignalProperties
out
}
// SourceFunc takes the output buffer and fills it with a signal data.
// If no data is available, io.EOF should be returned.
SourceFunc func(out signal.Floating) (int, error)
// Processor is a mutator of signal data. Optinaly, mutability can be
// provided to handle mutations and flush hook to handle resource clean
// up.
Processor struct {
mutable.Context
ProcessFunc
StartFunc
FlushFunc
SignalProperties
in
out
}
// ProcessFunc takes the input buffer, applies processing logic and
// writes the result into output buffer.
ProcessFunc func(in, out signal.Floating) (int, error)
// Sink is a destination of signal data. Optinaly, mutability can be
// provided to handle mutations and flush hook to handle resource clean
// up.
Sink struct {
mutable.Context
SinkFunc
StartFunc
FlushFunc
SignalProperties
in
}
// SinkFunc takes the input buffer and writes that to the underlying
// destination.
SinkFunc func(in signal.Floating) error
// StartFunc provides a hook to flush all buffers for the component.
StartFunc func(ctx context.Context) error
// FlushFunc provides a hook to flush all buffers for the component or
// execute any other form of finalization logic.
FlushFunc func(ctx context.Context) error
)
// Run executes the pipe in a single goroutine, sequentially.
func Run(ctx context.Context, bufferSize int, lines ...Line) error {
e := multiLineExecutor{}
mctx := mutable.Mutable()
for i, l := range lines {
l.Context = mctx
r, err := l.route(bufferSize)
if err != nil {
return err
}
r.connect(bufferSize)
e.executors = append(e.executors, r.executor(nil, i))
}
return run(ctx, &e)
}
// New returns a new Pipe that binds multiple lines using the provided
// buffer size.
func New(bufferSize int, lines ...Line) (*Pipe, error) {
if len(lines) == 0 {
panic("pipe without lines")
}
routes := make([]*route, 0, len(lines))
for _, l := range lines {
r, err := l.route(bufferSize)
if err != nil {
return nil, err
}
routes = append(routes, r)
}
return &Pipe{
mctx: mutable.Mutable(),
mutationsChan: make(chan []mutable.Mutation, 1),
bufferSize: bufferSize,
runtime: newRuntime(routes),
}, nil
}
func newRuntime(routes []*route) runtime {
rt := runtime{
routes: routes,
pusher: mutable.NewPusher(),
executors: make(map[mutable.Context]executor),
}
for idx := range rt.routes {
if routes[idx].context.IsMutable() {
rt.registerSyncRoute(idx)
continue
}
rt.registerAsyncRoute(idx)
}
return rt
}
// adds executors from the route
func (rt *runtime) addRoute(r *route) int {
idx := len(rt.routes)
rt.routes = append(rt.routes, r)
return idx
}
// add route to multiline executor
func (rt *runtime) registerSyncRoute(idx int) {
// add to existing multiline executor
r := rt.routes[idx]
if e, ok := rt.executors[r.context]; ok {
mle := e.(*multiLineExecutor)
mle.executors = append(mle.executors, r.executor(mle.Destination, idx))
return
}
// new multiline executor
d := mutable.NewDestination()
rt.pusher.AddDestination(r.context, d)
e := multiLineExecutor{
Context: r.context,
Destination: d,
executors: []*lineExecutor{r.executor(d, idx)},
}
rt.executors[r.context] = &e
}
func (rt *runtime) registerAsyncRoute(idx int) {
d := mutable.NewDestination()
r := rt.routes[idx]
r.source.dest = d
rt.pusher.AddDestination(r.source.Context, d)
rt.executors[r.source.Context] = r.source
for i := range r.processors {
rt.pusher.AddDestination(r.processors[i].Context, d)
rt.executors[r.processors[i].Context] = r.processors[i]
}
rt.pusher.AddDestination(r.sink.Context, d)
rt.executors[r.sink.Context] = r.sink
}
func (rt *runtime) startAsyncRoute(idx int) {
r := rt.routes[idx]
// start all executors
rt.merger.add(r.source)
for _, proc := range r.processors {
rt.merger.add(proc)
}
rt.merger.add(r.sink)
}
// Start starts the pipe execution.
func (p *Pipe) Start(ctx context.Context, initializers ...mutable.Mutation) <-chan error {
// cancel is required to stop the pipe in case of error
ctx, cancelFn := context.WithCancel(ctx)
p.runtime.merger = newErrorMerger(ctx)
for _, r := range p.routes {
r.connect(p.bufferSize)
}
// push initializers before start
p.pusher.Put(initializers...)
p.pusher.Push(ctx)
for _, e := range p.executors {
p.merger.add(e)
}
go p.merger.wait()
errc := make(chan error, 1)
go p.start(ctx, errc, cancelFn)
return errc
}
func (p *Pipe) start(ctx context.Context, errc chan error, cancelFn context.CancelFunc) {
defer close(errc)
for {
select {
case ms := <-p.mutationsChan:
for _, m := range ms {
// mutate the pipe itself
if m.Context == p.mctx {
m.Apply()
} else {
p.pusher.Put(m)
}
}
p.pusher.Push(ctx)
case err, ok := <-p.merger.errorChan:
// merger has buffer of one error, if more errors happen, they
// will be ignored.
if ok {
cancelFn()
p.merger.drain()
errc <- err
}
return
}
}
}
// Push new mutators into pipe. Calling this method after pipe is done will
// cause a panic.
func (p *Pipe) Push(mutations ...mutable.Mutation) {
p.mutationsChan <- mutations
}
// Wait for successful finish or first error to occur.
func Wait(errc <-chan error) error {
for err := range errc {
if err != nil {
return err
}
}
return nil
}
// AddLine creates the line for provied route and adds it to the pipe.
func (p *Pipe) AddLine(l Line) <-chan struct{} {
if p.merger == nil {
panic("pipe isn't running")
}
ctx, cancelFn := context.WithCancel(p.merger.ctx)
p.Push(p.mctx.Mutate(func() error {
r, err := l.route(p.bufferSize)
if err != nil {
return fmt.Errorf("error adding line: %w", err)
}
idx := p.runtime.addRoute(r)
// connect all fittings
r.connect(p.bufferSize)
// async line
if !l.Context.IsMutable() {
p.runtime.registerAsyncRoute(idx)
p.runtime.startAsyncRoute(idx)
cancelFn()
return nil
}
// sync add to existing goroutine
if e, ok := p.executors[l.Context]; ok {
p.pusher.Put(e.(*multiLineExecutor).addRoute(p.merger.ctx, r, idx, cancelFn))
return nil
}
// sync new goroutine
p.runtime.registerSyncRoute(idx)
p.runtime.merger.add(p.runtime.executors[r.context])
cancelFn()
return nil
}))
return ctx.Done()
}
func (p *Pipe) InsertProcessor(line, pos int, procAlloc ProcessorAllocatorFunc) <-chan struct{} {
if p.merger == nil {
panic("pipe isn't running")
}
ctx, cancelFn := context.WithCancel(p.merger.ctx)
p.Push(p.mctx.Mutate(func() error {
r := p.routes[line]
proc, err := p.runtime.insertProcessor(p.bufferSize, r, pos, procAlloc)
if err != nil {
return fmt.Errorf("failed to insert processor: %w", err)
}
p.pusher.Put(p.runtime.startProcessor(r, line, pos, proc, cancelFn))
return nil
}))
return ctx.Done()
}
func (rt *runtime) insertProcessor(bufferSize int, r *route, pos int, procAlloc ProcessorAllocatorFunc) (*Processor, error) {
// allocate and connect
prevProps, prevOut := r.prev(pos)
mctx := componentContext(r.context)
proc, err := procAlloc.allocate(mctx, bufferSize, prevProps)
if err != nil {
return nil, err
}
if r.context.IsMutable() {
proc.connect(bufferSize, fitting.Sync, prevOut)
} else {
proc.connect(bufferSize, fitting.Async, prevOut)
r.processors = append(r.processors, nil)
copy(r.processors[pos+1:], r.processors[pos:])
r.processors[pos] = &proc
rt.executors[mctx] = &proc
rt.pusher.AddDestination(mctx, r.source.dest)
}
return &proc, nil
}
func (rt *runtime) startProcessor(r *route, idx, pos int, proc *Processor, cancelFn context.CancelFunc) mutable.Mutation {
// insert proc to a sync line
if r.context.IsMutable() {
mle, ok := rt.executors[r.context].(*multiLineExecutor)
if !ok {
panic("add processor to not running line")
}
return mle.startSyncProcessor(rt.merger.ctx, idx, pos+1, proc, cancelFn)
}
return rt.startAsyncProcessor(r, pos+1, proc, cancelFn)
}
func (rt *runtime) startAsyncProcessor(r *route, nextPos int, proc *Processor, cancelFn context.CancelFunc) mutable.Mutation {
// get ready for start
if nextPos == len(r.processors) {
return r.sink.Mutate((func() error {
r.sink.in.insert(proc.out)
rt.merger.add(proc)
cancelFn()
return nil
}))
}
nextProc := r.processors[nextPos]
return nextProc.Mutate((func() error {
nextProc.in.insert(proc.out)
rt.merger.add(proc)
cancelFn()
return nil
}))
}
// Processors is a helper function to use in line constructors.
func Processors(processors ...ProcessorAllocatorFunc) []ProcessorAllocatorFunc {
return processors
}
func (s *Source) connect(bufferSize int, fn fitting.New) {
s.out = out{
allocator: s.SignalProperties.poolAllocator(bufferSize),
sender: fn(),
}
}
// Execute does a single iteration of source component. io.EOF is returned
// if context is done.
func (s *Source) execute(ctx context.Context) error {
var ms mutable.Mutations
select {
case ms = <-s.dest:
if err := ms.ApplyTo(s.Context); err != nil {
return err
}
case <-ctx.Done():
s.out.sender.Close()
return io.EOF
default:
}
output := s.out.allocator.Float64()
var (
read int
err error
)
if read, err = s.SourceFunc(output); err != nil {
s.out.sender.Close()
output.Free(s.out.allocator)
return err
}
if read != output.Length() {
output = output.Slice(0, read)
}
if !s.out.sender.Send(ctx, fitting.Message{Signal: output, Mutations: ms}) {
s.out.sender.Close()
return io.EOF
}
return nil
}
func (p *Processor) connect(bufferSize int, fn fitting.New, prevOut out) {
p.in.insert(prevOut)
p.out = out{
allocator: p.SignalProperties.poolAllocator(bufferSize),
sender: fn(),
}
}
// Execute does a single iteration of processor component. io.EOF is
// returned if context is done.
func (p *Processor) execute(ctx context.Context) error {
m, ok := p.in.receiver.Receive(ctx)
if !ok {
p.out.sender.Close()
return io.EOF
}
defer m.Signal.Free(p.in.allocator)
if err := m.Mutations.ApplyTo(p.Context); err != nil {
return err
}
output := p.out.allocator.Float64()
if processed, err := p.ProcessFunc(m.Signal, output); err != nil {
p.out.sender.Close()
return err
} else if processed != p.out.allocator.Length {
output = output.Slice(0, processed)
}
if !p.out.sender.Send(ctx, fitting.Message{Signal: output, Mutations: m.Mutations}) {
p.out.sender.Close()
output.Free(p.out.allocator)
return io.EOF
}
return nil
}
func (s *Sink) connect(bufferSize int, prevOut out) {
s.in.insert(prevOut)
}
// Execute does a single iteration of sink component. io.EOF is returned if
// context is done.
func (s *Sink) execute(ctx context.Context) error {
m, ok := s.in.receiver.Receive(ctx)
if !ok {
return io.EOF
}
defer m.Signal.Free(s.in.allocator)
if err := m.Mutations.ApplyTo(s.Context); err != nil {
return err
}
err := s.SinkFunc(m.Signal)
return err
}
// startHook calls the start hook.
func (fn StartFunc) startHook(ctx context.Context) error {
return callHook(ctx, fn)
}
// flushHook calls the flush hook.
func (fn FlushFunc) flushHook(ctx context.Context) error {
return callHook(ctx, fn)
}
func callHook(ctx context.Context, hook func(context.Context) error) error {
if hook == nil {
return nil
}
return hook(ctx)
}
func (sp SignalProperties) poolAllocator(bufferSize int) *signal.PoolAllocator {
return signal.GetPoolAllocator(sp.Channels, bufferSize, bufferSize)
}