2022-03-04 07:18:57 +11:00
|
|
|
use atomic_refcell::AtomicRefCell;
|
2022-02-07 03:50:15 +11:00
|
|
|
use crossbeam::atomic::AtomicCell;
|
2022-04-08 01:12:08 +10:00
|
|
|
use crossbeam::channel::{self, SendTimeoutError};
|
2022-02-07 03:50:15 +11:00
|
|
|
use parking_lot::RwLock;
|
2022-04-09 04:53:32 +10:00
|
|
|
use std::collections::{HashMap, HashSet, VecDeque};
|
2022-02-07 03:50:15 +11:00
|
|
|
use std::mem::MaybeUninit;
|
2022-04-08 01:12:08 +10:00
|
|
|
use std::sync::atomic::{AtomicBool, AtomicU32, Ordering};
|
2022-02-07 03:50:15 +11:00
|
|
|
use std::sync::Arc;
|
2022-04-08 01:12:08 +10:00
|
|
|
use std::time::Duration;
|
2022-02-07 03:50:15 +11:00
|
|
|
use vst3_sys::base::{kInvalidArgument, kResultOk, tresult};
|
2022-04-08 01:12:08 +10:00
|
|
|
use vst3_sys::vst::{IComponentHandler, RestartFlags};
|
2022-02-07 03:50:15 +11:00
|
|
|
|
2022-03-04 02:33:41 +11:00
|
|
|
use super::context::{WrapperGuiContext, WrapperProcessContext};
|
2022-04-09 01:49:13 +10:00
|
|
|
use super::note_expressions::NoteExpressionController;
|
2022-03-17 06:19:40 +11:00
|
|
|
use super::param_units::ParamUnits;
|
2022-04-09 04:53:32 +10:00
|
|
|
use super::util::{ObjectPtr, VstPtr, VST3_MIDI_PARAMS_END, VST3_MIDI_PARAMS_START};
|
2022-02-17 06:43:53 +11:00
|
|
|
use super::view::WrapperView;
|
2022-02-07 03:50:15 +11:00
|
|
|
use crate::buffer::Buffer;
|
2022-03-05 01:05:00 +11:00
|
|
|
use crate::context::Transport;
|
2022-02-28 22:55:59 +11:00
|
|
|
use crate::event_loop::{EventLoop, MainThreadExecutor, OsEventLoop};
|
2022-04-09 04:53:32 +10:00
|
|
|
use crate::midi::{MidiConfig, NoteEvent};
|
2022-04-07 23:31:46 +10:00
|
|
|
use crate::param::internals::{ParamPtr, Params};
|
2022-03-24 03:36:58 +11:00
|
|
|
use crate::param::ParamFlags;
|
2022-04-08 07:28:31 +10:00
|
|
|
use crate::plugin::{BufferConfig, BusConfig, Editor, ProcessStatus, Vst3Plugin};
|
2022-04-08 01:39:34 +10:00
|
|
|
use crate::wrapper::state::{self, PluginState};
|
2022-04-08 01:12:08 +10:00
|
|
|
use crate::wrapper::util::{hash_param_id, process_wrapper};
|
2022-02-07 03:50:15 +11:00
|
|
|
|
|
|
|
/// The actual wrapper bits. We need this as an `Arc<T>` so we can safely use our event loop API.
|
|
|
|
/// Since we can't combine that with VST3's interior reference counting this just has to be moved to
|
|
|
|
/// its own struct.
|
2022-03-01 05:21:14 +11:00
|
|
|
pub(crate) struct WrapperInner<P: Vst3Plugin> {
|
2022-02-07 03:50:15 +11:00
|
|
|
/// The wrapped plugin instance.
|
|
|
|
pub plugin: RwLock<P>,
|
2022-04-07 23:31:46 +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`.
|
|
|
|
pub params: Arc<dyn Params>,
|
2022-02-07 03:50:15 +11:00
|
|
|
/// The plugin's editor, if it has one. This object does not do anything on its own, but we need
|
2022-03-04 09:05:01 +11:00
|
|
|
/// to instantiate this in advance so we don't need to lock the entire [`Plugin`] object when
|
2022-02-07 03:50:15 +11:00
|
|
|
/// creating an editor.
|
|
|
|
pub editor: Option<Arc<dyn Editor>>,
|
|
|
|
|
2022-03-04 09:05:01 +11:00
|
|
|
/// The host's [`IComponentHandler`] instance, if passed through
|
|
|
|
/// [`IEditController::set_component_handler`].
|
2022-03-04 07:18:57 +11:00
|
|
|
pub component_handler: AtomicRefCell<Option<VstPtr<dyn IComponentHandler>>>,
|
2022-02-07 03:50:15 +11:00
|
|
|
|
2022-03-04 09:05:01 +11:00
|
|
|
/// Our own [`IPlugView`] instance. This is set while the editor is actually visible (which is
|
|
|
|
/// different form the lifetime of [`WrapperView`][super::WrapperView] itself).
|
2022-02-17 06:43:53 +11:00
|
|
|
pub plug_view: RwLock<Option<ObjectPtr<WrapperView<P>>>>,
|
|
|
|
|
2022-02-07 03:50:15 +11:00
|
|
|
/// A realtime-safe task queue so the plugin can schedule tasks that need to be run later on the
|
|
|
|
/// GUI thread.
|
|
|
|
///
|
|
|
|
/// This RwLock is only needed because it has to be initialized late. There is no reason to
|
|
|
|
/// mutably borrow the event loop, so reads will never be contested.
|
|
|
|
///
|
|
|
|
/// TODO: Is there a better type for Send+Sync late initializaiton?
|
2022-03-04 07:18:57 +11:00
|
|
|
pub event_loop: AtomicRefCell<MaybeUninit<OsEventLoop<Task, Self>>>,
|
2022-02-07 03:50:15 +11:00
|
|
|
|
|
|
|
/// Whether the plugin is currently processing audio. In other words, the last state
|
|
|
|
/// `IAudioProcessor::setActive()` has been called with.
|
|
|
|
pub is_processing: AtomicBool,
|
|
|
|
/// The current bus configuration, modified through `IAudioProcessor::setBusArrangements()`.
|
|
|
|
pub current_bus_config: AtomicCell<BusConfig>,
|
|
|
|
/// The current buffer configuration, containing the sample rate and the maximum block size.
|
|
|
|
/// Will be set in `IAudioProcessor::setupProcessing()`.
|
|
|
|
pub current_buffer_config: AtomicCell<Option<BufferConfig>>,
|
|
|
|
/// The last process status returned by the plugin. This is used for tail handling.
|
|
|
|
pub last_process_status: AtomicCell<ProcessStatus>,
|
2022-03-04 09:05:01 +11:00
|
|
|
/// The current latency in samples, as set by the plugin through the [`ProcessContext`].
|
2022-02-07 03:50:15 +11:00
|
|
|
pub current_latency: AtomicU32,
|
|
|
|
/// Contains slices for the plugin's outputs. You can't directly create a nested slice form
|
|
|
|
/// apointer to pointers, so this needs to be preallocated in the setup call and kept around
|
|
|
|
/// between process calls. This buffer owns the vector, because otherwise it would need to store
|
|
|
|
/// a mutable reference to the data contained in this mutex.
|
2022-03-04 07:18:57 +11:00
|
|
|
pub output_buffer: AtomicRefCell<Buffer<'static>>,
|
2022-03-11 09:39:58 +11:00
|
|
|
/// The incoming events for the plugin, if `P::ACCEPTS_MIDI` is set. If
|
|
|
|
/// `P::SAMPLE_ACCURATE_AUTOMATION`, this is also read in lockstep with the parameter change
|
|
|
|
/// block splitting.
|
2022-04-08 07:57:56 +10:00
|
|
|
///
|
|
|
|
/// NOTE: Because with VST3 MIDI CC messages are sent as parameter changes and VST3 does not
|
|
|
|
/// interleave parameter changes and note events, this queue has to be sorted when
|
|
|
|
/// creating the process context
|
2022-03-04 07:18:57 +11:00
|
|
|
pub input_events: AtomicRefCell<VecDeque<NoteEvent>>,
|
2022-04-12 03:52:51 +10:00
|
|
|
/// Stores any events the plugin has output during the current processing cycle, analogous to
|
|
|
|
/// `input_events`.
|
|
|
|
pub output_events: AtomicRefCell<VecDeque<NoteEvent>>,
|
2022-04-09 01:49:13 +10:00
|
|
|
/// VST3 has several useful predefined note expressions, but for some reason they are the only
|
|
|
|
/// note event type that don't have MIDI note ID and channel fields. So we need to keep track of
|
|
|
|
/// the msot recent VST3 note IDs we've seen, and then map those back to MIDI note IDs and
|
|
|
|
/// channels as needed.
|
|
|
|
pub note_expression_controller: AtomicRefCell<NoteExpressionController>,
|
2022-04-09 04:53:32 +10:00
|
|
|
/// Unprocessed parameter changes and note events sent by the host during a process call.
|
|
|
|
/// Parameter changes are sent as separate queues for each parameter, and note events are in
|
|
|
|
/// another queue on top of that. And if `P::MIDI_INPUT >= MidiConfig::MidiCCs`, then we can
|
|
|
|
/// also receive MIDI CC messages through special parameter changes. On top of that, we also
|
|
|
|
/// support sample accurate automation through block splitting if
|
|
|
|
/// `P::SAMPLE_ACCURATE_AUTOMATION` is set. To account for all of this, we'll read all of the
|
|
|
|
/// parameter changes and events into a vector at the start of the process call, sort it, and
|
|
|
|
/// then do the block splitting based on that. Note events need to have their timing adjusted to
|
|
|
|
/// match the block start, since they're all read upfront.
|
|
|
|
pub process_events: AtomicRefCell<Vec<ProcessEvent>>,
|
2022-04-08 01:12:08 +10:00
|
|
|
/// The plugin is able to restore state through a method on the `GuiContext`. To avoid changing
|
|
|
|
/// parameters mid-processing and running into garbled data if the host also tries to load state
|
|
|
|
/// at the same time the restoring happens at the end of each processing call. If this zero
|
|
|
|
/// capacity channel contains state data at that point, then the audio thread will take the
|
|
|
|
/// state out of the channel, restore the state, and then send it back through the same channel.
|
|
|
|
/// In other words, the GUI thread acts as a sender and then as a receiver, while the audio
|
|
|
|
/// thread acts as a receiver and then as a sender. That way deallocation can happen on the GUI
|
|
|
|
/// thread. All of this happens without any blocking on the audio thread.
|
2022-04-08 01:39:34 +10:00
|
|
|
pub updated_state_sender: channel::Sender<PluginState>,
|
2022-04-08 01:12:08 +10:00
|
|
|
/// The receiver belonging to [`new_state_sender`][Self::new_state_sender].
|
2022-04-08 01:39:34 +10:00
|
|
|
pub updated_state_receiver: channel::Receiver<PluginState>,
|
2022-02-07 03:50:15 +11:00
|
|
|
|
|
|
|
/// The keys from `param_map` in a stable order.
|
|
|
|
pub param_hashes: Vec<u32>,
|
|
|
|
/// A mapping from parameter ID hashes (obtained from the string parameter IDs) to pointers to
|
2022-04-07 23:31:46 +10:00
|
|
|
/// parameters belonging to the plugin. These addresses will remain stable as long as the
|
|
|
|
/// `params` object does not get deallocated.
|
2022-02-07 03:50:15 +11:00
|
|
|
pub param_by_hash: HashMap<u32, ParamPtr>,
|
2022-03-17 06:19:40 +11:00
|
|
|
pub param_units: ParamUnits,
|
2022-02-07 03:50:15 +11:00
|
|
|
/// Mappings from string parameter indentifiers to parameter hashes. Useful for debug logging
|
|
|
|
/// and when storing and restorign plugin state.
|
2022-03-20 12:13:19 +11:00
|
|
|
pub param_id_to_hash: HashMap<String, u32>,
|
2022-03-04 09:05:01 +11:00
|
|
|
/// The inverse mapping from [`param_by_hash`][Self::param_by_hash]. This is needed to be able
|
|
|
|
/// to have an ergonomic parameter setting API that uses references to the parameters instead of
|
|
|
|
/// having to add a setter function to the parameter (or even worse, have it be completely
|
|
|
|
/// untyped).
|
2022-02-07 03:50:15 +11:00
|
|
|
pub param_ptr_to_hash: HashMap<ParamPtr, u32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Tasks that can be sent from the plugin to be executed on the main thread in a non-blocking
|
|
|
|
/// realtime safe way (either a random thread or `IRunLoop` on Linux, the OS' message loop on
|
|
|
|
/// Windows and macOS).
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum Task {
|
|
|
|
/// Trigger a restart with the given restart flags. This is a bit set of the flags from
|
2022-03-04 09:05:01 +11:00
|
|
|
/// [`vst3_sys::vst::RestartFlags`].
|
2022-02-07 03:50:15 +11:00
|
|
|
TriggerRestart(i32),
|
|
|
|
}
|
|
|
|
|
2022-04-09 04:53:32 +10:00
|
|
|
/// VST3 makes audio processing pretty complicated. In order to support both block splitting for
|
|
|
|
/// sample accurate automation and MIDI CC handling through parameters we need to put all parameter
|
|
|
|
/// changes and (translated) note events into a sorted array first.
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub enum ProcessEvent {
|
|
|
|
/// An incoming parameter change sent by the host. This will only be used when sample accurate
|
|
|
|
/// automation has been enabled, and the parameters are only updated when we process this
|
|
|
|
/// spooled event at the start of a block.
|
|
|
|
ParameterChange {
|
|
|
|
/// The event's sample offset within the buffer. Used for sorting.
|
|
|
|
timing: u32,
|
|
|
|
/// The parameter's hash, as used everywhere else.
|
|
|
|
hash: u32,
|
|
|
|
/// The normalized values, as provided by the host.
|
|
|
|
normalized_value: f32,
|
|
|
|
},
|
|
|
|
/// An incoming parameter change sent by the host. This will only be used when sample accurate
|
|
|
|
/// automation has been enabled, and the parameters are only updated when we process this
|
|
|
|
/// spooled event at the start of a block.
|
|
|
|
NoteEvent {
|
|
|
|
/// The event's sample offset within the buffer. Used for sorting. The timing stored within
|
|
|
|
/// the note event needs to have the block start index subtraced from it.
|
|
|
|
timing: u32,
|
|
|
|
/// The actual note event, make sure to subtract the block start index with
|
|
|
|
/// [`NoteEvent::subtract_timing()`] before putting this into the input event queue.
|
|
|
|
event: NoteEvent,
|
|
|
|
},
|
2022-03-11 09:39:58 +11:00
|
|
|
}
|
|
|
|
|
2022-03-01 05:21:14 +11:00
|
|
|
impl<P: Vst3Plugin> WrapperInner<P> {
|
2022-02-07 03:50:15 +11:00
|
|
|
#[allow(unused_unsafe)]
|
|
|
|
pub fn new() -> Arc<Self> {
|
|
|
|
let plugin = RwLock::new(P::default());
|
|
|
|
let editor = plugin.read().editor().map(Arc::from);
|
|
|
|
|
2022-04-08 01:12:08 +10:00
|
|
|
// This is used to allow the plugin to restore preset data from its editor, see the comment
|
|
|
|
// on `Self::updated_state_sender`
|
|
|
|
let (updated_state_sender, updated_state_receiver) = channel::bounded(0);
|
|
|
|
|
2022-03-17 06:15:31 +11:00
|
|
|
// This is a mapping from the parameter IDs specified by the plugin to pointers to thsoe
|
2022-03-20 23:03:03 +11:00
|
|
|
// parameters. These pointers are assumed to be safe to dereference as long as
|
|
|
|
// `wrapper.plugin` is alive. The plugin API identifiers these parameters by hashes, which
|
|
|
|
// we'll calculate from the string ID specified by the plugin. These parameters should also
|
|
|
|
// remain in the same order as the one returned by the plugin.
|
2022-04-07 23:31:46 +10:00
|
|
|
let params = plugin.read().params();
|
|
|
|
let param_id_hashes_ptrs_groups: Vec<_> = params
|
2022-03-20 23:03:03 +11:00
|
|
|
.param_map()
|
|
|
|
.into_iter()
|
|
|
|
.map(|(id, ptr, group)| {
|
|
|
|
let hash = hash_param_id(&id);
|
|
|
|
(id, hash, ptr, group)
|
2022-03-17 06:15:31 +11:00
|
|
|
})
|
|
|
|
.collect();
|
2022-03-20 23:03:03 +11:00
|
|
|
if cfg!(debug_assertions) {
|
2022-04-07 23:31:46 +10:00
|
|
|
let param_map = params.param_map();
|
2022-03-20 23:03:03 +11:00
|
|
|
let param_ids: HashSet<_> = param_id_hashes_ptrs_groups
|
|
|
|
.iter()
|
|
|
|
.map(|(id, _, _, _)| id.clone())
|
|
|
|
.collect();
|
|
|
|
nih_debug_assert_eq!(
|
|
|
|
param_map.len(),
|
|
|
|
param_ids.len(),
|
2022-04-09 19:47:23 +10:00
|
|
|
"The plugin has duplicate parameter IDs, weird things may happen. \
|
|
|
|
Consider using 6 character parameter IDs to avoid collissions.."
|
2022-03-20 23:03:03 +11:00
|
|
|
);
|
2022-03-17 06:15:31 +11:00
|
|
|
|
2022-04-06 21:34:32 +10:00
|
|
|
let mut bypass_param_exists = false;
|
2022-04-09 04:53:32 +10:00
|
|
|
for (id, hash, ptr, _) in ¶m_id_hashes_ptrs_groups {
|
2022-04-06 21:34:32 +10:00
|
|
|
let flags = unsafe { ptr.flags() };
|
|
|
|
let is_bypass = flags.contains(ParamFlags::BYPASS);
|
|
|
|
|
|
|
|
if is_bypass && bypass_param_exists {
|
2022-03-24 03:36:58 +11:00
|
|
|
nih_debug_assert_failure!(
|
2022-04-06 21:34:32 +10:00
|
|
|
"Duplicate bypass parameters found, the host will only use the first one"
|
2022-03-24 03:36:58 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-06 21:34:32 +10:00
|
|
|
bypass_param_exists |= is_bypass;
|
2022-04-09 04:53:32 +10:00
|
|
|
|
|
|
|
if P::MIDI_INPUT >= MidiConfig::MidiCCs
|
|
|
|
&& (VST3_MIDI_PARAMS_START..VST3_MIDI_PARAMS_END).contains(hash)
|
|
|
|
{
|
|
|
|
nih_debug_assert_failure!(
|
|
|
|
"Parameter '{}' collides with an automatically generated MIDI CC parameter, consider giving it a different ID", id
|
|
|
|
);
|
|
|
|
}
|
2022-03-24 03:36:58 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-17 06:19:40 +11:00
|
|
|
let param_hashes = param_id_hashes_ptrs_groups
|
2022-03-17 06:15:31 +11:00
|
|
|
.iter()
|
2022-03-24 03:36:58 +11:00
|
|
|
.map(|(_, hash, _, _)| *hash)
|
2022-03-17 06:15:31 +11:00
|
|
|
.collect();
|
2022-03-17 06:19:40 +11:00
|
|
|
let param_by_hash = param_id_hashes_ptrs_groups
|
2022-03-17 06:15:31 +11:00
|
|
|
.iter()
|
2022-03-24 03:36:58 +11:00
|
|
|
.map(|(_, hash, ptr, _)| (*hash, *ptr))
|
2022-03-17 06:15:31 +11:00
|
|
|
.collect();
|
2022-03-17 06:19:40 +11:00
|
|
|
let param_units = ParamUnits::from_param_groups(
|
|
|
|
param_id_hashes_ptrs_groups
|
|
|
|
.iter()
|
2022-03-20 23:03:03 +11:00
|
|
|
.map(|(_, hash, _, group_name)| (*hash, group_name.as_str())),
|
2022-03-17 06:19:40 +11:00
|
|
|
)
|
|
|
|
.expect("Inconsistent parameter groups");
|
|
|
|
let param_id_to_hash = param_id_hashes_ptrs_groups
|
2022-03-17 06:15:31 +11:00
|
|
|
.iter()
|
2022-03-20 23:03:03 +11:00
|
|
|
.map(|(id, hash, _, _)| (id.clone(), *hash))
|
2022-03-17 06:15:31 +11:00
|
|
|
.collect();
|
2022-03-17 06:19:40 +11:00
|
|
|
let param_ptr_to_hash = param_id_hashes_ptrs_groups
|
2022-03-17 06:15:31 +11:00
|
|
|
.into_iter()
|
2022-03-20 23:03:03 +11:00
|
|
|
.map(|(_, hash, ptr, _)| (ptr, hash))
|
2022-03-17 06:15:31 +11:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
let wrapper = Self {
|
2022-02-07 03:50:15 +11:00
|
|
|
plugin,
|
2022-04-07 23:31:46 +10:00
|
|
|
params,
|
2022-02-07 03:50:15 +11:00
|
|
|
editor,
|
|
|
|
|
2022-03-04 07:18:57 +11:00
|
|
|
component_handler: AtomicRefCell::new(None),
|
2022-02-07 03:50:15 +11:00
|
|
|
|
2022-02-17 06:43:53 +11:00
|
|
|
plug_view: RwLock::new(None),
|
|
|
|
|
2022-03-04 07:18:57 +11:00
|
|
|
event_loop: AtomicRefCell::new(MaybeUninit::uninit()),
|
2022-02-07 03:50:15 +11:00
|
|
|
|
|
|
|
is_processing: AtomicBool::new(false),
|
|
|
|
// Some hosts, like the current version of Bitwig and Ardour at the time of writing,
|
|
|
|
// will try using the plugin's default not yet initialized bus arrangement. Because of
|
|
|
|
// that, we'll always initialize this configuration even before the host requests a
|
|
|
|
// channel layout.
|
|
|
|
current_bus_config: AtomicCell::new(BusConfig {
|
|
|
|
num_input_channels: P::DEFAULT_NUM_INPUTS,
|
|
|
|
num_output_channels: P::DEFAULT_NUM_OUTPUTS,
|
|
|
|
}),
|
|
|
|
current_buffer_config: AtomicCell::new(None),
|
|
|
|
last_process_status: AtomicCell::new(ProcessStatus::Normal),
|
|
|
|
current_latency: AtomicU32::new(0),
|
2022-03-04 07:18:57 +11:00
|
|
|
output_buffer: AtomicRefCell::new(Buffer::default()),
|
2022-03-11 09:39:58 +11:00
|
|
|
input_events: AtomicRefCell::new(VecDeque::with_capacity(1024)),
|
2022-04-12 03:52:51 +10:00
|
|
|
output_events: AtomicRefCell::new(VecDeque::with_capacity(1024)),
|
2022-04-09 01:49:13 +10:00
|
|
|
note_expression_controller: AtomicRefCell::new(NoteExpressionController::default()),
|
2022-04-09 04:53:32 +10:00
|
|
|
process_events: AtomicRefCell::new(Vec::with_capacity(4096)),
|
2022-04-08 01:12:08 +10:00
|
|
|
updated_state_sender,
|
|
|
|
updated_state_receiver,
|
2022-02-07 03:50:15 +11:00
|
|
|
|
2022-03-17 06:15:31 +11:00
|
|
|
param_hashes,
|
|
|
|
param_by_hash,
|
2022-03-17 06:19:40 +11:00
|
|
|
param_units,
|
2022-03-17 06:15:31 +11:00
|
|
|
param_id_to_hash,
|
|
|
|
param_ptr_to_hash,
|
2022-02-07 03:50:15 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME: Right now this is safe, but if we are going to have a singleton main thread queue
|
|
|
|
// serving multiple plugin instances, Arc can't be used because its reference count
|
|
|
|
// is separate from the internal COM-style reference count.
|
|
|
|
let wrapper: Arc<WrapperInner<P>> = wrapper.into();
|
2022-03-04 07:18:57 +11:00
|
|
|
*wrapper.event_loop.borrow_mut() =
|
2022-02-07 03:50:15 +11:00
|
|
|
MaybeUninit::new(OsEventLoop::new_and_spawn(Arc::downgrade(&wrapper)));
|
|
|
|
|
|
|
|
wrapper
|
|
|
|
}
|
|
|
|
|
2022-03-04 02:33:41 +11:00
|
|
|
pub fn make_gui_context(self: Arc<Self>) -> Arc<WrapperGuiContext<P>> {
|
|
|
|
Arc::new(WrapperGuiContext { inner: self })
|
|
|
|
}
|
|
|
|
|
2022-03-05 01:05:00 +11:00
|
|
|
pub fn make_process_context(&self, transport: Transport) -> WrapperProcessContext<'_, P> {
|
2022-02-07 03:50:15 +11:00
|
|
|
WrapperProcessContext {
|
|
|
|
inner: self,
|
2022-04-09 20:12:34 +10:00
|
|
|
input_events_guard: self.input_events.borrow_mut(),
|
2022-04-12 03:52:51 +10:00
|
|
|
output_events_guard: self.output_events.borrow_mut(),
|
2022-03-05 01:05:00 +11:00
|
|
|
transport,
|
2022-02-07 03:50:15 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-14 04:13:11 +11:00
|
|
|
/// If there's an editor open, let it know that parameter values have changed. This should be
|
|
|
|
/// called whenever there's been a call or multiple calls to
|
|
|
|
/// [`set_normalized_value_by_hash()[Self::set_normalized_value_by_hash()`].
|
|
|
|
pub fn notify_param_values_changed(&self) {
|
|
|
|
if let Some(editor) = &self.editor {
|
|
|
|
editor.param_values_changed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-07 03:50:15 +11:00
|
|
|
/// Convenience function for setting a value for a parameter as triggered by a VST3 parameter
|
|
|
|
/// update. The same rate is for updating parameter smoothing.
|
2022-03-14 04:13:11 +11:00
|
|
|
///
|
|
|
|
/// After calling this function, you should call
|
|
|
|
/// [`notify_param_values_changed()`][Self::notify_param_values_changed()] to allow the editor
|
|
|
|
/// to update itself. This needs to be done seperately so you can process parameter changes in
|
|
|
|
/// batches.
|
2022-03-02 05:31:16 +11:00
|
|
|
pub fn set_normalized_value_by_hash(
|
2022-02-07 03:50:15 +11:00
|
|
|
&self,
|
|
|
|
hash: u32,
|
|
|
|
normalized_value: f32,
|
|
|
|
sample_rate: Option<f32>,
|
|
|
|
) -> tresult {
|
2022-04-06 21:34:32 +10:00
|
|
|
match self.param_by_hash.get(&hash) {
|
|
|
|
Some(param_ptr) => {
|
2022-03-24 03:36:58 +11:00
|
|
|
// Also update the parameter's smoothing if applicable
|
|
|
|
match (param_ptr, sample_rate) {
|
|
|
|
(_, Some(sample_rate)) => unsafe {
|
|
|
|
param_ptr.set_normalized_value(normalized_value);
|
|
|
|
param_ptr.update_smoother(sample_rate, false);
|
|
|
|
},
|
|
|
|
_ => unsafe { param_ptr.set_normalized_value(normalized_value) },
|
|
|
|
}
|
2022-02-07 03:50:15 +11:00
|
|
|
|
2022-03-24 03:36:58 +11:00
|
|
|
kResultOk
|
|
|
|
}
|
|
|
|
_ => kInvalidArgument,
|
2022-02-07 03:50:15 +11:00
|
|
|
}
|
|
|
|
}
|
2022-04-08 01:12:08 +10:00
|
|
|
|
|
|
|
/// Get the plugin's state object, may be called by the plugin's GUI as part of its own preset
|
|
|
|
/// management. The wrapper doesn't use these functions and serializes and deserializes directly
|
|
|
|
/// the JSON in the relevant plugin API methods instead.
|
2022-04-08 01:39:34 +10:00
|
|
|
pub fn get_state_object(&self) -> PluginState {
|
2022-04-08 01:12:08 +10:00
|
|
|
unsafe {
|
|
|
|
state::serialize_object(
|
|
|
|
self.params.clone(),
|
|
|
|
&self.param_by_hash,
|
|
|
|
&self.param_id_to_hash,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Update the plugin's internal state, called by the plugin itself from the GUI thread. To
|
|
|
|
/// prevent corrupting data and changing parameters during processing the actual state is only
|
|
|
|
/// updated at the end of the audio processing cycle.
|
2022-04-08 01:39:34 +10:00
|
|
|
pub fn set_state_object(&self, mut state: PluginState) {
|
2022-04-08 01:12:08 +10:00
|
|
|
// Use a loop and timeouts to handle the super rare edge case when this function gets called
|
|
|
|
// between a process call and the host disabling the plugin
|
|
|
|
loop {
|
|
|
|
if self.is_processing.load(Ordering::SeqCst) {
|
|
|
|
// If the plugin is currently processing audio, then we'll perform the restore
|
|
|
|
// operation at the end of the audio call. This involves sending the state to the
|
|
|
|
// audio thread, having the audio thread handle the state restore at the very end of
|
|
|
|
// the process function, and then sending the state back to this thread so it can be
|
|
|
|
// deallocated without blocking the audio thread.
|
|
|
|
match self
|
|
|
|
.updated_state_sender
|
|
|
|
.send_timeout(state, Duration::from_secs(1))
|
|
|
|
{
|
|
|
|
Ok(_) => {
|
|
|
|
// As mentioned above, the state object will be passed back to this thread
|
|
|
|
// so we can deallocate it without blocking.
|
|
|
|
let state = self.updated_state_receiver.recv();
|
|
|
|
drop(state);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Err(SendTimeoutError::Timeout(value)) => {
|
|
|
|
state = value;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Err(SendTimeoutError::Disconnected(_)) => {
|
|
|
|
nih_debug_assert_failure!("State update channel got disconnected");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Otherwise we'll set the state right here and now, since this function should be
|
|
|
|
// called from a GUI thread
|
|
|
|
unsafe {
|
|
|
|
state::deserialize_object(
|
|
|
|
&state,
|
|
|
|
self.params.clone(),
|
|
|
|
&self.param_by_hash,
|
|
|
|
&self.param_id_to_hash,
|
|
|
|
self.current_buffer_config.load().as_ref(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.notify_param_values_changed();
|
|
|
|
let bus_config = self.current_bus_config.load();
|
|
|
|
if let Some(buffer_config) = self.current_buffer_config.load() {
|
|
|
|
let mut plugin = self.plugin.write();
|
|
|
|
plugin.initialize(
|
|
|
|
&bus_config,
|
|
|
|
&buffer_config,
|
|
|
|
&mut self.make_process_context(Transport::new(buffer_config.sample_rate)),
|
|
|
|
);
|
|
|
|
process_wrapper(|| plugin.reset());
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// After the state has been updated, notify the host about the new parameter values
|
2022-04-08 01:22:50 +10:00
|
|
|
let task_posted = unsafe { self.event_loop.borrow().assume_init_ref() }.do_maybe_async(
|
|
|
|
Task::TriggerRestart(RestartFlags::kParamValuesChanged as i32),
|
|
|
|
);
|
|
|
|
nih_debug_assert!(task_posted, "The task queue is full, dropping task...");
|
2022-04-08 01:12:08 +10:00
|
|
|
}
|
2022-02-07 03:50:15 +11:00
|
|
|
}
|
|
|
|
|
2022-03-01 05:21:14 +11:00
|
|
|
impl<P: Vst3Plugin> MainThreadExecutor<Task> for WrapperInner<P> {
|
2022-02-07 03:50:15 +11:00
|
|
|
unsafe fn execute(&self, task: Task) {
|
|
|
|
// This function is always called from the main thread
|
|
|
|
// TODO: When we add GUI resizing and context menus, this should propagate those events to
|
|
|
|
// `IRunLoop` on Linux to keep REAPER happy. That does mean a double spool, but we can
|
|
|
|
// come up with a nicer solution to handle that later (can always add a separate
|
|
|
|
// function for checking if a to be scheduled task can be handled right ther and
|
|
|
|
// then).
|
|
|
|
match task {
|
2022-03-04 07:18:57 +11:00
|
|
|
Task::TriggerRestart(flags) => match &*self.component_handler.borrow() {
|
2022-02-07 03:50:15 +11:00
|
|
|
Some(handler) => {
|
|
|
|
handler.restart_component(flags);
|
|
|
|
}
|
|
|
|
None => nih_debug_assert_failure!("Component handler not yet set"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|