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
|
/*
* Copyright 2009 Phil Burk, Mobileer Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jsyn.unitgen;
import java.io.PrintStream;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.logging.Logger;
import com.jsyn.Synthesizer;
import com.jsyn.engine.SynthesisEngine;
import com.jsyn.ports.ConnectableInput;
import com.jsyn.ports.UnitInputPort;
import com.jsyn.ports.UnitOutputPort;
import com.jsyn.ports.UnitPort;
import com.softsynth.shared.time.TimeStamp;
/**
* Base class for all unit generators.
*
* @author Phil Burk (C) 2009 Mobileer Inc
*/
public abstract class UnitGenerator {
protected static final double VERY_SMALL_FLOAT = 1.0e-26;
public static final double FALSE = 0.0;
public static final double TRUE = 1.0;
protected SynthesisEngine synthesisEngine;
private final LinkedHashMap<String, UnitPort> ports = new LinkedHashMap<String, UnitPort>();
private Circuit circuit;
private long lastFrameCount;
private boolean enabled = true;
private static int nextId;
private final int id = nextId++;
private int frameRate;
private double framePeriod;
static Logger logger = Logger.getLogger(UnitGenerator.class.getName());
public int getId() {
return id;
}
public int getFrameRate() {
// return frameRate;
return synthesisEngine.getFrameRate();
}
public double getFramePeriod() {
// return framePeriod; // TODO - Why does OldJSynTestSuite fail if I use this!
return synthesisEngine.getFramePeriod();
}
public void addPort(UnitPort port) {
port.setUnitGenerator(this);
// Store in a hash table by name.
ports.put(port.getName().toLowerCase(), port);
}
public void addPort(UnitPort port, String name) {
port.setName(name);
addPort(port);
}
public UnitPort getPortByName(String portName) {
return ports.get(portName.toLowerCase());
}
public Collection<UnitPort> getPorts() {
return ports.values();
}
/**
* Perform essential synthesis function.
*
* @param start offset into port buffers
* @param limit limit offset into port buffers for loop
*/
public abstract void generate(int start, int limit);
/**
* Generate a full block.
*/
public void generate() {
generate(0, Synthesizer.FRAMES_PER_BLOCK);
}
/**
* @return the synthesisEngine
*/
public SynthesisEngine getSynthesisEngine() {
return synthesisEngine;
}
/**
* @return the Synthesizer
*/
public Synthesizer getSynthesizer() {
return synthesisEngine;
}
/**
* @param synthesisEngine the synthesisEngine to set
*/
public void setSynthesisEngine(SynthesisEngine synthesisEngine) {
if ((this.synthesisEngine != null) && (this.synthesisEngine != synthesisEngine)) {
throw new RuntimeException("Unit synthesisEngine already set.");
}
this.synthesisEngine = synthesisEngine;
}
public UnitGenerator getTopUnit() {
UnitGenerator unit = this;
// Climb to top of circuit hierarchy.
while (unit.circuit != null) {
unit = unit.circuit;
}
logger.fine("getTopUnit " + this + " => " + unit);
return unit;
}
protected void autoStop() {
synthesisEngine.autoStopUnit(getTopUnit());
}
/** Calculate signal based on halflife of an exponential decay. */
public double convertHalfLifeToMultiplier(double halfLife) {
if (halfLife < (2.0 * getFramePeriod())) {
return 1.0;
} else {
// Strangely enough, this code is valid for both PeakFollower
// and AsymptoticRamp.
return 1.0 - Math.pow(0.5, 1.0 / (halfLife * getSynthesisEngine().getFrameRate()));
}
}
protected double incrementWrapPhase(double currentPhase, double phaseIncrement) {
currentPhase += phaseIncrement;
if (currentPhase >= 1.0)
currentPhase -= 2.0;
else if (currentPhase < -1.0)
currentPhase += 2.0;
return currentPhase;
}
/** Calculate rate based on phase going from 0.0 to 1.0 in time. */
protected double convertTimeToRate(double time) {
double period2X = synthesisEngine.getInverseNyquist();
if (time < period2X) {
return 1.0;
} else {
return getFramePeriod() / time;
}
}
/** Flatten output ports so we don't output a changing signal when stopped. */
public void flattenOutputs() {
for (UnitPort port : ports.values()) {
if (port instanceof UnitOutputPort) {
((UnitOutputPort) port).flatten();
}
}
}
public void setCircuit(Circuit circuit) {
if ((this.circuit != null) && (circuit != null)) {
throw new RuntimeException("Unit is already in a circuit.");
}
// logger.info( "setCircuit in unit " + this + " with circuit " + circuit );
this.circuit = circuit;
}
public Circuit getCircuit() {
return circuit;
}
public void pullData(long frameCount, int start, int limit) {
// Don't generate twice in case the paths merge.
if (enabled && (frameCount > lastFrameCount)) {
// Do this first to block recursion when there is a feedback loop.
lastFrameCount = frameCount;
// Then pull from all the units that are upstream.
for (UnitPort port : ports.values()) {
if (port instanceof ConnectableInput) {
((ConnectableInput) port).pullData(frameCount, start, limit);
}
}
// Finally generate using outputs of the upstream units.
generate(start, limit);
}
}
public boolean isEnabled() {
return enabled;
}
/**
* If enabled, then a unit will execute if its output is connected to another unit that is
* executed. If not enabled then it will not execute and will not pull data from units that are
* connected to its inputs. Disabling a unit at the output of a tree of units can be used to
* turn off the entire tree, thus saving CPU cycles.
*
* @param enabled
* @see UnitGate#setupAutoDisable(UnitGenerator)
* @see start
*/
public void setEnabled(boolean enabled) {
this.enabled = enabled;
if (!enabled) {
flattenOutputs();
}
}
/**
* Start executing this unit directly by adding it to a "run list" of units in the synthesis
* engine. This method is normally only called for the final unit in a chain, for example a
* LineOut. When that final unit executes it will "pull" data from any units connected to its
* inputs. Those units will then pull data their inputs until the entire chain is executed. If
* units are connected in a circle then this will be detected and the infinite recursion will be
* blocked.
*
* @see setEnabled
*/
public void start() {
if (getSynthesisEngine() == null) {
throw new RuntimeException("This " + this.getClass().getName()
+ " was not add()ed to a Synthesizer.");
}
getSynthesisEngine().startUnit(this);
}
/**
* Start a unit at the specified time.
*
* @param time
* @see start
*/
public void start(double time) {
start(new TimeStamp(time));
}
/**
* Start a unit at the specified time.
*
* @param timeStamp
* @see start
*/
public void start(TimeStamp timeStamp) {
if (getSynthesisEngine() == null) {
throw new RuntimeException("This " + this.getClass().getName()
+ " was not add()ed to a Synthesizer.");
}
getSynthesisEngine().startUnit(this, timeStamp);
}
/**
* Stop a unit at the specified time.
*
* @param time
* @see start
*/
public void stop(double time) {
stop(new TimeStamp(time));
}
public void stop() {
getSynthesisEngine().stopUnit(this);
}
public void stop(TimeStamp timeStamp) {
getSynthesisEngine().stopUnit(this, timeStamp);
}
public void setFrameRate(int rate) {
this.frameRate = rate;
this.framePeriod = 1.0 / rate;
}
/** Needed by UnitSink */
public UnitGenerator getUnitGenerator() {
return this;
}
/** Needed by UnitVoice */
public void setPort(String portName, double value, TimeStamp timeStamp) {
UnitInputPort port = (UnitInputPort) getPortByName(portName);
// System.out.println("setPort " + port );
if (port == null) {
logger.warning("port was null for name " + portName + ", " + this.getClass().getName());
} else {
port.set(value, timeStamp);
}
}
public void printConnections() {
printConnections(System.out);
}
public void printConnections(PrintStream out) {
printConnections(out, 0);
}
public void printConnections(PrintStream out, int level) {
for (UnitPort port : getPorts()) {
if (port instanceof UnitInputPort) {
((UnitInputPort) port).printConnections(out, level);
}
}
}
}
|