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
493
494
495
496
497
498
499
500
501
use std::sync::{
atomic::{AtomicBool, Ordering},
Arc,
};
use basedrop::{Handle, Owned};
use crossbeam_queue::ArrayQueue;
use four_cc::FourCC;
use crate::{
error::Error,
generator::{
unique_note_id, GeneratorMessage, GeneratorPlaybackEvent, GeneratorPlaybackMessage,
},
parameter::ParameterValueUpdate,
player::PlaybackId,
source::{
amplified::AmplifiedSourceMessage,
measured::{CpuLoad, SharedCpuLoadState},
mixed::MixerMessage,
panned::PannedSourceMessage,
playback::PlaybackMessageQueue,
},
NotePlaybackId, PlaybackStatusContext,
};
// -------------------------------------------------------------------------------------------------
/// Query and change runtime playback properties of a playing [`Generator`](crate::Generator).
///
/// Handles are `Send` and `Sync` so they can be sent across threads.
#[derive(Clone)]
pub struct GeneratorPlaybackHandle {
is_playing: Arc<AtomicBool>,
playback_id: PlaybackId,
playback_message_queue: PlaybackMessageQueue,
mixer_event_queue: Arc<ArrayQueue<MixerMessage>>,
collector_handle: Handle,
measurement_state: Option<SharedCpuLoadState>,
}
impl GeneratorPlaybackHandle {
pub(crate) fn new(
is_playing: Arc<AtomicBool>,
playback_id: PlaybackId,
playback_message_queue: PlaybackMessageQueue,
mixer_event_queue: Arc<ArrayQueue<MixerMessage>>,
collector_handle: Handle,
measurement_state: Option<SharedCpuLoadState>,
) -> Self {
Self {
is_playing,
playback_id,
playback_message_queue,
mixer_event_queue,
collector_handle,
measurement_state,
}
}
/// Get the playback ID of this source.
pub fn id(&self) -> PlaybackId {
self.playback_id
}
/// Check if this source is still playing.
pub fn is_playing(&self) -> bool {
self.is_playing.load(Ordering::Relaxed)
}
/// Get the CPU load data for this source.
///
/// Only available when CPU measurement was enabled in the playback options
/// and the player's [`PlayerConfig`](crate::PlayerConfig).
pub fn cpu_load(&self) -> Option<CpuLoad> {
self.measurement_state
.as_ref()
.and_then(|state| state.try_lock().map(|state| state.cpu_load()).ok())
}
/// Stop this source at the given sample time or immediately.
pub fn stop<T: Into<Option<u64>>>(&self, stop_time: T) -> Result<(), Error> {
let stop_time = stop_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
if let Some(sample_time) = stop_time {
// Schedule stop with mixer. Force push stop commands to avoid hanging notes...
let playback_id = self.playback_id;
if self
.mixer_event_queue
.force_push(MixerMessage::StopSource {
playback_id,
sample_time,
})
.is_some()
{
log::warn!("Mixer's event queue is full.");
log::warn!("Increase the mixer event queue to prevent this from happening...");
}
} else {
// Stop immediately
if let PlaybackMessageQueue::Generator { playback, .. } = &self.playback_message_queue {
if playback
.force_push(GeneratorPlaybackMessage::Stop)
.is_some()
{
return Err(Self::generator_message_queue_error("stop"));
}
} else {
unreachable!("Expecting a generator message queue for a generator playback handle");
}
}
Ok(())
}
/// Set source's volume at a given sample time in future or immediately.
pub fn set_volume<T: Into<Option<u64>>>(
&self,
volume: f32,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
if let Some(sample_time) = sample_time {
// Schedule with mixer
let playback_id = self.playback_id;
if self
.mixer_event_queue
.push(MixerMessage::SetSourceVolume {
playback_id,
volume,
sample_time,
})
.is_err()
{
return Err(Self::mixer_event_queue_error("set_volume"));
}
} else {
// Apply immediately
if self
.playback_message_queue
.volume()
.force_push(AmplifiedSourceMessage::SetVolume(volume))
.is_some()
{
// expected: simply overwrite previous values, if any
}
}
Ok(())
}
/// Set source's panning at a given sample time in future or immediately.
pub fn set_panning<T: Into<Option<u64>>>(
&self,
panning: f32,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
if let Some(sample_time) = sample_time {
// Schedule with mixer
let playback_id = self.playback_id;
if self
.mixer_event_queue
.push(MixerMessage::SetSourcePanning {
playback_id,
panning,
sample_time,
})
.is_err()
{
return Err(Self::mixer_event_queue_error("set_panning"));
}
} else {
// Apply immediately
if self
.playback_message_queue
.panning()
.force_push(PannedSourceMessage::SetPanning(panning))
.is_some()
{
// expected: simply overwrite previous values, if any
}
}
Ok(())
}
/// Trigger a note on event at the given sample time or immediately.
/// Returns the note playback ID that can be used to control this specific note instance.
pub fn note_on<T: Into<Option<u64>>>(
&self,
note: u8,
volume: Option<f32>,
panning: Option<f32>,
sample_time: T,
) -> Result<NotePlaybackId, Error> {
let context = None;
self.note_on_with_context(note, volume, panning, context, sample_time)
}
/// Trigger a note on event at the given sample time or immediately and pass along the given
/// playback context to the playback status channel.
/// Returns the note playback ID that can be used to control this specific note instance.
pub fn note_on_with_context<T: Into<Option<u64>>>(
&self,
note: u8,
volume: Option<f32>,
panning: Option<f32>,
context: Option<PlaybackStatusContext>,
sample_time: T,
) -> Result<NotePlaybackId, Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
let note_id = unique_note_id();
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::NoteOn {
note_id,
note,
volume,
panning,
context,
},
"note_on",
)?;
Ok(note_id)
}
/// Trigger a note off event for a specific note instance at the given sample time or immediately.
pub fn note_off<T: Into<Option<u64>>>(
&self,
note_id: NotePlaybackId,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::NoteOff { note_id },
"note_off",
)
}
/// Set playback speed (pitch) for a specific note instance at the given sample time or immediately.
pub fn set_note_speed<T: Into<Option<u64>>>(
&self,
note_id: NotePlaybackId,
speed: f64,
glide: Option<f32>,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::SetSpeed {
note_id,
speed,
glide,
},
"set_note_speed",
)
}
/// Trigger note off for all currently playing notes immediately or at the given sample time.
/// This is useful for panic/reset scenarios.
pub fn all_notes_off<T: Into<Option<u64>>>(&self, sample_time: T) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::AllNotesOff,
"all_notes_off",
)
}
/// Set volume for a specific note instance at the given sample time or immediately.
pub fn set_note_volume<T: Into<Option<u64>>>(
&self,
note_id: NotePlaybackId,
volume: f32,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::SetVolume { note_id, volume },
"set_note_volume",
)
}
/// Set panning for a specific note instance at the given sample time or immediately.
pub fn set_note_panning<T: Into<Option<u64>>>(
&self,
note_id: NotePlaybackId,
panning: f32,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::SetPanning { note_id, panning },
"set_note_panning",
)
}
/// Set a parameter's value via the given raw or normalized value update definition
/// at a specific sample time or immediately.
///
/// Note: Value update (id, value) tuples can be created safely via `value_update` functions
/// in [FloatParameter](crate::parameters::FloatParameter), [IntegerParameter](crate::parameters::IntegerParameter),
/// [EnumParameter](crate::parameters::EnumParameter) and [BooleanParameter](crate::parameters::BooleanParameter).
pub fn set_parameter<T: Into<Option<u64>>>(
&self,
(parameter_id, update): (FourCC, ParameterValueUpdate),
sample_time: T,
) -> Result<(), Error> {
if let ParameterValueUpdate::Normalized(normalized_value) = update {
if !(0.0..=1.0).contains(&normalized_value) {
return Err(Error::ParameterError(format!(
"Invalid parameter update: value should be a normalized value, but is: '{normalized_value}'"
)));
}
}
let sample_time = sample_time.into();
let id = parameter_id;
let value = Owned::new(&self.collector_handle, update);
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::SetParameter { id, value },
"set_parameter",
)
}
/// Set multiple parameter values via the given raw or normalized value update definition
/// at a specific sample time or immediately.
///
/// Note: Value update (id, value) tuples can be created safely via `value_update` functions
/// in [FloatParameter](crate::parameters::FloatParameter), [IntegerParameter](crate::parameters::IntegerParameter),
/// [EnumParameter](crate::parameters::EnumParameter) and [BooleanParameter](crate::parameters::BooleanParameter).
pub fn set_parameters<T: Into<Option<u64>>>(
&self,
values: Vec<(FourCC, ParameterValueUpdate)>,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
let values = Owned::new(&self.collector_handle, values);
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::SetParameters { values },
"set_parameters",
)
}
/// Set or update a modulation routing at the given sample time or immediately.
///
/// # Arguments
/// * `source` - Modulation source ID (e.g., Sampler::MOD_SOURCE_LFO1.id)
/// * `target` - Target parameter ID (e.g., Sampler::GRAIN_POSITION.id())
/// * `amount` - Modulation amount (-1.0..=1.0)
/// * `bipolar` - If true, transforms unipolar sources (0.0-1.0) to bipolar (-1.0..1.0)
/// centered at 0.5. Use for sources like keytracking when you want
/// middle values to be neutral (no modulation).
/// * `sample_time` - When to apply (None = immediate, Some = scheduled)
pub fn set_modulation<T: Into<Option<u64>>>(
&self,
source: FourCC,
target: FourCC,
amount: f32,
bipolar: bool,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::SetModulation {
source,
target,
amount,
bipolar,
},
"set_modulation",
)
}
/// Remove a modulation routing at the given sample time or immediately.
pub fn clear_modulation<T: Into<Option<u64>>>(
&self,
source: FourCC,
target: FourCC,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::ClearModulation { source, target },
"clear_modulation",
)
}
/// Send a generator-specific message payload at the given sample time or immediately.
///
/// Use this for state changes that cannot be expressed as a simple parameter update
/// (e.g. loop point overrides, sample buffer swaps).
pub fn send_message<M: GeneratorMessage + 'static, T: Into<Option<u64>>>(
&self,
message: M,
sample_time: T,
) -> Result<(), Error> {
let sample_time = sample_time.into();
if !self.is_playing() {
return Err(Error::SourceNotPlaying);
}
self.send_playback_event(
sample_time,
GeneratorPlaybackEvent::ProcessMessage {
message: Box::new(message),
},
"send_message",
)
}
fn send_playback_event(
&self,
sample_time: Option<u64>,
event: GeneratorPlaybackEvent,
event_name: &str,
) -> Result<(), Error> {
if let Some(sample_time) = sample_time {
// Schedule with mixer
let playback_id = self.playback_id;
if self
.mixer_event_queue
.push(MixerMessage::TriggerGeneratorEvent {
playback_id,
event,
sample_time,
})
.is_err()
{
return Err(Self::mixer_event_queue_error(event_name));
}
} else {
// Apply immediately
if let PlaybackMessageQueue::Generator { playback, .. } = &self.playback_message_queue {
if playback
.push(GeneratorPlaybackMessage::Trigger { event })
.is_err()
{
return Err(Self::generator_message_queue_error(event_name));
}
} else {
unreachable!("Expecting a generator message queue for a generator playback handle");
}
}
Ok(())
}
fn mixer_event_queue_error(event_name: &str) -> Error {
log::warn!("Mixer's event queue is full. Failed to send a {event_name} event.");
log::warn!("Increase the mixer event queue to prevent this from happening...");
Error::SendError("Mixer queue is full".to_string())
}
fn generator_message_queue_error(event_name: &str) -> Error {
log::warn!("Generator playback event queue is full. Failed to send a {event_name} event.");
Error::SendError("Generator playback queue is full".to_string())
}
}