#include <MIDI_Interfaces/BLEMIDI/ThreadedBLEMIDISender.hpp>
Class that manages a background thread that sends BLE packets asynchronously.
Definition at line 17 of file ThreadedBLEMIDISender.hpp.
Classes | |
struct | ProtectedBuilder |
Public Member Functions | |
ThreadedBLEMIDISender ()=default | |
ThreadedBLEMIDISender (const ThreadedBLEMIDISender &)=delete | |
ThreadedBLEMIDISender & | operator= (const ThreadedBLEMIDISender &)=delete |
~ThreadedBLEMIDISender () | |
void | begin () |
Start the background thread. | |
ProtectedBuilder | acquirePacket () |
Acquire exclusive access to the buffer to be sent by the timer. | |
void | releasePacketAndNotify (ProtectedBuilder &lck) |
Release exclusive access to the buffer and notify the sender thread that data is available. | |
void | sendNow (ProtectedBuilder &lck) |
Sends the data immediately without waiting for the timeout. | |
void | updateMTU (uint16_t mtu) |
Set the maximum transmission unit of the Bluetooth link. | |
uint16_t | getMinMTU () const |
Get the minimum MTU of all connected clients. | |
void | forceMinMTU (uint16_t mtu) |
Force the MTU to an artificially small value (used for testing). | |
void | setTimeout (std::chrono::milliseconds timeout) |
Set the timeout, the number of milliseconds to buffer the outgoing MIDI messages. | |
Private Types | |
using | lock_t = std::unique_lock<std::mutex> |
Lock type used to lock the mutex. | |
Private Member Functions | |
void | sendData (BLEDataView)=delete |
Actually perform the BLE notification with the given data. | |
bool | handleSendEvents () |
Function that waits for BLE packets and sends them in the background. | |
Private Attributes | ||
struct { | ||
BLEMIDIPacketBuilder packet | ||
View of the data to send. More... | ||
bool stop = false | ||
Flag to stop the background thread. More... | ||
bool flush = false | ||
Flag to tell the sender thread to send the packet immediately. More... | ||
std::chrono::milliseconds timeout {10} | ||
Timeout before the sender thread sends a packet. More... | ||
std::mutex mtx | ||
Lock to protect all shared data in this struct. More... | ||
} | shared | |
std::condition_variable | cv | |
Condition variable used by the background sender thread to wait for data to send, and for the main thread to wait for the data to be flushed by the sender thread. | ||
std::thread | send_thread | |
The background thread responsible for sending the data. | ||
std::atomic_uint_fast16_t | min_mtu {23} | |
The minimum MTU of all connected clients. | ||
std::atomic_uint_fast16_t | force_min_mtu {515} | |
Override the minimum MTU (0 means don't override, nonzero overrides if it's smaller than the minimum MTU of the clients). | ||
Lock type used to lock the mutex.
Definition at line 82 of file ThreadedBLEMIDISender.hpp.
|
default |
|
delete |
|
delete |
ProtectedBuilder acquirePacket | ( | ) |
Acquire exclusive access to the buffer to be sent by the timer.
packet
member. void releasePacketAndNotify | ( | ProtectedBuilder & | lck | ) |
Release exclusive access to the buffer and notify the sender thread that data is available.
void sendNow | ( | ProtectedBuilder & | lck | ) |
Sends the data immediately without waiting for the timeout.
Set the maximum transmission unit of the Bluetooth link.
Used to compute the MIDI BLE packet size.
Get the minimum MTU of all connected clients.
Definition at line 45 of file ThreadedBLEMIDISender.hpp.
Force the MTU to an artificially small value (used for testing).
Set the timeout, the number of milliseconds to buffer the outgoing MIDI messages.
|
privatedelete |
Actually perform the BLE notification with the given data.
Function that waits for BLE packets and sends them in the background.
It either sends them after a timeout (a given number of milliseconds after the first data was added to the packet), or immediately when it receives a flush signal from the main thread.
BLEMIDIPacketBuilder packet |
View of the data to send.
Definition at line 66 of file ThreadedBLEMIDISender.hpp.
Flag to stop the background thread.
Definition at line 68 of file ThreadedBLEMIDISender.hpp.
Flag to tell the sender thread to send the packet immediately.
Definition at line 70 of file ThreadedBLEMIDISender.hpp.
Timeout before the sender thread sends a packet.
Definition at line 73 of file ThreadedBLEMIDISender.hpp.
Lock to protect all shared data in this struct.
Definition at line 75 of file ThreadedBLEMIDISender.hpp.
struct { ... } shared |
Condition variable used by the background sender thread to wait for data to send, and for the main thread to wait for the data to be flushed by the sender thread.
Definition at line 80 of file ThreadedBLEMIDISender.hpp.
The background thread responsible for sending the data.
Definition at line 84 of file ThreadedBLEMIDISender.hpp.
The minimum MTU of all connected clients.
Definition at line 88 of file ThreadedBLEMIDISender.hpp.
Override the minimum MTU (0 means don't override, nonzero overrides if it's smaller than the minimum MTU of the clients).
Definition at line 92 of file ThreadedBLEMIDISender.hpp.