-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathline.go
165 lines (143 loc) · 4.2 KB
/
line.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
package pipe
import (
"fmt"
"pipelined.dev/pipe/internal/fitting"
"pipelined.dev/pipe/mutable"
"pipelined.dev/signal"
)
type (
// Line defines sequence of DSP components allocators. It has a
// single source, zero or many processors and single sink.
Line struct {
mutable.Context
Source SourceAllocatorFunc
Processors []ProcessorAllocatorFunc
Sink SinkAllocatorFunc
}
// SourceAllocatorFunc returns source for provided buffer size. It is
// responsible for pre-allocation of all necessary buffers and
// structures.
SourceAllocatorFunc func(mctx mutable.Context, bufferSize int) (Source, error)
// ProcessorAllocatorFunc returns processor for provided buffer size.
// It is responsible for pre-allocation of all necessary buffers and
// structures. Along with the processor, output signal properties are
// returned.
ProcessorAllocatorFunc func(mctx mutable.Context, bufferSize int, input SignalProperties) (Processor, error)
// SinkAllocatorFunc returns sink for provided buffer size. It is
// responsible for pre-allocation of all necessary buffers and
// structures.
SinkAllocatorFunc func(mctx mutable.Context, bufferSize int, input SignalProperties) (Sink, error)
// SignalProperties contains information about input/output signal.
SignalProperties struct {
SampleRate signal.Frequency
Channels int
}
// route represents bound components
route struct {
context mutable.Context
source *Source
processors []*Processor
sink *Sink
}
out struct {
sender fitting.Fitting
allocator *signal.PoolAllocator
}
in struct {
receiver fitting.Fitting
allocator *signal.PoolAllocator
}
)
func (l Line) route(bufferSize int) (*route, error) {
source, err := l.Source.allocate(componentContext(l.Context), bufferSize)
if err != nil {
return nil, fmt.Errorf("source: %w", err)
}
prevProps := source.SignalProperties
processors := make([]*Processor, 0, len(l.Processors))
for i := range l.Processors {
processor, err := l.Processors[i].allocate(componentContext(l.Context), bufferSize, prevProps)
if err != nil {
return nil, fmt.Errorf("processor: %w", err)
}
prevProps = processor.SignalProperties
processors = append(processors, &processor)
}
sink, err := l.Sink.allocate(componentContext(l.Context), bufferSize, prevProps)
if err != nil {
return nil, fmt.Errorf("sink: %w", err)
}
return &route{
context: l.Context,
source: &source,
processors: processors,
sink: &sink,
}, nil
}
func (r *route) connect(bufferSize int) {
fn := fitting.Async
if r.context.IsMutable() {
fn = fitting.Sync
}
r.source.connect(bufferSize, fn)
prevOut := r.source.out
for _, p := range r.processors {
p.connect(bufferSize, fn, prevOut)
prevOut = p.out
}
r.sink.connect(bufferSize, prevOut)
}
func (r *route) executor(d mutable.Destination, idx int) *lineExecutor {
executors := make([]executor, 0, 2+len(r.processors))
r.source.dest = d
executors = append(executors, r.source)
for i := range r.processors {
executors = append(executors, r.processors[i])
}
executors = append(executors, r.sink)
return &lineExecutor{
route: idx,
executors: executors,
}
}
func (r *route) prev(pos int) (SignalProperties, out) {
if pos == 0 {
return r.source.SignalProperties, r.source.out
}
p := r.processors[pos-1]
return p.SignalProperties, p.out
}
func (fn SourceAllocatorFunc) allocate(ctx mutable.Context, bufferSize int) (Source, error) {
c, err := fn(ctx, bufferSize)
if err != nil {
return Source{}, err
}
c.Context = ctx
return c, nil
}
func (fn ProcessorAllocatorFunc) allocate(ctx mutable.Context, bufferSize int, prevProps SignalProperties) (Processor, error) {
c, err := fn(ctx, bufferSize, prevProps)
if err != nil {
return Processor{}, err
}
c.Context = ctx
return c, nil
}
func (fn SinkAllocatorFunc) allocate(ctx mutable.Context, bufferSize int, input SignalProperties) (Sink, error) {
c, err := fn(ctx, bufferSize, input)
if err != nil {
return Sink{}, err
}
c.Context = ctx
return c, nil
}
func (in *in) insert(out out) {
in.receiver = out.sender
in.allocator = out.allocator
}
func componentContext(lineCtx mutable.Context) mutable.Context {
if lineCtx.IsMutable() {
return lineCtx
}
return mutable.Mutable()
}