mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-06 04:00:08 +00:00
246 lines
7.3 KiB
C++
246 lines
7.3 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
namespace juce
|
|
{
|
|
|
|
class MidiDeviceListConnectionBroadcaster final : private AsyncUpdater
|
|
{
|
|
public:
|
|
~MidiDeviceListConnectionBroadcaster() override
|
|
{
|
|
cancelPendingUpdate();
|
|
}
|
|
|
|
MidiDeviceListConnection::Key add (std::function<void()> callback)
|
|
{
|
|
JUCE_ASSERT_MESSAGE_THREAD
|
|
return callbacks.emplace (key++, std::move (callback)).first->first;
|
|
}
|
|
|
|
void remove (const MidiDeviceListConnection::Key k)
|
|
{
|
|
JUCE_ASSERT_MESSAGE_THREAD
|
|
callbacks.erase (k);
|
|
}
|
|
|
|
void notify()
|
|
{
|
|
if (MessageManager::getInstance()->isThisTheMessageThread())
|
|
{
|
|
cancelPendingUpdate();
|
|
|
|
const State newState;
|
|
|
|
if (std::exchange (lastNotifiedState, newState) != newState)
|
|
for (auto it = callbacks.begin(); it != callbacks.end();)
|
|
NullCheckedInvocation::invoke ((it++)->second);
|
|
}
|
|
else
|
|
{
|
|
triggerAsyncUpdate();
|
|
}
|
|
}
|
|
|
|
static auto& get()
|
|
{
|
|
static MidiDeviceListConnectionBroadcaster result;
|
|
return result;
|
|
}
|
|
|
|
private:
|
|
MidiDeviceListConnectionBroadcaster() = default;
|
|
|
|
class State
|
|
{
|
|
Array<MidiDeviceInfo> ins = MidiInput::getAvailableDevices(), outs = MidiOutput::getAvailableDevices();
|
|
auto tie() const { return std::tie (ins, outs); }
|
|
|
|
public:
|
|
bool operator== (const State& other) const { return tie() == other.tie(); }
|
|
bool operator!= (const State& other) const { return tie() != other.tie(); }
|
|
};
|
|
|
|
void handleAsyncUpdate() override
|
|
{
|
|
notify();
|
|
}
|
|
|
|
std::map<MidiDeviceListConnection::Key, std::function<void()>> callbacks;
|
|
State lastNotifiedState;
|
|
MidiDeviceListConnection::Key key = 0;
|
|
};
|
|
|
|
//==============================================================================
|
|
MidiDeviceListConnection::~MidiDeviceListConnection() noexcept
|
|
{
|
|
if (broadcaster != nullptr)
|
|
broadcaster->remove (key);
|
|
}
|
|
|
|
//==============================================================================
|
|
void MidiInputCallback::handlePartialSysexMessage ([[maybe_unused]] MidiInput* source,
|
|
[[maybe_unused]] const uint8* messageData,
|
|
[[maybe_unused]] int numBytesSoFar,
|
|
[[maybe_unused]] double timestamp) {}
|
|
|
|
//==============================================================================
|
|
MidiOutput::MidiOutput (const String& deviceName, const String& deviceIdentifier)
|
|
: Thread ("midi out"), deviceInfo (deviceName, deviceIdentifier)
|
|
{
|
|
}
|
|
|
|
void MidiOutput::sendBlockOfMessagesNow (const MidiBuffer& buffer)
|
|
{
|
|
for (const auto metadata : buffer)
|
|
sendMessageNow (metadata.getMessage());
|
|
}
|
|
|
|
void MidiOutput::sendBlockOfMessages (const MidiBuffer& buffer,
|
|
double millisecondCounterToStartAt,
|
|
double samplesPerSecondForBuffer)
|
|
{
|
|
// You've got to call startBackgroundThread() for this to actually work..
|
|
jassert (isThreadRunning());
|
|
|
|
// this needs to be a value in the future - RTFM for this method!
|
|
jassert (millisecondCounterToStartAt > 0);
|
|
|
|
auto timeScaleFactor = 1000.0 / samplesPerSecondForBuffer;
|
|
|
|
for (const auto metadata : buffer)
|
|
{
|
|
auto eventTime = millisecondCounterToStartAt + timeScaleFactor * metadata.samplePosition;
|
|
auto* m = new PendingMessage (metadata.data, metadata.numBytes, eventTime);
|
|
|
|
const ScopedLock sl (lock);
|
|
|
|
if (firstMessage == nullptr || firstMessage->message.getTimeStamp() > eventTime)
|
|
{
|
|
m->next = firstMessage;
|
|
firstMessage = m;
|
|
}
|
|
else
|
|
{
|
|
auto* mm = firstMessage;
|
|
|
|
while (mm->next != nullptr && mm->next->message.getTimeStamp() <= eventTime)
|
|
mm = mm->next;
|
|
|
|
m->next = mm->next;
|
|
mm->next = m;
|
|
}
|
|
}
|
|
|
|
notify();
|
|
}
|
|
|
|
void MidiOutput::clearAllPendingMessages()
|
|
{
|
|
const ScopedLock sl (lock);
|
|
|
|
while (firstMessage != nullptr)
|
|
{
|
|
auto* m = firstMessage;
|
|
firstMessage = firstMessage->next;
|
|
delete m;
|
|
}
|
|
}
|
|
|
|
void MidiOutput::startBackgroundThread()
|
|
{
|
|
startThread (Priority::high);
|
|
}
|
|
|
|
void MidiOutput::stopBackgroundThread()
|
|
{
|
|
stopThread (5000);
|
|
}
|
|
|
|
void MidiOutput::run()
|
|
{
|
|
while (! threadShouldExit())
|
|
{
|
|
auto now = Time::getMillisecondCounter();
|
|
uint32 eventTime = 0;
|
|
uint32 timeToWait = 500;
|
|
|
|
PendingMessage* message;
|
|
|
|
{
|
|
const ScopedLock sl (lock);
|
|
message = firstMessage;
|
|
|
|
if (message != nullptr)
|
|
{
|
|
eventTime = (uint32) roundToInt (message->message.getTimeStamp());
|
|
|
|
if (eventTime > now + 20)
|
|
{
|
|
timeToWait = eventTime - (now + 20);
|
|
message = nullptr;
|
|
}
|
|
else
|
|
{
|
|
firstMessage = message->next;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (message != nullptr)
|
|
{
|
|
std::unique_ptr<PendingMessage> messageDeleter (message);
|
|
|
|
if (eventTime > now)
|
|
{
|
|
Time::waitForMillisecondCounter (eventTime);
|
|
|
|
if (threadShouldExit())
|
|
break;
|
|
}
|
|
|
|
if (eventTime > now - 200)
|
|
sendMessageNow (message->message);
|
|
}
|
|
else
|
|
{
|
|
jassert (timeToWait < 1000 * 30);
|
|
wait ((int) timeToWait);
|
|
}
|
|
}
|
|
|
|
clearAllPendingMessages();
|
|
}
|
|
|
|
} // namespace juce
|