2022-04-23 04:58:24 +10:00
|
|
|
use atomic_refcell::AtomicRefCell;
|
2022-04-23 03:22:23 +10:00
|
|
|
use baseview::{EventStatus, Window, WindowHandler, WindowOpenOptions};
|
2022-04-23 06:59:58 +10:00
|
|
|
use crossbeam::channel;
|
2022-04-23 06:28:12 +10:00
|
|
|
use crossbeam::queue::ArrayQueue;
|
2022-04-23 06:59:58 +10:00
|
|
|
use parking_lot::RwLock;
|
2022-04-23 03:22:23 +10:00
|
|
|
use raw_window_handle::HasRawWindowHandle;
|
|
|
|
use std::any::Any;
|
2022-04-23 06:28:12 +10:00
|
|
|
use std::collections::HashSet;
|
2022-04-23 04:58:24 +10:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2022-04-23 02:29:00 +10:00
|
|
|
use std::sync::Arc;
|
2022-04-23 04:58:24 +10:00
|
|
|
use std::thread;
|
2022-04-23 01:00:59 +10:00
|
|
|
|
2022-04-23 04:41:21 +10:00
|
|
|
use super::backend::Backend;
|
2022-04-23 03:22:23 +10:00
|
|
|
use super::context::{WrapperGuiContext, WrapperProcessContext};
|
2022-04-23 02:29:00 +10:00
|
|
|
use crate::context::Transport;
|
2022-04-23 06:28:12 +10:00
|
|
|
use crate::param::internals::{ParamPtr, Params};
|
|
|
|
use crate::param::ParamFlags;
|
2022-04-23 06:42:54 +10:00
|
|
|
use crate::plugin::{BufferConfig, BusConfig, Editor, ParentWindowHandle, Plugin, ProcessStatus};
|
2022-04-23 02:29:00 +10:00
|
|
|
|
2022-04-23 06:28:12 +10:00
|
|
|
/// How many parameter changes we can store in our unprocessed parameter change queue. Storing more
|
|
|
|
/// than this many parmaeters at a time will cause changes to get lost.
|
|
|
|
const EVENT_QUEUE_CAPACITY: usize = 2048;
|
|
|
|
|
2022-04-23 02:29:00 +10:00
|
|
|
/// Configuration for a standalone plugin that would normally be provided by the DAW.
|
2022-04-23 02:38:32 +10:00
|
|
|
#[derive(Debug, Clone)]
|
2022-04-23 02:29:00 +10:00
|
|
|
pub struct WrapperConfig {
|
|
|
|
/// The number of input channels.
|
|
|
|
pub input_channels: u32,
|
|
|
|
/// The number of output channels.
|
|
|
|
pub output_channels: u32,
|
|
|
|
/// The audio backend's sample rate.
|
|
|
|
pub sample_rate: f32,
|
|
|
|
/// The audio backend's period size.
|
|
|
|
pub period_size: u32,
|
|
|
|
|
2022-04-23 03:22:23 +10:00
|
|
|
/// The editor's DPI scaling factor. Currently baseview has no way to report this to us, so
|
|
|
|
/// we'll expose it as a command line option instead.
|
|
|
|
///
|
|
|
|
/// This option is ignored on macOS.
|
|
|
|
pub dpi_scale: f32,
|
|
|
|
|
2022-04-23 02:29:00 +10:00
|
|
|
/// The current tempo.
|
|
|
|
pub tempo: f32,
|
|
|
|
/// The time signature's numerator.
|
|
|
|
pub timesig_num: u32,
|
|
|
|
/// The time signature's denominator.
|
|
|
|
pub timesig_denom: u32,
|
|
|
|
}
|
2022-04-23 01:00:59 +10:00
|
|
|
|
2022-04-23 04:41:21 +10:00
|
|
|
pub struct Wrapper<P: Plugin, B: Backend> {
|
2022-04-23 04:58:24 +10:00
|
|
|
backend: AtomicRefCell<B>,
|
2022-04-23 04:41:21 +10:00
|
|
|
|
2022-04-23 01:00:59 +10:00
|
|
|
/// The wrapped plugin instance.
|
|
|
|
plugin: RwLock<P>,
|
2022-04-23 06:28:12 +10:00
|
|
|
/// The plugin's parameters. These are fetched once during initialization. That way the
|
|
|
|
/// `ParamPtr`s are guaranteed to live at least as long as this object and we can interact with
|
|
|
|
/// the `Params` object without having to acquire a lock on `plugin`.
|
|
|
|
_params: Arc<dyn Params>,
|
2022-04-23 02:54:39 +10:00
|
|
|
/// The plugin's editor, if it has one. This object does not do anything on its own, but we need
|
|
|
|
/// to instantiate this in advance so we don't need to lock the entire [`Plugin`] object when
|
|
|
|
/// creating an editor.
|
2022-04-23 03:36:19 +10:00
|
|
|
pub editor: Option<Arc<dyn Editor>>,
|
2022-04-23 02:29:00 +10:00
|
|
|
|
|
|
|
config: WrapperConfig,
|
|
|
|
|
|
|
|
/// The bus and buffer configurations are static for the standalone target.
|
|
|
|
bus_config: BusConfig,
|
|
|
|
buffer_config: BufferConfig,
|
2022-04-23 06:28:12 +10:00
|
|
|
|
|
|
|
/// The set of parameter pointers in `params`. This is technically not necessary, but for
|
|
|
|
/// consistency with the plugin wrappers we'll check whether the `ParamPtr` for an incoming
|
|
|
|
/// parameter change actually belongs to a registered parameter.
|
|
|
|
known_parameters: HashSet<ParamPtr>,
|
|
|
|
/// Parameter changes that have been output by the GUI that have not yet been set in the plugin.
|
|
|
|
/// This queue will be flushed at the end of every processing cycle, just like in the plugin
|
|
|
|
/// versions.
|
|
|
|
unprocessed_param_changes: ArrayQueue<(ParamPtr, f32)>,
|
2022-04-23 02:29:00 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Errors that may arise while initializing the wrapped plugins.
|
2022-04-23 02:54:39 +10:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
2022-04-23 02:29:00 +10:00
|
|
|
pub enum WrapperError {
|
|
|
|
/// The plugin does not accept the IO configuration from the config.
|
|
|
|
IncompatibleConfig,
|
|
|
|
/// The plugin returned `false` during initialization.
|
|
|
|
InitializationFailed,
|
2022-04-23 01:00:59 +10:00
|
|
|
}
|
|
|
|
|
2022-04-23 03:22:23 +10:00
|
|
|
struct WrapperWindowHandler {
|
|
|
|
/// The editor handle for the plugin's open editor. The editor should clean itself up when it
|
|
|
|
/// gets dropped.
|
|
|
|
_editor_handle: Box<dyn Any>,
|
2022-04-23 03:36:19 +10:00
|
|
|
|
2022-04-23 06:59:58 +10:00
|
|
|
/// This is used to communicate with the wrapper from the audio thread and from within the
|
|
|
|
/// baseview window handler on the GUI thread.
|
|
|
|
gui_task_receiver: channel::Receiver<GuiTask>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A message sent to the GUI thread.
|
|
|
|
pub enum GuiTask {
|
|
|
|
/// Resize the window to the following physical size.
|
|
|
|
Resize(u32, u32),
|
|
|
|
/// The close window. This will cause the application to terminate.
|
|
|
|
Close,
|
2022-04-23 03:22:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
impl WindowHandler for WrapperWindowHandler {
|
2022-04-23 03:36:19 +10:00
|
|
|
fn on_frame(&mut self, window: &mut Window) {
|
2022-04-23 06:59:58 +10:00
|
|
|
while let Ok(task) = self.gui_task_receiver.try_recv() {
|
|
|
|
match task {
|
|
|
|
GuiTask::Resize(new_width, new_height) => {
|
|
|
|
// Window resizing in baseview has only been implemented on Linux
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
{
|
|
|
|
window.resize(baseview::Size {
|
|
|
|
width: new_width as f64,
|
|
|
|
height: new_height as f64,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GuiTask::Close => window.close(),
|
2022-04-23 03:36:19 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-23 03:22:23 +10:00
|
|
|
|
|
|
|
fn on_event(&mut self, _window: &mut Window, _event: baseview::Event) -> EventStatus {
|
|
|
|
EventStatus::Ignored
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-23 04:41:21 +10:00
|
|
|
impl<P: Plugin, B: Backend> Wrapper<P, B> {
|
2022-04-23 02:29:00 +10:00
|
|
|
/// Instantiate a new instance of the standalone wrapper. Returns an error if the plugin does
|
|
|
|
/// not accept the IO configuration from the wrapper config.
|
2022-04-23 04:41:21 +10:00
|
|
|
pub fn new(backend: B, config: WrapperConfig) -> Result<Arc<Self>, WrapperError> {
|
2022-04-23 02:54:39 +10:00
|
|
|
let plugin = P::default();
|
2022-04-23 06:28:12 +10:00
|
|
|
let params = plugin.params();
|
2022-04-23 03:22:23 +10:00
|
|
|
let editor = plugin.editor().map(Arc::from);
|
2022-04-23 02:54:39 +10:00
|
|
|
|
2022-04-23 06:28:12 +10:00
|
|
|
// For consistency's sake we'll include the same assertions as the other backends
|
|
|
|
// TODO: Move these common checks to a function instead of repeating them in every wrapper
|
|
|
|
let param_map = params.param_map();
|
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
let param_ids: HashSet<_> = param_map.iter().map(|(id, _, _)| id.clone()).collect();
|
|
|
|
nih_debug_assert_eq!(
|
|
|
|
param_map.len(),
|
|
|
|
param_ids.len(),
|
|
|
|
"The plugin has duplicate parameter IDs, weird things may happen. \
|
|
|
|
Consider using 6 character parameter IDs to avoid collissions.."
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut bypass_param_exists = false;
|
|
|
|
for (_, ptr, _) in ¶m_map {
|
|
|
|
let flags = unsafe { ptr.flags() };
|
|
|
|
let is_bypass = flags.contains(ParamFlags::BYPASS);
|
|
|
|
|
|
|
|
if is_bypass && bypass_param_exists {
|
|
|
|
nih_debug_assert_failure!(
|
|
|
|
"Duplicate bypass parameters found, the host will only use the first one"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
bypass_param_exists |= is_bypass;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-23 02:29:00 +10:00
|
|
|
let wrapper = Arc::new(Wrapper {
|
2022-04-23 04:58:24 +10:00
|
|
|
backend: AtomicRefCell::new(backend),
|
2022-04-23 04:41:21 +10:00
|
|
|
|
2022-04-23 02:54:39 +10:00
|
|
|
plugin: RwLock::new(plugin),
|
2022-04-23 06:28:12 +10:00
|
|
|
_params: params,
|
2022-04-23 02:54:39 +10:00
|
|
|
editor,
|
|
|
|
|
2022-04-23 02:29:00 +10:00
|
|
|
bus_config: BusConfig {
|
|
|
|
num_input_channels: config.input_channels,
|
|
|
|
num_output_channels: config.output_channels,
|
|
|
|
},
|
|
|
|
buffer_config: BufferConfig {
|
|
|
|
sample_rate: config.sample_rate,
|
|
|
|
max_buffer_size: config.period_size,
|
|
|
|
},
|
|
|
|
config,
|
2022-04-23 06:28:12 +10:00
|
|
|
|
|
|
|
known_parameters: param_map.into_iter().map(|(_, ptr, _)| ptr).collect(),
|
|
|
|
unprocessed_param_changes: ArrayQueue::new(EVENT_QUEUE_CAPACITY),
|
2022-04-23 02:29:00 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
// Right now the IO configuration is fixed in the standalone target, so if the plugin cannot
|
|
|
|
// work with this then we cannot initialize the plugin at all.
|
|
|
|
{
|
|
|
|
let mut plugin = wrapper.plugin.write();
|
|
|
|
if !plugin.accepts_bus_config(&wrapper.bus_config) {
|
|
|
|
return Err(WrapperError::IncompatibleConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
if !plugin.initialize(
|
|
|
|
&wrapper.bus_config,
|
|
|
|
&wrapper.buffer_config,
|
|
|
|
&mut wrapper.make_process_context(Transport::new(wrapper.config.sample_rate)),
|
|
|
|
) {
|
|
|
|
return Err(WrapperError::InitializationFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(wrapper)
|
|
|
|
}
|
|
|
|
|
2022-04-23 02:54:39 +10:00
|
|
|
/// Open the editor, start processing audio, and block this thread until the editor is closed.
|
|
|
|
/// If the plugin does not have an editor, then this will block until SIGINT is received.
|
|
|
|
///
|
|
|
|
/// Will return an error if the plugin threw an error during audio processing or if the editor
|
|
|
|
/// could not be opened.
|
|
|
|
pub fn run(self: Arc<Self>) -> Result<(), WrapperError> {
|
2022-04-23 06:59:58 +10:00
|
|
|
let (gui_task_sender, gui_task_receiver) = channel::bounded(512);
|
|
|
|
|
2022-04-23 04:58:24 +10:00
|
|
|
// We'll spawn a separate thread to handle IO and to process audio. This audio thread should
|
|
|
|
// terminate together with this function.
|
|
|
|
let terminate_audio_thread = Arc::new(AtomicBool::new(false));
|
|
|
|
let audio_thread = {
|
|
|
|
let this = self.clone();
|
2022-04-23 06:59:58 +10:00
|
|
|
let terminate_audio_thread = terminate_audio_thread.clone();
|
|
|
|
let gui_task_sender = gui_task_sender.clone();
|
|
|
|
thread::spawn(move || this.run_audio_thread(terminate_audio_thread, gui_task_sender))
|
2022-04-23 04:58:24 +10:00
|
|
|
};
|
2022-04-23 03:22:23 +10:00
|
|
|
|
|
|
|
match self.editor.clone() {
|
|
|
|
Some(editor) => {
|
2022-04-23 06:59:58 +10:00
|
|
|
let context = self.clone().make_gui_context(gui_task_sender);
|
2022-04-23 03:22:23 +10:00
|
|
|
|
|
|
|
// DPI scaling should not be used on macOS since the OS handles it there
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
let scaling_policy = baseview::WindowScalePolicy::SystemScaleFactor;
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
|
|
let scaling_policy = {
|
|
|
|
editor.set_scale_factor(self.config.dpi_scale);
|
|
|
|
baseview::WindowScalePolicy::ScaleFactor(self.config.dpi_scale as f64)
|
|
|
|
};
|
|
|
|
|
2022-04-23 03:36:19 +10:00
|
|
|
let (width, height) = editor.size();
|
2022-04-23 03:22:23 +10:00
|
|
|
Window::open_blocking(
|
|
|
|
WindowOpenOptions {
|
|
|
|
title: String::from(P::NAME),
|
|
|
|
size: baseview::Size {
|
|
|
|
width: width as f64,
|
|
|
|
height: height as f64,
|
|
|
|
},
|
|
|
|
scale: scaling_policy,
|
|
|
|
gl_config: None,
|
|
|
|
},
|
|
|
|
move |window| {
|
|
|
|
// TODO: This spawn function should be able to fail and return an error, but
|
|
|
|
// baseview does not support this yet. Once this is added, we should
|
|
|
|
// immediately close the parent window when this happens so the loop
|
|
|
|
// can exit.
|
|
|
|
let editor_handle = editor.spawn(
|
|
|
|
ParentWindowHandle {
|
|
|
|
handle: window.raw_window_handle(),
|
|
|
|
},
|
|
|
|
context,
|
|
|
|
);
|
|
|
|
|
|
|
|
WrapperWindowHandler {
|
|
|
|
_editor_handle: editor_handle,
|
2022-04-23 06:59:58 +10:00
|
|
|
gui_task_receiver,
|
2022-04-23 03:22:23 +10:00
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// TODO: Block until SIGINT is received if the plugin does not have an editor
|
2022-04-23 06:59:58 +10:00
|
|
|
// TODO: Make sure to handle `GuiTask::Close` here as well
|
2022-04-23 03:22:23 +10:00
|
|
|
todo!("Support standalone plugins without editors");
|
|
|
|
}
|
|
|
|
}
|
2022-04-23 02:54:39 +10:00
|
|
|
|
2022-04-23 04:58:24 +10:00
|
|
|
terminate_audio_thread.store(true, Ordering::SeqCst);
|
2022-04-23 06:28:12 +10:00
|
|
|
audio_thread.join().unwrap();
|
2022-04-23 04:58:24 +10:00
|
|
|
|
2022-04-23 02:54:39 +10:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-04-23 06:28:12 +10:00
|
|
|
/// Set a parameter based on a `ParamPtr`. The value will be updated at the end of the next
|
|
|
|
/// processing cycle, and this won't do anything if the parameter has not been registered by the
|
|
|
|
/// plugin.
|
|
|
|
///
|
|
|
|
/// This returns false if the parmeter was not set because the `Paramptr` was either unknown or
|
|
|
|
/// the queue is full.
|
|
|
|
pub fn set_parameter(&self, param: ParamPtr, normalized: f32) -> bool {
|
|
|
|
if !self.known_parameters.contains(¶m) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let push_succesful = self
|
|
|
|
.unprocessed_param_changes
|
|
|
|
.push((param, normalized))
|
|
|
|
.is_ok();
|
|
|
|
nih_debug_assert!(push_succesful, "The parmaeter change queue was full");
|
|
|
|
|
|
|
|
push_succesful
|
|
|
|
}
|
|
|
|
|
2022-04-23 06:59:58 +10:00
|
|
|
/// The DPI scale factor for this standalone application
|
|
|
|
pub fn dpi_scale(&self) -> f32 {
|
|
|
|
// DPI scaling should be ignored on macOS since the OS already handles this
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
return 1.0;
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
|
|
return self.config.dpi_scale;
|
|
|
|
}
|
|
|
|
|
2022-04-23 06:34:53 +10:00
|
|
|
/// The audio thread. This should be called from another thread, and it will run until
|
|
|
|
/// `should_terminate` is `true`.
|
2022-04-23 06:59:58 +10:00
|
|
|
fn run_audio_thread(
|
|
|
|
self: Arc<Self>,
|
|
|
|
should_terminate: Arc<AtomicBool>,
|
|
|
|
gui_task_sender: channel::Sender<GuiTask>,
|
|
|
|
) {
|
2022-04-23 06:42:54 +10:00
|
|
|
// TODO: We should add a way to pull the transport information from the JACK backend
|
|
|
|
let mut num_processed_samples = 0;
|
|
|
|
|
2022-04-23 06:34:53 +10:00
|
|
|
self.clone().backend.borrow_mut().run(move |buffer| {
|
|
|
|
if should_terminate.load(Ordering::SeqCst) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Process incoming events
|
2022-04-23 06:42:54 +10:00
|
|
|
|
|
|
|
let sample_rate = self.buffer_config.sample_rate;
|
|
|
|
let mut transport = Transport::new(sample_rate);
|
|
|
|
transport.pos_samples = Some(num_processed_samples);
|
|
|
|
transport.tempo = Some(self.config.tempo as f64);
|
|
|
|
transport.time_sig_numerator = Some(self.config.timesig_num as i32);
|
|
|
|
transport.time_sig_denominator = Some(self.config.timesig_denom as i32);
|
|
|
|
transport.playing = true;
|
|
|
|
|
|
|
|
if let ProcessStatus::Error(err) = self
|
|
|
|
.plugin
|
|
|
|
.write()
|
|
|
|
.process(buffer, &mut self.make_process_context(transport))
|
|
|
|
{
|
|
|
|
eprintln!("The plugin returned an error while processing:");
|
|
|
|
eprintln!("{}", err);
|
|
|
|
|
2022-04-23 06:59:58 +10:00
|
|
|
let push_successful = gui_task_sender.send(GuiTask::Close).is_ok();
|
|
|
|
nih_debug_assert!(
|
|
|
|
push_successful,
|
|
|
|
"Could not queue window close, the editor will remain open"
|
|
|
|
);
|
|
|
|
|
2022-04-23 06:42:54 +10:00
|
|
|
return false;
|
|
|
|
}
|
2022-04-23 06:34:53 +10:00
|
|
|
|
|
|
|
// We'll always write these events to the first sample, so even when we add note output we
|
|
|
|
// shouldn't have to think about interleaving events here
|
|
|
|
let mut parameter_values_changed = false;
|
|
|
|
while let Some((param_ptr, normalized_value)) = self.unprocessed_param_changes.pop() {
|
|
|
|
unsafe { param_ptr.set_normalized_value(normalized_value) };
|
|
|
|
unsafe { param_ptr.update_smoother(sample_rate, false) };
|
|
|
|
parameter_values_changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow the editor to react to the new parameter values if the editor uses a reactive data
|
|
|
|
// binding model
|
|
|
|
if parameter_values_changed {
|
|
|
|
if let Some(editor) = &self.editor {
|
|
|
|
editor.param_values_changed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: MIDI output
|
|
|
|
// TODO: Handle state restore
|
|
|
|
|
2022-04-23 06:42:54 +10:00
|
|
|
num_processed_samples += buffer.len() as i64;
|
|
|
|
|
2022-04-23 06:34:53 +10:00
|
|
|
true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-23 03:36:19 +10:00
|
|
|
fn make_gui_context(
|
|
|
|
self: Arc<Self>,
|
2022-04-23 06:59:58 +10:00
|
|
|
gui_task_sender: channel::Sender<GuiTask>,
|
2022-04-23 04:41:21 +10:00
|
|
|
) -> Arc<WrapperGuiContext<P, B>> {
|
2022-04-23 03:36:19 +10:00
|
|
|
Arc::new(WrapperGuiContext {
|
|
|
|
wrapper: self,
|
2022-04-23 06:59:58 +10:00
|
|
|
gui_task_sender,
|
2022-04-23 03:36:19 +10:00
|
|
|
})
|
2022-04-23 03:22:23 +10:00
|
|
|
}
|
|
|
|
|
2022-04-23 04:41:21 +10:00
|
|
|
fn make_process_context(&self, transport: Transport) -> WrapperProcessContext<'_, P, B> {
|
2022-04-23 02:29:00 +10:00
|
|
|
WrapperProcessContext {
|
|
|
|
wrapper: self,
|
|
|
|
transport,
|
2022-04-23 01:00:59 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|