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
|
/*
Drumstick RT Backend using the ALSA Sequencer
Copyright (C) 2009-2024 Pedro Lopez-Cabanillas <plcl@users.sf.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "alsamidioutput.h"
#include <QMap>
#include <QMutex>
#include <QMutexLocker>
#include <QString>
#include <QStringList>
#include <drumstick/alsaclient.h>
#include <drumstick/alsaevent.h>
#include <drumstick/alsaport.h>
namespace drumstick {
namespace rt {
using namespace ALSA;
const QString ALSAMIDIOutput::DEFAULT_PUBLIC_NAME = QStringLiteral("MIDI Out");
class ALSAMIDIOutput::ALSAMIDIOutputPrivate {
public:
ALSAMIDIOutput *m_out;
MidiClient *m_client;
MidiPort *m_port;
int m_portId;
bool m_clientFilter;
int m_runtimeAlsaNum;
QString m_publicName;
MIDIConnection m_currentOutput;
QList<MIDIConnection> m_outputDevices;
QStringList m_excludedNames;
QMutex m_outMutex;
bool m_initialized;
bool m_status;
QStringList m_diagnostics;
explicit ALSAMIDIOutputPrivate(ALSAMIDIOutput *q):
m_out(q),
m_client(nullptr),
m_port(nullptr),
m_portId(0),
m_clientFilter(true),
m_runtimeAlsaNum(0),
m_publicName(DEFAULT_PUBLIC_NAME),
m_initialized(false),
m_status(false)
{
m_runtimeAlsaNum = getRuntimeALSALibraryNumber();
m_diagnostics.clear();
}
~ALSAMIDIOutputPrivate()
{
if (m_initialized) {
clearSubscription();
uninitialize();
}
}
void initialize()
{
//qDebug() << Q_FUNC_INFO << m_initialized;
if (!m_initialized) {
m_client = new MidiClient(m_out);
m_client->open();
m_client->setClientName(m_publicName);
m_port = m_client->createPort();
m_port->setPortName("out");
m_port->setCapability( SND_SEQ_PORT_CAP_READ | SND_SEQ_PORT_CAP_SUBS_READ );
m_port->setPortType( SND_SEQ_PORT_TYPE_APPLICATION | SND_SEQ_PORT_TYPE_MIDI_GENERIC );
m_portId = m_port->getPortId();
m_initialized = true;
m_status = true;
m_diagnostics.clear();
}
}
void uninitialize()
{
//qDebug() << Q_FUNC_INFO << m_initialized;
if (m_initialized) {
if (m_port != nullptr) {
m_port->detach();
delete m_port;
m_port = nullptr;
}
if (m_client != nullptr) {
m_client->close();
delete m_client;
m_client = nullptr;
}
m_initialized = false;
m_status = false;
m_diagnostics.clear();
}
}
bool clientIsAdvanced(int clientId)
{
// asking for runtime version instead of SND_LIB_VERSION
if (m_runtimeAlsaNum < 0x01000B)
// ALSA <= 1.0.10
return (clientId < 64);
else
// ALSA >= 1.0.11
return (clientId < 16);
}
void reloadDeviceList(bool advanced)
{
QStringList clientNames;
QMap<QString,int> namesMap;
if (!m_initialized) {
initialize();
}
auto outputs = m_client->getAvailableOutputs();
m_clientFilter = !advanced;
m_outputDevices.clear();
for (const PortInfo &p : std::as_const(outputs)) {
QString name = p.getClientName();
clientNames << name;
if (namesMap.contains(name)) {
namesMap[name]++;
} else {
namesMap.insert(name, 1);
}
}
for (PortInfo& p : outputs) {
bool excluded = false;
QString name = p.getClientName();
if (m_clientFilter && clientIsAdvanced(p.getClient()))
continue;
if ( m_clientFilter && name.startsWith(QStringLiteral("Virtual Raw MIDI")) )
continue;
if ( name.startsWith(m_publicName) )
continue;
for (const QString &n : std::as_const(m_excludedNames)) {
if ( name.startsWith(n) ) {
excluded = true;
break;
}
}
if (!excluded) {
int k = clientNames.count(name) + 1;
QString addr = QString("%1:%2").arg(p.getClient()).arg(p.getPort());
if (k > 2) {
m_outputDevices << MIDIConnection(QString("%1 (%2)").arg(name).arg(k - namesMap[name]--), addr);
} else {
m_outputDevices << MIDIConnection(name, addr);
}
}
}
if (!m_currentOutput.first.isEmpty() &&
!m_outputDevices.contains(m_currentOutput)) {
m_currentOutput = MIDIConnection();
}
}
bool setSubscription(const MIDIConnection &newOutputDevice)
{
if (!m_initialized) {
initialize();
}
if (m_outputDevices.contains(newOutputDevice)) {
m_currentOutput = newOutputDevice;
m_port->unsubscribeAll();
m_port->subscribeTo(newOutputDevice.second.toString());
return true;
}
return false;
}
void clearSubscription()
{
if (!m_currentOutput.first.isEmpty() && m_initialized) {
m_port->unsubscribeAll();
m_currentOutput = MIDIConnection();
}
}
void sendEvent(SequencerEvent *ev)
{
if (!m_initialized) {
initialize();
}
QMutexLocker locker(&m_outMutex);
ev->setSource(m_portId);
ev->setSubscribers();
ev->setDirect();
m_client->outputDirect(ev);
}
void setPublicName(QString newName)
{
if (newName != m_publicName) {
m_publicName = newName;
if (m_initialized) {
m_client->setClientName(newName);
}
}
}
};
ALSAMIDIOutput::ALSAMIDIOutput(QObject *parent) : MIDIOutput(parent),
d(new ALSAMIDIOutputPrivate(this))
{ }
ALSAMIDIOutput::~ALSAMIDIOutput()
{
delete d;
}
void ALSAMIDIOutput::initialize(QSettings* settings)
{
Q_UNUSED(settings)
d->initialize();
}
/* SLOTS */
void ALSAMIDIOutput::sendNoteOn(int chan, int note, int vel)
{
NoteOnEvent ev(chan, note, vel);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendNoteOff(int chan, int note, int vel)
{
NoteOffEvent ev(chan, note, vel);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendController(int chan, int control, int value)
{
ControllerEvent ev(chan, control, value);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendKeyPressure(int chan, int note, int value)
{
KeyPressEvent ev(chan, note, value);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendProgram(int chan, int program)
{
ProgramChangeEvent ev(chan, program);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendChannelPressure(int chan, int value)
{
ChanPressEvent ev(chan, value);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendPitchBend(int chan, int value)
{
PitchBendEvent ev(chan, value);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendSysex(const QByteArray& data)
{
SysExEvent ev(data);
d->sendEvent(&ev);
}
void ALSAMIDIOutput::sendSystemMsg(const int status)
{
SystemEvent ev(status);
d->sendEvent(&ev);
}
QStringList ALSAMIDIOutput::getDiagnostics()
{
return d->m_diagnostics;
}
bool ALSAMIDIOutput::getStatus()
{
return d->m_status;
}
QString ALSAMIDIOutput::backendName()
{
return "ALSA";
}
QString ALSAMIDIOutput::publicName()
{
return d->m_publicName;
}
void ALSAMIDIOutput::setPublicName(QString name)
{
d->setPublicName(name);
}
QList<MIDIConnection> ALSAMIDIOutput::connections(bool advanced)
{
d->reloadDeviceList(advanced);
return d->m_outputDevices;
}
void ALSAMIDIOutput::setExcludedConnections(QStringList conns)
{
d->m_excludedNames = conns;
}
MIDIConnection ALSAMIDIOutput::currentConnection()
{
return d->m_currentOutput;
}
void ALSAMIDIOutput::open(const MIDIConnection& name)
{
bool b = d->setSubscription(name);
if (!b) {
d->m_diagnostics << "failed subscription to " + name.first;
}
}
void ALSAMIDIOutput::close()
{
d->clearSubscription();
d->uninitialize();
}
} // namespace rt
} // namespace drumstick
|